Browse Source

Fixed: Unable to set custom fields for versions using the REST API (#13850).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11760 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.4.0
Jean-Philippe Lang 11 years ago
parent
commit
5a3b903733
3 changed files with 36 additions and 1 deletions
  1. 2
    1
      app/models/version.rb
  2. 23
    0
      test/integration/api_test/versions_test.rb
  3. 11
    0
      test/object_helpers.rb

+ 2
- 1
app/models/version.rb View File

'wiki_page_title', 'wiki_page_title',
'status', 'status',
'sharing', 'sharing',
'custom_field_values'
'custom_field_values',
'custom_fields'


# Returns true if +user+ or current user is allowed to view the version # Returns true if +user+ or current user is allowed to view the version
def visible?(user=User.current) def visible?(user=User.current)

+ 23
- 0
test/integration/api_test/versions_test.rb View File

assert_tag 'version', :child => {:tag => 'id', :content => version.id.to_s} assert_tag 'version', :child => {:tag => 'id', :content => version.id.to_s}
end 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 context "with failure" do
should "return the errors" do should "return the errors" do
assert_no_difference('Version.count') do assert_no_difference('Version.count') do

+ 11
- 0
test/object_helpers.rb View File

attachment.save! attachment.save!
attachment attachment
end 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 end

Loading…
Cancel
Save