Mercurial > hg > soundsoftware-site
view .svn/pristine/a1/a13b287b0ac6810b1dd4f043e22916c40ff94b84.svn-base @ 1543:05d639e5d59b feature_1136
First cut of a git export script
author | Chris Cannam |
---|---|
date | Tue, 12 Jan 2016 15:15:02 +0000 |
parents | dffacf8a6908 |
children |
line wrap: on
line source
# Redmine - project management software # Copyright (C) 2006-2014 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 File.expand_path('../../../../../test_helper', __FILE__) require 'redmine/field_format' class Redmine::ListFieldFormatTest < ActionView::TestCase include ApplicationHelper include Redmine::I18n def setup set_language_if_valid 'en' end def test_possible_existing_value_should_be_valid field = GroupCustomField.create!(:name => 'List', :field_format => 'list', :possible_values => ['Foo', 'Bar']) group = Group.new(:name => 'Group') group.custom_field_values = {field.id => 'Baz'} assert group.save(:validate => false) group = Group.order('id DESC').first assert_equal ['Foo', 'Bar', 'Baz'], field.possible_custom_value_options(group.custom_value_for(field)) assert group.valid? end def test_edit_tag_should_have_id_and_name field = IssueCustomField.new(:field_format => 'list', :possible_values => ['Foo', 'Bar'], :is_required => false) value = CustomFieldValue.new(:custom_field => field, :customized => Issue.new) tag = field.format.edit_tag(self, 'abc', 'xyz', value) assert_select_in tag, 'select[id=abc][name=xyz]' end def test_edit_tag_should_contain_possible_values field = IssueCustomField.new(:field_format => 'list', :possible_values => ['Foo', 'Bar'], :is_required => false) value = CustomFieldValue.new(:custom_field => field, :customized => Issue.new) tag = field.format.edit_tag(self, 'id', 'name', value) assert_select_in tag, 'select' do assert_select 'option', 3 assert_select 'option[value=]' assert_select 'option[value=Foo]', :text => 'Foo' assert_select 'option[value=Bar]', :text => 'Bar' end end def test_edit_tag_should_select_current_value field = IssueCustomField.new(:field_format => 'list', :possible_values => ['Foo', 'Bar'], :is_required => false) value = CustomFieldValue.new(:custom_field => field, :customized => Issue.new, :value => 'Bar') tag = field.format.edit_tag(self, 'id', 'name', value) assert_select_in tag, 'select' do assert_select 'option[selected=selected]', 1 assert_select 'option[value=Bar][selected=selected]', :text => 'Bar' end end def test_edit_tag_with_multiple_should_select_current_values field = IssueCustomField.new(:field_format => 'list', :possible_values => ['Foo', 'Bar', 'Baz'], :is_required => false, :multiple => true) value = CustomFieldValue.new(:custom_field => field, :customized => Issue.new, :value => ['Bar', 'Baz']) tag = field.format.edit_tag(self, 'id', 'name', value) assert_select_in tag, 'select[multiple=multiple]' do assert_select 'option[selected=selected]', 2 assert_select 'option[value=Bar][selected=selected]', :text => 'Bar' assert_select 'option[value=Baz][selected=selected]', :text => 'Baz' end end def test_edit_tag_with_check_box_style_should_contain_possible_values field = IssueCustomField.new(:field_format => 'list', :possible_values => ['Foo', 'Bar'], :is_required => false, :edit_tag_style => 'check_box') value = CustomFieldValue.new(:custom_field => field, :customized => Issue.new) tag = field.format.edit_tag(self, 'id', 'name', value) assert_select_in tag, 'span' do assert_select 'input[type=radio]', 3 assert_select 'label', :text => '(none)' do assert_select 'input[value=]' end assert_select 'label', :text => 'Foo' do assert_select 'input[value=Foo]' end assert_select 'label', :text => 'Bar' do assert_select 'input[value=Bar]' end end end def test_edit_tag_with_check_box_style_should_select_current_value field = IssueCustomField.new(:field_format => 'list', :possible_values => ['Foo', 'Bar'], :is_required => false, :edit_tag_style => 'check_box') value = CustomFieldValue.new(:custom_field => field, :customized => Issue.new, :value => 'Bar') tag = field.format.edit_tag(self, 'id', 'name', value) assert_select_in tag, 'span' do assert_select 'input[type=radio][checked=checked]', 1 assert_select 'label', :text => 'Bar' do assert_select 'input[value=Bar][checked=checked]' end end end def test_edit_tag_with_check_box_style_and_multiple_values_should_contain_hidden_field_to_clear_value field = IssueCustomField.new(:field_format => 'list', :possible_values => ['Foo', 'Bar'], :is_required => false, :edit_tag_style => 'check_box', :multiple => true) value = CustomFieldValue.new(:custom_field => field, :customized => Issue.new) tag = field.format.edit_tag(self, 'id', 'name', value) assert_select_in tag, 'span' do assert_select 'input[type=checkbox]', 2 assert_select 'input[type=hidden]', 1 end end def test_field_with_url_pattern_should_link_value field = IssueCustomField.new(:field_format => 'list', :url_pattern => 'http://localhost/%value%') formatted = field.format.formatted_value(self, field, 'foo', Issue.new, true) assert_equal '<a href="http://localhost/foo">foo</a>', formatted assert formatted.html_safe? end def test_field_with_url_pattern_and_multiple_values_should_link_values field = IssueCustomField.new(:field_format => 'list', :url_pattern => 'http://localhost/%value%') formatted = field.format.formatted_value(self, field, ['foo', 'bar'], Issue.new, true) assert_equal '<a href="http://localhost/bar">bar</a>, <a href="http://localhost/foo">foo</a>', formatted assert formatted.html_safe? end def test_field_with_url_pattern_should_not_link_blank_value field = IssueCustomField.new(:field_format => 'list', :url_pattern => 'http://localhost/%value%') formatted = field.format.formatted_value(self, field, '', Issue.new, true) assert_equal '', formatted assert formatted.html_safe? end def test_edit_tag_with_check_box_style_and_multiple_should_select_current_values field = IssueCustomField.new(:field_format => 'list', :possible_values => ['Foo', 'Bar', 'Baz'], :is_required => false, :multiple => true, :edit_tag_style => 'check_box') value = CustomFieldValue.new(:custom_field => field, :customized => Issue.new, :value => ['Bar', 'Baz']) tag = field.format.edit_tag(self, 'id', 'name', value) assert_select_in tag, 'span' do assert_select 'input[type=checkbox][checked=checked]', 2 assert_select 'label', :text => 'Bar' do assert_select 'input[value=Bar][checked=checked]' end assert_select 'label', :text => 'Baz' do assert_select 'input[value=Baz][checked=checked]' end end end end