| 
									
										
										
										
											2019-03-16 15:03:47 +00:00
										 |  |  | # frozen_string_literal: true | 
					
						
							| 
									
										
										
										
											2019-03-15 01:32:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-25 08:32:47 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2020-03-03 00:24:10 +00:00
										 |  |  | # Copyright (C) 2006-2020  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2015-10-25 08:32:47 +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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | require File.expand_path('../../test_helper', __FILE__) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-14 09:35:49 +00:00
										 |  |  | class CustomFieldEnumerationsControllerTest < Redmine::ControllerTest | 
					
						
							| 
									
										
										
										
											2015-10-25 08:32:47 +00:00
										 |  |  |   fixtures :users, :email_addresses | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def setup | 
					
						
							|  |  |  |     @request.session[:user_id] = 1
 | 
					
						
							|  |  |  |     @field = GroupCustomField.create!(:name => 'List', :field_format => 'enumeration', :is_required => false) | 
					
						
							|  |  |  |     @foo = CustomFieldEnumeration.new(:name => 'Foo') | 
					
						
							|  |  |  |     @bar = CustomFieldEnumeration.new(:name => 'Bar') | 
					
						
							|  |  |  |     @field.enumerations << @foo | 
					
						
							|  |  |  |     @field.enumerations << @bar | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_index | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :index, :params => { | 
					
						
							|  |  |  |         :custom_field_id => @field.id | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2015-10-25 08:32:47 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_select 'ul#custom_field_enumerations' do | 
					
						
							|  |  |  |       assert_select 'li', 2
 | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2015-10-25 08:32:47 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_create | 
					
						
							|  |  |  |     assert_difference 'CustomFieldEnumeration.count' do | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |       post :create, :params => { | 
					
						
							|  |  |  |           :custom_field_id => @field.id, | 
					
						
							|  |  |  |           :custom_field_enumeration => { | 
					
						
							| 
									
										
										
										
											2019-06-06 14:53:23 +00:00
										 |  |  |             :name => 'Baz' | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |           } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-10-25 08:32:47 +00:00
										 |  |  |       assert_redirected_to "/custom_fields/#{@field.id}/enumerations" | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_equal 3, @field.reload.enumerations.count | 
					
						
							|  |  |  |     enum = @field.enumerations.last | 
					
						
							|  |  |  |     assert_equal 'Baz', enum.name | 
					
						
							|  |  |  |     assert_equal true, enum.active | 
					
						
							|  |  |  |     assert_equal 3, enum.position | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_create_xhr | 
					
						
							|  |  |  |     assert_difference 'CustomFieldEnumeration.count' do | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |       post :create, :params => { | 
					
						
							|  |  |  |           :custom_field_id => @field.id, | 
					
						
							|  |  |  |           :custom_field_enumeration => { | 
					
						
							| 
									
										
										
										
											2019-06-06 14:53:23 +00:00
										 |  |  |             :name => 'Baz' | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |           } | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         :xhr => true | 
					
						
							| 
									
										
										
										
											2015-10-25 08:32:47 +00:00
										 |  |  |       assert_response :success | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_update_each | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     put :update_each, :params => { | 
					
						
							|  |  |  |         :custom_field_id => @field.id, | 
					
						
							|  |  |  |         :custom_field_enumerations => { | 
					
						
							| 
									
										
										
										
											2017-06-03 08:43:04 +00:00
										 |  |  |           @bar.id.to_s => { | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |             :position => "1", | 
					
						
							|  |  |  |             :name => "Baz", | 
					
						
							|  |  |  |             :active => "1" | 
					
						
							| 
									
										
										
										
											2019-06-06 14:53:23 +00:00
										 |  |  |           }, | 
					
						
							| 
									
										
										
										
											2017-06-03 08:43:04 +00:00
										 |  |  |           @foo.id.to_s => { | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |             :position => "2", | 
					
						
							|  |  |  |             :name => "Foo", | 
					
						
							|  |  |  |             :active => "0" | 
					
						
							| 
									
										
										
										
											2019-06-06 14:53:23 +00:00
										 |  |  |           } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2015-10-25 08:32:47 +00:00
										 |  |  |     assert_response 302
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @bar.reload | 
					
						
							|  |  |  |     assert_equal "Baz", @bar.name | 
					
						
							|  |  |  |     assert_equal true, @bar.active | 
					
						
							|  |  |  |     assert_equal 1, @bar.position | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @foo.reload | 
					
						
							|  |  |  |     assert_equal "Foo", @foo.name | 
					
						
							|  |  |  |     assert_equal false, @foo.active | 
					
						
							|  |  |  |     assert_equal 2, @foo.position | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_destroy | 
					
						
							|  |  |  |     assert_difference 'CustomFieldEnumeration.count', -1 do | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |       delete :destroy, :params => { | 
					
						
							|  |  |  |           :custom_field_id => @field.id, | 
					
						
							|  |  |  |           :id => @foo.id | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-10-25 08:32:47 +00:00
										 |  |  |       assert_redirected_to "/custom_fields/#{@field.id}/enumerations" | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_equal 1, @field.reload.enumerations.count | 
					
						
							|  |  |  |     enum = @field.enumerations.last | 
					
						
							|  |  |  |     assert_equal 'Bar', enum.name | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_destroy_enumeration_in_use_should_display_destroy_form | 
					
						
							|  |  |  |     group = Group.generate! | 
					
						
							|  |  |  |     group.custom_field_values = {@field.id.to_s => @foo.id.to_s} | 
					
						
							|  |  |  |     group.save! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_difference 'CustomFieldEnumeration.count' do | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |       delete :destroy, :params => { | 
					
						
							|  |  |  |           :custom_field_id => @field.id, | 
					
						
							|  |  |  |           :id => @foo.id | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  |       assert_response :success | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       assert_select 'select[name=?]', 'reassign_to_id' | 
					
						
							| 
									
										
										
										
											2015-10-25 08:32:47 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_destroy_enumeration_in_use_should_destroy_and_reassign_values | 
					
						
							|  |  |  |     group = Group.generate! | 
					
						
							|  |  |  |     group.custom_field_values = {@field.id.to_s => @foo.id.to_s} | 
					
						
							|  |  |  |     group.save! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'CustomFieldEnumeration.count', -1 do | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |       delete :destroy, :params => { | 
					
						
							|  |  |  |           :custom_field_id => @field.id, | 
					
						
							|  |  |  |           :id => @foo.id, | 
					
						
							|  |  |  |           :reassign_to_id => @bar.id | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-10-25 08:32:47 +00:00
										 |  |  |       assert_response 302
 | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_equal @bar.id.to_s, group.reload.custom_field_value(@field) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |