#-- encoding: UTF-8 #-- copyright # OpenProject is an open source project management software. # Copyright (C) 2012-2021 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. # # OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: # Copyright (C) 2006-2013 Jean-Philippe Lang # Copyright (C) 2010-2013 the ChiliProject Team # # 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. # # See COPYRIGHT and LICENSE files for more details. #++ require 'spec_helper' require 'ostruct' describe CustomFieldFormBuilder do include Capybara::RSpecMatchers let(:helper) { ActionView::Base.new(ActionView::LookupContext.new(''), {}, @controller) } let(:builder) { described_class.new(:user, resource, helper, builder_options) } let(:builder_options) do { custom_value: custom_value, custom_field: custom_field } end describe '#custom_field' do let(:options) { { class: 'custom-class' } } let(:custom_field) do build_stubbed(:custom_field) end let(:custom_value) do build_stubbed(:custom_value, customized: resource, custom_field: custom_field) end let(:typed_value) do custom_value.typed_value end let(:resource) do build_stubbed(:user) end before do allow(resource) .to receive(custom_field.accessor_name) .and_return(typed_value) end subject(:output) do builder.cf_form_field options end it_behaves_like 'labelled by default' it_behaves_like 'wrapped in field-container by default' do let(:container_count) { 2 } end context 'for a bool custom field' do it_behaves_like 'wrapped in container', 'check-box-container' do let(:container_count) { 2 } end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('input:nth-of-type(2)') end end context 'for a date custom field' do before do custom_field.field_format = 'date' end it_behaves_like 'wrapped in container', 'text-field-container' do let(:container_count) { 2 } end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('input') end end context 'for a text custom field' do before do custom_field.field_format = 'text' end it_behaves_like 'wrapped in container', 'text-area-container' do let(:container_count) { 2 } end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('textarea') end end context 'for a string custom field' do before do custom_field.field_format = 'string' end it_behaves_like 'wrapped in container', 'text-field-container' do let(:container_count) { 2 } end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('input') end end context 'for an int custom field' do before do custom_field.field_format = 'int' end it_behaves_like 'wrapped in container', 'text-field-container' do let(:container_count) { 2 } end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('input') end end context 'for a float custom field' do before do custom_field.field_format = 'float' end it_behaves_like 'wrapped in container', 'text-field-container' do let(:container_count) { 2 } end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('input') end end context 'for a list custom field' do let(:custom_field) do build_stubbed(:list_wp_custom_field, custom_options: [custom_option]) end let(:custom_option) do build_stubbed(:custom_option, value: 'my_option') end it_behaves_like 'wrapped in container', 'select-container' do let(:container_count) { 2 } end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('select') end context 'which is required and has no default value' do before do custom_field.is_required = true end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('select') end end context 'which is required and a default value' do before do custom_field.is_required = true custom_option.default_value = true end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('select') end end end context 'for a user custom field' do let(:project) { build_stubbed(:project) } let(:user1) { build_stubbed(:user) } let(:user2) { build_stubbed(:user) } let(:resource) { project } before do custom_field.field_format = 'user' allow(project) .to receive(custom_field.accessor_name) .and_return typed_value allow(project) .to(receive(:principals)) .and_return([user1, user2]) end it_behaves_like 'wrapped in container', 'select-container' do let(:container_count) { 2 } end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('select') end context 'which is required and has no default value' do before do custom_field.is_required = true end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('select') end end end context 'for a version custom field' do let(:project) { build_stubbed(:project) } let(:version1) { build_stubbed(:version) } let(:version2) { build_stubbed(:version) } let(:resource) { project } before do custom_field.field_format = 'version' allow(project) .to receive(custom_field.accessor_name) .and_return typed_value allow(project) .to receive(:shared_versions) .and_return([version1, version2]) end it_behaves_like 'wrapped in container', 'select-container' do let(:container_count) { 2 } end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('select') end context 'which is required and has no default value' do before do custom_field.is_required = true end it 'should output element' do expect(output).to be_html_eql(%{ }).at_path('select') end end end end end