diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/api_test/versions_test.rb | 23 | ||||
-rw-r--r-- | test/object_helpers.rb | 11 |
2 files changed, 34 insertions, 0 deletions
diff --git a/test/integration/api_test/versions_test.rb b/test/integration/api_test/versions_test.rb index 8be37534a..51f8e2b33 100644 --- a/test/integration/api_test/versions_test.rb +++ b/test/integration/api_test/versions_test.rb @@ -82,6 +82,29 @@ class Redmine::ApiTest::VersionsTest < Redmine::ApiTest::Base assert_tag 'version', :child => {:tag => 'id', :content => version.id.to_s} end + should "create the version with custom fields" do + field = VersionCustomField.generate! + + assert_difference 'Version.count' do + post '/projects/1/versions.xml', { + :version => { + :name => 'API test', + :custom_fields => [ + {'id' => field.id.to_s, 'value' => 'Some value'} + ] + } + }, credentials('jsmith') + end + + version = Version.first(:order => 'id DESC') + assert_equal 'API test', version.name + assert_equal 'Some value', version.custom_field_value(field) + + assert_response :created + assert_equal 'application/xml', @response.content_type + assert_select 'version>custom_fields>custom_field[id=?]>value', field.id.to_s, 'Some value' + end + context "with failure" do should "return the errors" do assert_no_difference('Version.count') do diff --git a/test/object_helpers.rb b/test/object_helpers.rb index 0b6ec01d8..8c82a328b 100644 --- a/test/object_helpers.rb +++ b/test/object_helpers.rb @@ -147,4 +147,15 @@ module ObjectHelpers attachment.save! attachment end + + def CustomField.generate!(attributes={}) + @generated_custom_field_name ||= 'Custom field 0' + @generated_custom_field_name.succ! + field = new(attributes) + field.name = @generated_custom_field_name.dup if field.name.blank? + field.field_format = 'string' if field.field_format.blank? + yield field if block_given? + field.save! + field + end end |