mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Refactor race condition reblog service spec (#24526)
This commit is contained in:
parent
b0800d602e
commit
10f0de4212
1 changed files with 17 additions and 5 deletions
|
@ -35,13 +35,25 @@ RSpec.describe ReblogService, type: :service do
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when the reblogged status is discarded in the meantime' do
|
context 'when the reblogged status is discarded in the meantime' do
|
||||||
let(:status) { Fabricate(:status, account: alice, visibility: :public) }
|
let(:status) { Fabricate(:status, account: alice, visibility: :public, text: 'discard-status-text') }
|
||||||
|
|
||||||
|
# Add a callback to discard the status being reblogged after the
|
||||||
|
# validations pass but before the database commit is executed.
|
||||||
before do
|
before do
|
||||||
# Update the in-database attribute without reflecting the change in
|
Status.class_eval do
|
||||||
# the object. This cannot simulate all race conditions, but it is
|
before_save :discard_status
|
||||||
# pretty close.
|
def discard_status
|
||||||
Status.where(id: status.id).update_all(deleted_at: Time.now.utc) # rubocop:disable Rails/SkipsModelValidations
|
Status
|
||||||
|
.where(id: reblog_of_id)
|
||||||
|
.where(text: 'discard-status-text')
|
||||||
|
.update_all(deleted_at: Time.now.utc) # rubocop:disable Rails/SkipsModelValidations
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Remove race condition simulating `discard_status` callback.
|
||||||
|
after do
|
||||||
|
Status._save_callbacks.delete(:discard_status)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'raises an exception' do
|
it 'raises an exception' do
|
||||||
|
|
Loading…
Reference in a new issue