mirror of
https://github.com/github/rails.git
synced 2026-04-04 03:00:58 -04:00
Optimistic locking: raise ActiveResource::ResourceConflict on 409 Conflict response.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5078 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,14 @@
|
||||
*SVN*
|
||||
|
||||
* Optimistic locking: raise ActiveResource::ResourceConflict on 409 Conflict response. [Jeremy Kemper]
|
||||
|
||||
# Example controller action
|
||||
def update
|
||||
@person.save!
|
||||
rescue ActiveRecord::StaleObjectError
|
||||
render :xml => @person.reload.to_xml, :status => '409 Conflict'
|
||||
end
|
||||
|
||||
* Basic validation support [Rick Olson]
|
||||
|
||||
Parses the xml response of ActiveRecord::Errors#to_xml with a similar interface to ActiveRecord::Errors.
|
||||
|
||||
@@ -17,14 +17,12 @@ module ActiveResource
|
||||
end
|
||||
end
|
||||
|
||||
class ClientError < ConnectionError
|
||||
end
|
||||
class ClientError < ConnectionError; end # 4xx Client Error
|
||||
class ResourceNotFound < ClientError; end # 404 Not Found
|
||||
class ResourceConflict < ClientError; end # 409 Conflict
|
||||
|
||||
class ServerError < ConnectionError
|
||||
end
|
||||
class ServerError < ConnectionError; end # 5xx Server Error
|
||||
|
||||
class ResourceNotFound < ClientError
|
||||
end
|
||||
|
||||
class Connection
|
||||
attr_accessor :site
|
||||
@@ -73,6 +71,8 @@ module ActiveResource
|
||||
raise(ResourceNotFound.new(response))
|
||||
when 400
|
||||
raise(ResourceInvalid.new(response))
|
||||
when 409
|
||||
raise(ResourceConflict.new(response))
|
||||
when 401...500
|
||||
raise(ClientError.new(response))
|
||||
when 500...600
|
||||
|
||||
@@ -133,6 +133,14 @@ class BaseTest < Test::Unit::TestCase
|
||||
addy.save
|
||||
end
|
||||
|
||||
def test_update_conflict
|
||||
ActiveResource::HttpMock.respond_to do |mock|
|
||||
mock.get "/people/2.xml", @david
|
||||
mock.put "/people/2", nil, 409
|
||||
end
|
||||
assert_raises(ActiveResource::ResourceConflict) { Person.find(2).save }
|
||||
end
|
||||
|
||||
def test_destroy
|
||||
assert Person.find(1).destroy
|
||||
ActiveResource::HttpMock.respond_to do |mock|
|
||||
|
||||
@@ -20,6 +20,9 @@ class ConnectionTest < Test::Unit::TestCase
|
||||
# 400 is a validation error
|
||||
assert_response_raises ActiveResource::ResourceInvalid, 400
|
||||
|
||||
# 409 is an optimistic locking error
|
||||
assert_response_raises ActiveResource::ResourceConflict, 409
|
||||
|
||||
# 4xx are client errors.
|
||||
[401, 499].each do |code|
|
||||
assert_response_raises ActiveResource::ClientError, code
|
||||
|
||||
Reference in New Issue
Block a user