| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  | # redMine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006-2007  Jean-Philippe Lang | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # 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. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # 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. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # 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
										 |  |  | require 'admin_controller' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Re-raise errors caught by the controller. | 
					
						
							|  |  |  | class AdminController; def rescue_action(e) raise e end; end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  | class AdminControllerTest < ActionController::TestCase | 
					
						
							| 
									
										
										
										
											2008-01-05 11:33:49 +00:00
										 |  |  |   fixtures :projects, :users, :roles | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def setup | 
					
						
							|  |  |  |     @controller = AdminController.new | 
					
						
							|  |  |  |     @request    = ActionController::TestRequest.new | 
					
						
							|  |  |  |     @response   = ActionController::TestResponse.new | 
					
						
							|  |  |  |     User.current = nil | 
					
						
							|  |  |  |     @request.session[:user_id] = 1 # admin | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-01-05 11:33:49 +00:00
										 |  |  |   def test_index | 
					
						
							|  |  |  |     get :index | 
					
						
							|  |  |  |     assert_no_tag :tag => 'div', | 
					
						
							|  |  |  |                   :attributes => { :class => /nodata/ } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_index_with_no_configuration_data | 
					
						
							|  |  |  |     delete_configuration_data | 
					
						
							|  |  |  |     get :index | 
					
						
							|  |  |  |     assert_tag :tag => 'div', | 
					
						
							|  |  |  |                :attributes => { :class => /nodata/ } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   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 | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |   def test_test_email | 
					
						
							|  |  |  |     get :test_email | 
					
						
							| 
									
										
										
										
											2009-01-04 18:14:51 +00:00
										 |  |  |     assert_redirected_to '/settings/edit?tab=notifications' | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert_kind_of TMail::Mail, mail | 
					
						
							|  |  |  |     user = User.find(1) | 
					
						
							|  |  |  |     assert_equal [user.mail], mail.bcc | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-11-16 11:58:41 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2008-11-16 16:08:25 +00:00
										 |  |  |   def test_no_plugins | 
					
						
							|  |  |  |     Redmine::Plugin.clear | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     get :plugins | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'plugins' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-11-16 11:58:41 +00:00
										 |  |  |     get :plugins | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'plugins' | 
					
						
							| 
									
										
										
										
											2008-11-16 16:08:25 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2008-11-16 17:12:02 +00:00
										 |  |  |     assert_tag :td, :child => { :tag => 'span', :content => 'Foo plugin' } | 
					
						
							|  |  |  |     assert_tag :td, :child => { :tag => 'span', :content => 'Bar' } | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2008-01-05 11:33:49 +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 | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     get :index | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_tag :a, :attributes => { :href => '/foo/bar' }, | 
					
						
							|  |  |  |                    :content => 'Test' | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     Redmine::MenuManager.map :admin_menu do |menu| | 
					
						
							|  |  |  |       menu.delete :test_admin_menu_plugin_extension | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-11-16 11:58:41 +00:00
										 |  |  |   private | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											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 |