diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-02-27 07:21:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-27 07:21:47 -0500 |
commit | 4464a391a0704d7434e751aa38f0c684349c42d9 (patch) | |
tree | b24e7ea853ed82295df444de9419d152cc94fd53 /activerecord/test/cases | |
parent | 5bf55685a3317f2716687a8fe471021a1bc042f0 (diff) | |
parent | 0bd7f4ad44c53832ec029a53a88461e9f6eab6f1 (diff) | |
download | rails-4464a391a0704d7434e751aa38f0c684349c42d9.tar.gz rails-4464a391a0704d7434e751aa38f0c684349c42d9.tar.bz2 rails-4464a391a0704d7434e751aa38f0c684349c42d9.zip |
Merge pull request #31189 from tgxworld/raise_error_when_advisory_lock_is_not_releases
Raise an error if advisory lock in migrator was not released.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/migration_test.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb index a4b8664a85..c241ddc807 100644 --- a/activerecord/test/cases/migration_test.rb +++ b/activerecord/test/cases/migration_test.rb @@ -693,6 +693,25 @@ class MigrationTest < ActiveRecord::TestCase assert_no_column Person, :last_name, "without an advisory lock, the Migrator should not make any changes, but it did." end + + def test_with_advisory_lock_raises_the_right_error_when_it_fails_to_release_lock + migration = Class.new(ActiveRecord::Migration::Current).new + migrator = ActiveRecord::Migrator.new(:up, [migration], 100) + lock_id = migrator.send(:generate_migrator_advisory_lock_id) + + e = assert_raises(ActiveRecord::ConcurrentMigrationError) do + silence_stream($stderr) do + migrator.send(:with_advisory_lock) do + ActiveRecord::Base.connection.release_advisory_lock(lock_id) + end + end + end + + assert_match( + /#{ActiveRecord::ConcurrentMigrationError::RELEASE_LOCK_FAILED_MESSAGE}/, + e.message + ) + end end private |