| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2014-01-29 22:45:39 +00:00
										 |  |  | # Copyright (C) 2006-2014  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00: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 06:36:33 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00: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 06:36:33 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00: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-12 23:24:34 +00:00
										 |  |  | require File.expand_path('../../test_helper', __FILE__) | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  | class AdminControllerTest < ActionController::TestCase | 
					
						
							| 
									
										
										
										
											2008-01-05 11:33:49 +00:00
										 |  |  |   fixtures :projects, :users, :roles | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |   def setup | 
					
						
							|  |  |  |     User.current = nil | 
					
						
							|  |  |  |     @request.session[:user_id] = 1 # admin | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-05 11:33:49 +00:00
										 |  |  |   def test_index | 
					
						
							|  |  |  |     get :index | 
					
						
							| 
									
										
										
										
											2012-12-13 13:52:56 +00:00
										 |  |  |     assert_select 'div.nodata', 0
 | 
					
						
							| 
									
										
										
										
											2008-01-05 11:33:49 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-05 11:33:49 +00:00
										 |  |  |   def test_index_with_no_configuration_data | 
					
						
							|  |  |  |     delete_configuration_data | 
					
						
							|  |  |  |     get :index | 
					
						
							| 
									
										
										
										
											2012-12-13 13:52:56 +00:00
										 |  |  |     assert_select 'div.nodata' | 
					
						
							| 
									
										
										
										
											2008-01-05 11:33:49 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-24 17:12:39 +00: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 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-04 22:31:02 +00: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 17:12:39 +00: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 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-05 11:33:49 +00:00
										 |  |  |   def test_load_default_configuration_data | 
					
						
							|  |  |  |     delete_configuration_data | 
					
						
							|  |  |  |     post :default_configuration, :lang => 'fr' | 
					
						
							| 
									
										
										
										
											2010-06-20 16:08:20 +00:00
										 |  |  |     assert_response :redirect | 
					
						
							|  |  |  |     assert_nil flash[:error] | 
					
						
							| 
									
										
										
										
											2008-01-05 11:33:49 +00:00
										 |  |  |     assert IssueStatus.find_by_name('Nouveau') | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-10 13:41:56 +00: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 18:52:09 +00:00
										 |  |  |   def test_test_email | 
					
						
							| 
									
										
										
										
											2012-03-12 18:34:12 +00:00
										 |  |  |     user = User.find(1) | 
					
						
							| 
									
										
										
										
											2013-05-13 16:38:08 +00:00
										 |  |  |     user.pref.no_self_notified = '1' | 
					
						
							| 
									
										
										
										
											2012-03-12 18:34:12 +00:00
										 |  |  |     user.pref.save! | 
					
						
							|  |  |  |     ActionMailer::Base.deliveries.clear | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |     get :test_email | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |     assert_redirected_to '/settings?tab=notifications' | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							| 
									
										
										
										
											2012-02-25 09:58:23 +00:00
										 |  |  |     assert_not_nil mail | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |     user = User.find(1) | 
					
						
							|  |  |  |     assert_equal [user.mail], mail.bcc | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 15:39:59 +00:00
										 |  |  |   def test_test_email_failure_should_display_the_error | 
					
						
							| 
									
										
										
										
											2012-05-06 08:43:44 +00:00
										 |  |  |     Mailer.stubs(:test_email).raises(Exception, 'Some error message') | 
					
						
							| 
									
										
										
										
											2011-12-03 15:39:59 +00:00
										 |  |  |     get :test_email | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |     assert_redirected_to '/settings?tab=notifications' | 
					
						
							| 
									
										
										
										
											2011-12-03 15:39:59 +00:00
										 |  |  |     assert_match /Some error message/, flash[:error] | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-16 16:08:25 +00:00
										 |  |  |   def test_no_plugins | 
					
						
							| 
									
										
										
										
											2014-03-21 01:06:18 +00:00
										 |  |  |     Redmine::Plugin.stubs(:registered_plugins).returns({}) | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-16 16:08:25 +00:00
										 |  |  |     get :plugins | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'plugins' | 
					
						
							| 
									
										
										
										
											2014-03-21 01:06:18 +00:00
										 |  |  |     assert_equal [], assigns(:plugins) | 
					
						
							| 
									
										
										
										
											2008-11-16 16:08:25 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-16 11:58:41 +00:00
										 |  |  |   def test_plugins | 
					
						
							| 
									
										
										
										
											2008-11-16 16:08:25 +00: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 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-16 11:58:41 +00:00
										 |  |  |     get :plugins | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'plugins' | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-13 13:52:56 +00:00
										 |  |  |     assert_select 'tr#plugin-foo' do | 
					
						
							|  |  |  |       assert_select 'td span.name', :text => 'Foo plugin' | 
					
						
							|  |  |  |       assert_select 'td.configure a[href=/settings/plugin/foo]' | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_select 'tr#plugin-bar' do | 
					
						
							|  |  |  |       assert_select 'td span.name', :text => 'Bar' | 
					
						
							|  |  |  |       assert_select 'td.configure a', 0
 | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2008-11-16 11:58:41 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def test_info | 
					
						
							|  |  |  |     get :info | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'info' | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-07 20:16:30 +00: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 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-07 20:16:30 +00:00
										 |  |  |     get :index | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2012-12-13 13:52:56 +00:00
										 |  |  |     assert_select 'div#admin-menu a[href=/foo/bar]', :text => 'Test' | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-07 20:16:30 +00:00
										 |  |  |     Redmine::MenuManager.map :admin_menu do |menu| | 
					
						
							|  |  |  |       menu.delete :test_admin_menu_plugin_extension | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-16 11:58:41 +00:00
										 |  |  |   private | 
					
						
							| 
									
										
										
										
											2011-08-26 06:36:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-05 11:33:49 +00:00
										 |  |  |   def delete_configuration_data | 
					
						
							|  |  |  |     Role.delete_all('builtin = 0') | 
					
						
							|  |  |  |     Tracker.delete_all | 
					
						
							|  |  |  |     IssueStatus.delete_all | 
					
						
							|  |  |  |     Enumeration.delete_all | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  | end |