aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-06-20 11:27:18 -0400
committerGitHub <noreply@github.com>2017-06-20 11:27:18 -0400
commit70d3c38447eb93950d3d6d61938fe24b7fccf21f (patch)
treec90f15207aebabe30e77007e2e49e0fc2f864dee /activerecord/test/cases
parentf006edeb940e8636bab012f098f0aa125c72c4a6 (diff)
parent89d562edbac3a2cfb9f31b1019feed7139cf7067 (diff)
downloadrails-70d3c38447eb93950d3d6d61938fe24b7fccf21f.tar.gz
rails-70d3c38447eb93950d3d6d61938fe24b7fccf21f.tar.bz2
rails-70d3c38447eb93950d3d6d61938fe24b7fccf21f.zip
Merge pull request #28833 from bogdanvlviv/add-test-cases-for-optimistic-locking
Add test cases for optimistic locking
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/locking_test.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/activerecord/test/cases/locking_test.rb b/activerecord/test/cases/locking_test.rb
index 3a3b8e51f9..2b139a5da4 100644
--- a/activerecord/test/cases/locking_test.rb
+++ b/activerecord/test/cases/locking_test.rb
@@ -167,6 +167,12 @@ class OptimisticLockingTest < ActiveRecord::TestCase
assert_equal 0, p1.lock_version
end
+ def test_lock_new_when_explicitly_passing_value
+ p1 = Person.new(first_name: "Douglas Adams", lock_version: 42)
+ p1.save!
+ assert_equal 42, p1.lock_version
+ end
+
def test_touch_existing_lock
p1 = Person.find(1)
assert_equal 0, p1.lock_version
@@ -186,6 +192,19 @@ class OptimisticLockingTest < ActiveRecord::TestCase
end
end
+ def test_explicit_update_lock_column_raise_error
+ person = Person.find(1)
+
+ assert_raises(ActiveRecord::StaleObjectError) do
+ person.first_name = "Douglas Adams"
+ person.lock_version = 42
+
+ assert person.lock_version_changed?
+
+ person.save
+ end
+ end
+
def test_lock_column_name_existing
t1 = LegacyThing.find(1)
t2 = LegacyThing.find(1)