# frozen_string_literal: true # Redmine - project management software # Copyright (C) 2006-2023 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. require_relative '../test_helper' class CustomFieldsControllerTest < Redmine::ControllerTest 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 def setup @request.session[:user_id] = 1 end def test_index get :index assert_response :success assert_select 'table.custom_fields' end def test_new_without_type_should_render_select_type get :new assert_response :success assert_select 'input[name=type]', CustomFieldsHelper::CUSTOM_FIELDS_TABS.size assert_select 'input[name=type][checked=checked]', 1 end def test_new_should_work_for_each_customized_class_and_format custom_field_classes.each do |klass| Redmine::FieldFormat.formats_for_custom_field_class(klass).each do |format| get( :new, :params => { :type => klass.name, :custom_field => { :field_format => format.name } } ) assert_response :success assert_select 'form#custom_field_form' do assert_select 'select[name=?]', 'custom_field[field_format]' do assert_select 'option[value=?][selected=selected]', format.name end assert_select 'input[type=hidden][name=type][value=?]', klass.name end end end end def test_new_should_have_string_default_format get( :new, :params => { :type => 'IssueCustomField' } ) assert_response :success assert_select 'select[name=?]', 'custom_field[field_format]' do assert_select 'option[value=?][selected=selected]', 'string' end end def test_new_issue_custom_field get( :new, :params => { :type => 'IssueCustomField' } ) assert_response :success 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 # Visibility assert_select 'input[type=radio][name=?]', 'custom_field[visible]', 2 assert_select 'input[type=checkbox][name=?]', 'custom_field[role_ids][]', 3 assert_select 'input[type=checkbox][name=?]', 'custom_field[project_ids][]', Project.count assert_select 'input[type=hidden][name=?]', 'custom_field[project_ids][]', 1 assert_select 'input[type=hidden][name=type][value=IssueCustomField]' end end def test_new_time_entry_custom_field get( :new, :params => { :type => 'TimeEntryCustomField' } ) assert_response :success 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 # Visibility assert_select 'input[type=radio][name=?]', 'custom_field[visible]', 2 assert_select 'input[type=checkbox][name=?]', 'custom_field[role_ids][]', 3 assert_select 'input[type=hidden][name=type][value=TimeEntryCustomField]' end end def test_new_project_custom_field get( :new, :params => { :type => 'ProjectCustomField' } ) assert_response :success 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 # Visibility assert_select 'input[type=radio][name=?]', 'custom_field[visible]', 2 assert_select 'input[type=checkbox][name=?]', 'custom_field[role_ids][]', 3 assert_select 'input[type=hidden][name=type][value=ProjectCustomField]' end end def test_new_version_custom_field get( :new, :params => { :type => 'VersionCustomField' } ) assert_response :success 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 # Visibility assert_select 'input[type=radio][name=?]', 'custom_field[visible]', 2 assert_select 'input[type=checkbox][name=?]', 'custom_field[role_ids][]', 3 assert_select 'input[type=hidden][name=type][value=VersionCustomField]' end end def test_new_time_entry_custom_field_should_not_show_trackers_and_projects get( :new, :params => { :type => 'TimeEntryCustomField' } ) assert_response :success 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 def test_default_value_should_be_an_input_for_string_custom_field get( :new, :params => { :type => 'IssueCustomField', :custom_field => { :field_format => 'string' } } ) assert_response :success assert_select 'input[name=?]', 'custom_field[default_value]' end def test_default_value_should_be_a_textarea_for_text_custom_field get( :new, :params => { :type => 'IssueCustomField', :custom_field => { :field_format => 'text' } } ) assert_response :success assert_select 'textarea[name=?]', 'custom_field[default_value]' end def test_default_value_should_be_a_checkbox_for_bool_custom_field get( :new, :params => { :type => 'IssueCustomField', :custom_field => { :field_format => 'bool' } } ) assert_response :success assert_select 'select[name=?]', 'custom_field[default_value]' do assert_select 'option', 3 end end def test_default_value_should_not_be_present_for_user_custom_field get( :new, :params => { :type => 'IssueCustomField', :custom_field => { :field_format => 'user' } } ) assert_response :success assert_select '[name=?]', 'custom_field[default_value]', 0 end def test_setting_full_width_layout_shoul_be_present_only_for_long_text_issue_custom_field get( :new, :params => { :type => 'IssueCustomField', :custom_field => { :field_format => 'text' } } ) assert_response :success assert_select '[name=?]', 'custom_field[full_width_layout]' get( :new, :params => { :type => 'IssueCustomField', :custom_field => { :field_format => 'list' } } ) assert_response :success assert_select '[name=?]', 'custom_field[full_width_layout]', 0 get( :new, :params => { :type => 'TimeEntryCustomField', :custom_field => { :field_format => 'text' } } ) assert_response :success assert_select '[name=?]', 'custom_field[full_width_layout]', 0 end def test_new_js get( :new, :params => { :type => 'IssueCustomField', :custom_field => { :field_format => 'list' }, :format => 'js' }, :xhr => true ) assert_response :success assert_equal 'text/javascript', response.media_type assert_include '