| 
									
										
										
										
											2012-12-03 22:23:23 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2014-01-29 22:45:39 +00:00
										 |  |  | # Copyright (C) 2006-2014  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2012-12-03 22:23:23 +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. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # 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. | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 22:23:23 +00:00
										 |  |  | require File.expand_path('../../test_helper', __FILE__) | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class IssueStatusesControllerTest < ActionController::TestCase | 
					
						
							| 
									
										
										
										
											2014-11-03 07:37:15 +00:00
										 |  |  |   fixtures :issue_statuses, :issues, :users, :trackers | 
					
						
							| 
									
										
										
										
											2011-08-31 23:02:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |   def setup | 
					
						
							|  |  |  |     User.current = nil | 
					
						
							|  |  |  |     @request.session[:user_id] = 1 # admin | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 23:02:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |   def test_index | 
					
						
							|  |  |  |     get :index | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2010-02-12 19:15:33 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-11-20 14:25:58 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def test_index_by_anonymous_should_redirect_to_login_form | 
					
						
							|  |  |  |     @request.session[:user_id] = nil | 
					
						
							|  |  |  |     get :index | 
					
						
							|  |  |  |     assert_redirected_to '/login?back_url=http%3A%2F%2Ftest.host%2Fissue_statuses' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_index_by_user_should_respond_with_406 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :index | 
					
						
							|  |  |  |     assert_response 406
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 23:02:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |   def test_new | 
					
						
							|  |  |  |     get :new | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 23:02:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |   def test_create | 
					
						
							|  |  |  |     assert_difference 'IssueStatus.count' do | 
					
						
							|  |  |  |       post :create, :issue_status => {:name => 'New status'} | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-02-12 19:15:33 +00:00
										 |  |  |     assert_redirected_to :action => 'index' | 
					
						
							| 
									
										
										
										
											2012-12-03 18:21:32 +00:00
										 |  |  |     status = IssueStatus.order('id DESC').first | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |     assert_equal 'New status', status.name | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 23:02:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 14:39:55 +00:00
										 |  |  |   def test_create_with_failure | 
					
						
							|  |  |  |     post :create, :issue_status => {:name => ''} | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							| 
									
										
										
										
											2014-02-04 23:52:28 +00:00
										 |  |  |     assert_error_tag :content => /name #{ESCAPED_CANT} be blank/i | 
					
						
							| 
									
										
										
										
											2012-02-23 14:39:55 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |   def test_edit | 
					
						
							|  |  |  |     get :edit, :id => '3' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 23:02:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |   def test_update | 
					
						
							| 
									
										
										
										
											2011-11-22 22:04:07 +00:00
										 |  |  |     put :update, :id => '3', :issue_status => {:name => 'Renamed status'} | 
					
						
							| 
									
										
										
										
											2010-02-12 19:15:33 +00:00
										 |  |  |     assert_redirected_to :action => 'index' | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |     status = IssueStatus.find(3) | 
					
						
							|  |  |  |     assert_equal 'Renamed status', status.name | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 23:02:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 14:39:55 +00:00
										 |  |  |   def test_update_with_failure | 
					
						
							|  |  |  |     put :update, :id => '3', :issue_status => {:name => ''} | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							| 
									
										
										
										
											2014-02-04 23:52:28 +00:00
										 |  |  |     assert_error_tag :content => /name #{ESCAPED_CANT} be blank/i | 
					
						
							| 
									
										
										
										
											2012-02-23 14:39:55 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |   def test_destroy | 
					
						
							| 
									
										
										
										
											2014-11-02 19:45:14 +00:00
										 |  |  |     Issue.where(:status_id => 1).delete_all | 
					
						
							|  |  |  |     Tracker.where(:default_status_id => 1).delete_all | 
					
						
							| 
									
										
										
										
											2011-08-31 23:02:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |     assert_difference 'IssueStatus.count', -1 do | 
					
						
							| 
									
										
										
										
											2011-11-22 22:04:07 +00:00
										 |  |  |       delete :destroy, :id => '1' | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-02-12 19:15:33 +00:00
										 |  |  |     assert_redirected_to :action => 'index' | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |     assert_nil IssueStatus.find_by_id(1) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 23:02:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-08 11:02:44 +00:00
										 |  |  |   def test_destroy_should_block_if_status_is_used_by_issues | 
					
						
							| 
									
										
										
										
											2014-11-02 19:45:14 +00:00
										 |  |  |     assert Issue.where(:status_id => 1).any? | 
					
						
							|  |  |  |     Tracker.where(:default_status_id => 1).delete_all | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_difference 'IssueStatus.count' do | 
					
						
							|  |  |  |       delete :destroy, :id => '1' | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to :action => 'index' | 
					
						
							|  |  |  |     assert_not_nil IssueStatus.find_by_id(1) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-08 11:02:44 +00:00
										 |  |  |   def test_destroy_should_block_if_status_is_used_as_tracker_default_status | 
					
						
							| 
									
										
										
										
											2014-11-02 19:45:14 +00:00
										 |  |  |     Issue.where(:status_id => 1).delete_all | 
					
						
							|  |  |  |     assert Tracker.where(:default_status_id => 1).any? | 
					
						
							| 
									
										
										
										
											2011-08-31 23:02:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |     assert_no_difference 'IssueStatus.count' do | 
					
						
							| 
									
										
										
										
											2011-11-22 22:04:07 +00:00
										 |  |  |       delete :destroy, :id => '1' | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-02-12 19:15:33 +00:00
										 |  |  |     assert_redirected_to :action => 'index' | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  |     assert_not_nil IssueStatus.find_by_id(1) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2009-12-11 18:48:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 10:25:14 +00:00
										 |  |  |   def test_update_issue_done_ratio_with_issue_done_ratio_set_to_issue_field | 
					
						
							|  |  |  |     with_settings :issue_done_ratio => 'issue_field' do | 
					
						
							|  |  |  |       post :update_issue_done_ratio | 
					
						
							|  |  |  |       assert_match /not updated/, flash[:error].to_s | 
					
						
							|  |  |  |       assert_redirected_to '/issue_statuses' | 
					
						
							| 
									
										
										
										
											2009-12-11 18:48:34 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-12-15 10:25:14 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2009-12-11 18:48:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 10:25:14 +00:00
										 |  |  |   def test_update_issue_done_ratio_with_issue_done_ratio_set_to_issue_status | 
					
						
							|  |  |  |     with_settings :issue_done_ratio => 'issue_status' do | 
					
						
							|  |  |  |       post :update_issue_done_ratio | 
					
						
							|  |  |  |       assert_match /Issue done ratios updated/, flash[:notice].to_s | 
					
						
							|  |  |  |       assert_redirected_to '/issue_statuses' | 
					
						
							| 
									
										
										
										
											2009-12-11 18:48:34 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2009-11-07 08:44:56 +00:00
										 |  |  | end |