| 
									
										
										
										
											2019-03-16 15:03:47 +00:00
										 |  |  | # frozen_string_literal: true | 
					
						
							| 
									
										
										
										
											2019-03-15 01:32:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-20 14:06:57 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2019-05-25 07:36:06 +00:00
										 |  |  | # Copyright (C) 2006-2019  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2009-09-20 14:06:57 +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-30 15:55:09 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2009-09-20 14:06:57 +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-30 15:55:09 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2009-09-20 14:06:57 +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__) | 
					
						
							| 
									
										
										
										
											2009-09-20 14:06:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-14 09:35:49 +00:00
										 |  |  | class CustomFieldsControllerTest < Redmine::ControllerTest | 
					
						
							| 
									
										
										
										
											2014-11-03 08:13:08 +00:00
										 |  |  |   fixtures :custom_fields, :custom_values, | 
					
						
							|  |  |  |            :custom_fields_projects, :custom_fields_trackers, | 
					
						
							|  |  |  |            :roles, :users, | 
					
						
							|  |  |  |            :members, :member_roles, | 
					
						
							|  |  |  |            :groups_users, | 
					
						
							|  |  |  |            :trackers, :projects_trackers, | 
					
						
							|  |  |  |            :enabled_modules, | 
					
						
							|  |  |  |            :projects, :issues, | 
					
						
							|  |  |  |            :issue_statuses, | 
					
						
							|  |  |  |            :issue_categories, | 
					
						
							|  |  |  |            :enumerations, | 
					
						
							|  |  |  |            :workflows | 
					
						
							| 
									
										
										
										
											2011-08-30 15:55:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-20 14:06:57 +00:00
										 |  |  |   def setup | 
					
						
							|  |  |  |     @request.session[:user_id] = 1
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-30 15:55:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-27 21:11:10 +00:00
										 |  |  |   def test_index | 
					
						
							|  |  |  |     get :index | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_select 'table.custom_fields' | 
					
						
							| 
									
										
										
										
											2011-11-27 21:11:10 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 07:57:59 +00:00
										 |  |  |   def test_new_without_type_should_render_select_type | 
					
						
							|  |  |  |     get :new | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-21 12:50:43 +00:00
										 |  |  |     assert_select 'input[name=type]', CustomFieldsHelper::CUSTOM_FIELDS_TABS.size | 
					
						
							| 
									
										
										
										
											2014-02-07 07:57:59 +00:00
										 |  |  |     assert_select 'input[name=type][checked=checked]', 1
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-14 08:22:43 +00:00
										 |  |  |   def test_new_should_work_for_each_customized_class_and_format | 
					
						
							| 
									
										
										
										
											2012-04-18 19:25:54 +00:00
										 |  |  |     custom_field_classes.each do |klass| | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  |       Redmine::FieldFormat.formats_for_custom_field_class(klass).each do |format| | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |         get :new, :params => { | 
					
						
							|  |  |  |             :type => klass.name, | 
					
						
							|  |  |  |             :custom_field => { | 
					
						
							|  |  |  |               :field_format => format.name | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |           } | 
					
						
							| 
									
										
										
										
											2013-12-14 08:22:43 +00:00
										 |  |  |         assert_response :success | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-14 08:22:43 +00:00
										 |  |  |         assert_select 'form#custom_field_form' do | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  |           assert_select 'select[name=?]', 'custom_field[field_format]' do | 
					
						
							|  |  |  |             assert_select 'option[value=?][selected=selected]', format.name | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2013-12-14 08:22:43 +00:00
										 |  |  |           assert_select 'input[type=hidden][name=type][value=?]', klass.name | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2012-08-07 16:58:51 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2012-04-18 19:25:54 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-14 08:22:43 +00:00
										 |  |  |   def test_new_should_have_string_default_format | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'IssueCustomField' | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2013-12-14 08:22:43 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_select 'select[name=?]', 'custom_field[field_format]' do | 
					
						
							|  |  |  |       assert_select 'option[value=?][selected=selected]', 'string' | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2013-12-14 08:22:43 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-09 22:58:30 +00:00
										 |  |  |   def test_new_issue_custom_field | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'IssueCustomField' | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2011-04-01 13:44:58 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-07 16:58:51 +00:00
										 |  |  |     assert_select 'form#custom_field_form' do | 
					
						
							|  |  |  |       assert_select 'select#custom_field_field_format[name=?]', 'custom_field[field_format]' do | 
					
						
							|  |  |  |         assert_select 'option[value=user]', :text => 'User' | 
					
						
							|  |  |  |         assert_select 'option[value=version]', :text => 'Version' | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2013-10-20 08:29:55 +00:00
										 |  |  |       assert_select 'input[type=checkbox][name=?]', 'custom_field[project_ids][]', Project.count | 
					
						
							|  |  |  |       assert_select 'input[type=hidden][name=?]', 'custom_field[project_ids][]', 1
 | 
					
						
							| 
									
										
										
										
											2012-08-07 16:58:51 +00:00
										 |  |  |       assert_select 'input[type=hidden][name=type][value=IssueCustomField]' | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-20 08:29:55 +00:00
										 |  |  |   def test_new_time_entry_custom_field_should_not_show_trackers_and_projects | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'TimeEntryCustomField' | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2013-10-20 08:29:55 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-20 08:29:55 +00:00
										 |  |  |     assert_select 'form#custom_field_form' do | 
					
						
							|  |  |  |       assert_select 'input[name=?]', 'custom_field[tracker_ids][]', 0
 | 
					
						
							|  |  |  |       assert_select 'input[name=?]', 'custom_field[project_ids][]', 0
 | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-15 08:48:51 +00:00
										 |  |  |   def test_default_value_should_be_an_input_for_string_custom_field | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'IssueCustomField', | 
					
						
							|  |  |  |         :custom_field => { | 
					
						
							|  |  |  |           :field_format => 'string' | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2013-02-15 08:48:51 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_select 'input[name=?]', 'custom_field[default_value]' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_default_value_should_be_a_textarea_for_text_custom_field | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'IssueCustomField', | 
					
						
							|  |  |  |         :custom_field => { | 
					
						
							|  |  |  |           :field_format => 'text' | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2013-02-15 08:48:51 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_select 'textarea[name=?]', 'custom_field[default_value]' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_default_value_should_be_a_checkbox_for_bool_custom_field | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'IssueCustomField', | 
					
						
							|  |  |  |         :custom_field => { | 
					
						
							|  |  |  |           :field_format => 'bool' | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2013-02-15 08:48:51 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2013-12-14 08:22:43 +00:00
										 |  |  |     assert_select 'select[name=?]', 'custom_field[default_value]' do | 
					
						
							|  |  |  |       assert_select 'option', 3
 | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2013-02-15 08:48:51 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_default_value_should_not_be_present_for_user_custom_field | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'IssueCustomField', | 
					
						
							|  |  |  |         :custom_field => { | 
					
						
							|  |  |  |           :field_format => 'user' | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2013-02-15 08:48:51 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_select '[name=?]', 'custom_field[default_value]', 0
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 14:55:36 +00:00
										 |  |  |   def test_setting_full_width_layout_shoul_be_present_only_for_long_text_issue_custom_field | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'IssueCustomField', | 
					
						
							|  |  |  |         :custom_field => { | 
					
						
							|  |  |  |           :field_format => 'text' | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2017-01-25 14:55:36 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_select '[name=?]', 'custom_field[full_width_layout]' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'IssueCustomField', | 
					
						
							|  |  |  |         :custom_field => { | 
					
						
							|  |  |  |           :field_format => 'list' | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2017-01-25 14:55:36 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_select '[name=?]', 'custom_field[full_width_layout]', 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'TimeEntryCustomField', | 
					
						
							|  |  |  |         :custom_field => { | 
					
						
							|  |  |  |           :field_format => 'text' | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2017-01-25 14:55:36 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_select '[name=?]', 'custom_field[full_width_layout]', 0
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-07 16:58:51 +00:00
										 |  |  |   def test_new_js | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'IssueCustomField', | 
					
						
							|  |  |  |         :custom_field => { | 
					
						
							|  |  |  |           :field_format => 'list' | 
					
						
							| 
									
										
										
										
											2019-06-06 14:53:23 +00:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |         :format => 'js' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       :xhr => true | 
					
						
							| 
									
										
										
										
											2012-08-07 16:58:51 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_equal 'text/javascript', response.content_type | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  |     assert_include '<option selected=\"selected\" value=\"list\">List<\/option>', response.body | 
					
						
							| 
									
										
										
										
											2011-04-01 13:44:58 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-30 15:55:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 07:57:59 +00:00
										 |  |  |   def test_new_with_invalid_custom_field_class_should_render_select_type | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :new, :params => { | 
					
						
							|  |  |  |         :type => 'UnknownCustomField' | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2014-02-07 07:57:59 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_select 'input[type=radio][name=type]' | 
					
						
							| 
									
										
										
										
											2011-04-01 13:44:58 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-30 15:55:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-09 22:58:30 +00:00
										 |  |  |   def test_create_list_custom_field | 
					
						
							| 
									
										
										
										
											2015-10-25 08:37:54 +00:00
										 |  |  |     field = new_record(IssueCustomField) do | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |       post :create, :params => { | 
					
						
							|  |  |  |           :type => "IssueCustomField", | 
					
						
							|  |  |  |           :custom_field => { | 
					
						
							|  |  |  |             :name => "test_post_new_list", | 
					
						
							|  |  |  |             :default_value => "", | 
					
						
							|  |  |  |             :min_length => "0", | 
					
						
							|  |  |  |             :searchable => "0", | 
					
						
							|  |  |  |             :regexp => "", | 
					
						
							|  |  |  |             :is_for_all => "1", | 
					
						
							|  |  |  |             :possible_values => "0.1\n0.2\n", | 
					
						
							|  |  |  |             :max_length => "0", | 
					
						
							|  |  |  |             :is_filter => "0", | 
					
						
							|  |  |  |             :is_required =>"0", | 
					
						
							|  |  |  |             :field_format => "list", | 
					
						
							|  |  |  |             :tracker_ids => ["1", ""] | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-08-30 15:55:09 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2015-10-25 08:37:54 +00:00
										 |  |  |     assert_redirected_to "/custom_fields/#{field.id}/edit" | 
					
						
							|  |  |  |     assert_equal "test_post_new_list", field.name | 
					
						
							| 
									
										
										
										
											2009-09-20 14:06:57 +00:00
										 |  |  |     assert_equal ["0.1", "0.2"], field.possible_values | 
					
						
							|  |  |  |     assert_equal 1, field.trackers.size | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-11-27 21:11:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-20 08:29:55 +00:00
										 |  |  |   def test_create_with_project_ids | 
					
						
							|  |  |  |     assert_difference 'CustomField.count' do | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |       post :create, :params => { | 
					
						
							|  |  |  |           :type => "IssueCustomField", | 
					
						
							|  |  |  |           :custom_field => { | 
					
						
							|  |  |  |             :name => "foo", | 
					
						
							|  |  |  |             :field_format => "string", | 
					
						
							|  |  |  |             :is_for_all => "0", | 
					
						
							|  |  |  |             :project_ids => ["1", "3", ""] | 
					
						
							| 
									
										
										
										
											2019-06-06 14:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |           } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-10-20 08:29:55 +00:00
										 |  |  |       assert_response 302
 | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     field = IssueCustomField.order("id desc").first | 
					
						
							|  |  |  |     assert_equal [1, 3], field.projects.map(&:id).sort | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 14:53:55 +00:00
										 |  |  |   def test_create_with_continue_params | 
					
						
							|  |  |  |     assert_difference 'CustomField.count' do | 
					
						
							|  |  |  |       post :create, :params => { | 
					
						
							|  |  |  |           :type => 'IssueCustomField', | 
					
						
							|  |  |  |           :continue => 'Create and Continue', | 
					
						
							|  |  |  |           :custom_field => { | 
					
						
							|  |  |  |             :name => 'foo', | 
					
						
							|  |  |  |             :field_format => 'string' | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to '/custom_fields/new?type=IssueCustomField' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-09 22:58:30 +00:00
										 |  |  |   def test_create_with_failure | 
					
						
							|  |  |  |     assert_no_difference 'CustomField.count' do | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |       post :create, :params => { | 
					
						
							|  |  |  |           :type => "IssueCustomField", | 
					
						
							|  |  |  |           :custom_field => { | 
					
						
							|  |  |  |             :name => '' | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-12-09 22:58:30 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  |     assert_select_error /name cannot be blank/i | 
					
						
							| 
									
										
										
										
											2011-12-09 22:58:30 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 07:57:59 +00:00
										 |  |  |   def test_create_without_type_should_render_select_type | 
					
						
							|  |  |  |     assert_no_difference 'CustomField.count' do | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |       post :create, :params => { | 
					
						
							|  |  |  |           :custom_field => { | 
					
						
							|  |  |  |             :name => '' | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-02-07 07:57:59 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  |     assert_select 'input[type=radio][name=type]' | 
					
						
							| 
									
										
										
										
											2014-02-07 07:57:59 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-09 22:58:30 +00:00
										 |  |  |   def test_edit | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :edit, :params => { | 
					
						
							|  |  |  |         :id => 1
 | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2011-11-27 21:11:10 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2014-11-20 19:57:06 +00:00
										 |  |  |     assert_select 'input[name=?][value=?]', 'custom_field[name]', 'Database' | 
					
						
							| 
									
										
										
										
											2011-11-27 21:11:10 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-09 22:58:30 +00:00
										 |  |  |   def test_edit_invalid_custom_field_should_render_404 | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     get :edit, :params => { | 
					
						
							|  |  |  |         :id => 99
 | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2011-12-09 22:58:30 +00:00
										 |  |  |     assert_response 404
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_update | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     put :update, :params => { | 
					
						
							|  |  |  |         :id => 1, | 
					
						
							|  |  |  |         :custom_field => { | 
					
						
							|  |  |  |           :name => 'New name' | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2015-10-25 08:37:54 +00:00
										 |  |  |     assert_redirected_to '/custom_fields/1/edit' | 
					
						
							| 
									
										
										
										
											2011-11-27 21:11:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     field = CustomField.find(1) | 
					
						
							|  |  |  |     assert_equal 'New name', field.name | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-09 22:58:30 +00:00
										 |  |  |   def test_update_with_failure | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |     put :update, :params => { | 
					
						
							|  |  |  |         :id => 1, | 
					
						
							|  |  |  |         :custom_field => { | 
					
						
							|  |  |  |           :name => '' | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2011-12-09 22:58:30 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2016-07-18 21:26:30 +00:00
										 |  |  |     assert_select_error /name cannot be blank/i | 
					
						
							| 
									
										
										
										
											2011-12-09 22:58:30 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-27 21:11:10 +00:00
										 |  |  |   def test_destroy | 
					
						
							| 
									
										
										
										
											2013-06-12 19:13:25 +00:00
										 |  |  |     custom_values_count = CustomValue.where(:custom_field_id => 1).count | 
					
						
							| 
									
										
										
										
											2011-11-27 21:11:10 +00:00
										 |  |  |     assert custom_values_count > 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'CustomField.count', -1 do | 
					
						
							|  |  |  |       assert_difference 'CustomValue.count', - custom_values_count do | 
					
						
							| 
									
										
										
										
											2017-05-31 17:32:34 +00:00
										 |  |  |         delete :destroy, :params => { | 
					
						
							|  |  |  |             :id => 1
 | 
					
						
							|  |  |  |           } | 
					
						
							| 
									
										
										
										
											2011-11-27 21:11:10 +00:00
										 |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_redirected_to '/custom_fields?tab=IssueCustomField' | 
					
						
							|  |  |  |     assert_nil CustomField.find_by_id(1) | 
					
						
							|  |  |  |     assert_nil CustomValue.find_by_custom_field_id(1) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2012-04-18 19:25:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def custom_field_classes | 
					
						
							|  |  |  |     files = Dir.glob(File.join(Rails.root, 'app/models/*_custom_field.rb')).map {|f| File.basename(f).sub(/\.rb$/, '') } | 
					
						
							|  |  |  |     classes = files.map(&:classify).map(&:constantize) | 
					
						
							|  |  |  |     assert classes.size > 0
 | 
					
						
							|  |  |  |     classes | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2009-09-20 14:06:57 +00:00
										 |  |  | end |