2011-08-26 10:36:33 +04:00
|
|
|
# Redmine - project management software
|
|
|
|
# Copyright (C) 2006-2011 Jean-Philippe Lang
|
2007-12-13 21:52:09 +03:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-08-26 10:36:33 +04:00
|
|
|
#
|
2007-12-13 21:52:09 +03:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2011-08-26 10:36:33 +04:00
|
|
|
#
|
2007-12-13 21:52:09 +03:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
2010-12-13 02:24:34 +03:00
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
2007-12-13 21:52:09 +03:00
|
|
|
|
2009-09-13 21:14:35 +04:00
|
|
|
class AdminControllerTest < ActionController::TestCase
|
2008-01-05 14:33:49 +03:00
|
|
|
fixtures :projects, :users, :roles
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2007-12-13 21:52:09 +03:00
|
|
|
def setup
|
|
|
|
User.current = nil
|
|
|
|
@request.session[:user_id] = 1 # admin
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2008-01-05 14:33:49 +03:00
|
|
|
def test_index
|
|
|
|
get :index
|
|
|
|
assert_no_tag :tag => 'div',
|
|
|
|
:attributes => { :class => /nodata/ }
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2008-01-05 14:33:49 +03:00
|
|
|
def test_index_with_no_configuration_data
|
|
|
|
delete_configuration_data
|
|
|
|
get :index
|
|
|
|
assert_tag :tag => 'div',
|
|
|
|
:attributes => { :class => /nodata/ }
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2008-10-24 21:12:39 +04:00
|
|
|
def test_projects
|
|
|
|
get :projects
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'projects'
|
|
|
|
assert_not_nil assigns(:projects)
|
|
|
|
# active projects only
|
|
|
|
assert_nil assigns(:projects).detect {|u| !u.active?}
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2011-12-05 02:31:02 +04:00
|
|
|
def test_projects_with_status_filter
|
|
|
|
get :projects, :status => 1
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'projects'
|
|
|
|
assert_not_nil assigns(:projects)
|
|
|
|
# active projects only
|
|
|
|
assert_nil assigns(:projects).detect {|u| !u.active?}
|
|
|
|
end
|
|
|
|
|
2008-10-24 21:12:39 +04:00
|
|
|
def test_projects_with_name_filter
|
|
|
|
get :projects, :name => 'store', :status => ''
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'projects'
|
|
|
|
projects = assigns(:projects)
|
|
|
|
assert_not_nil projects
|
|
|
|
assert_equal 1, projects.size
|
|
|
|
assert_equal 'OnlineStore', projects.first.name
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2008-01-05 14:33:49 +03:00
|
|
|
def test_load_default_configuration_data
|
|
|
|
delete_configuration_data
|
|
|
|
post :default_configuration, :lang => 'fr'
|
2010-06-20 20:08:20 +04:00
|
|
|
assert_response :redirect
|
|
|
|
assert_nil flash[:error]
|
2008-01-05 14:33:49 +03:00
|
|
|
assert IssueStatus.find_by_name('Nouveau')
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2012-03-10 17:41:56 +04:00
|
|
|
def test_load_default_configuration_data_should_rescue_error
|
|
|
|
delete_configuration_data
|
|
|
|
Redmine::DefaultData::Loader.stubs(:load).raises(Exception.new("Something went wrong"))
|
|
|
|
post :default_configuration, :lang => 'fr'
|
|
|
|
assert_response :redirect
|
|
|
|
assert_not_nil flash[:error]
|
|
|
|
assert_match /Something went wrong/, flash[:error]
|
|
|
|
end
|
|
|
|
|
2007-12-13 21:52:09 +03:00
|
|
|
def test_test_email
|
2012-03-12 22:34:12 +04:00
|
|
|
user = User.find(1)
|
|
|
|
user.pref[:no_self_notified] = '1'
|
|
|
|
user.pref.save!
|
|
|
|
ActionMailer::Base.deliveries.clear
|
|
|
|
|
2007-12-13 21:52:09 +03:00
|
|
|
get :test_email
|
2009-01-04 21:14:51 +03:00
|
|
|
assert_redirected_to '/settings/edit?tab=notifications'
|
2007-12-13 21:52:09 +03:00
|
|
|
mail = ActionMailer::Base.deliveries.last
|
2012-02-25 13:58:23 +04:00
|
|
|
assert_not_nil mail
|
2007-12-13 21:52:09 +03:00
|
|
|
user = User.find(1)
|
|
|
|
assert_equal [user.mail], mail.bcc
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2011-12-03 19:39:59 +04:00
|
|
|
def test_test_email_failure_should_display_the_error
|
2012-03-04 16:38:34 +04:00
|
|
|
Mailer.stubs(:deliver_test_email).raises(Exception, 'Some error message')
|
2011-12-03 19:39:59 +04:00
|
|
|
get :test_email
|
|
|
|
assert_redirected_to '/settings/edit?tab=notifications'
|
|
|
|
assert_match /Some error message/, flash[:error]
|
|
|
|
end
|
|
|
|
|
2008-11-16 19:08:25 +03:00
|
|
|
def test_no_plugins
|
|
|
|
Redmine::Plugin.clear
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2008-11-16 19:08:25 +03:00
|
|
|
get :plugins
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'plugins'
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2008-11-16 14:58:41 +03:00
|
|
|
def test_plugins
|
2008-11-16 19:08:25 +03:00
|
|
|
# Register a few plugins
|
|
|
|
Redmine::Plugin.register :foo do
|
|
|
|
name 'Foo plugin'
|
|
|
|
author 'John Smith'
|
|
|
|
description 'This is a test plugin'
|
|
|
|
version '0.0.1'
|
|
|
|
settings :default => {'sample_setting' => 'value', 'foo'=>'bar'}, :partial => 'foo/settings'
|
|
|
|
end
|
|
|
|
Redmine::Plugin.register :bar do
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2008-11-16 14:58:41 +03:00
|
|
|
get :plugins
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'plugins'
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2008-11-16 20:12:02 +03:00
|
|
|
assert_tag :td, :child => { :tag => 'span', :content => 'Foo plugin' }
|
|
|
|
assert_tag :td, :child => { :tag => 'span', :content => 'Bar' }
|
2008-11-16 14:58:41 +03:00
|
|
|
end
|
2007-12-13 21:52:09 +03:00
|
|
|
|
|
|
|
def test_info
|
|
|
|
get :info
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'info'
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2009-12-07 23:16:30 +03:00
|
|
|
def test_admin_menu_plugin_extension
|
|
|
|
Redmine::MenuManager.map :admin_menu do |menu|
|
|
|
|
menu.push :test_admin_menu_plugin_extension, '/foo/bar', :caption => 'Test'
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2009-12-07 23:16:30 +03:00
|
|
|
get :index
|
|
|
|
assert_response :success
|
|
|
|
assert_tag :a, :attributes => { :href => '/foo/bar' },
|
|
|
|
:content => 'Test'
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2009-12-07 23:16:30 +03:00
|
|
|
Redmine::MenuManager.map :admin_menu do |menu|
|
|
|
|
menu.delete :test_admin_menu_plugin_extension
|
|
|
|
end
|
|
|
|
end
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2008-11-16 14:58:41 +03:00
|
|
|
private
|
2011-08-26 10:36:33 +04:00
|
|
|
|
2008-01-05 14:33:49 +03:00
|
|
|
def delete_configuration_data
|
|
|
|
Role.delete_all('builtin = 0')
|
|
|
|
Tracker.delete_all
|
|
|
|
IssueStatus.delete_all
|
|
|
|
Enumeration.delete_all
|
|
|
|
end
|
2007-12-13 21:52:09 +03:00
|
|
|
end
|