mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-19 02:38:14 +00:00
Compare commits
6 Commits
27bd5ff186
...
32acc2e197
Author | SHA1 | Date | |
---|---|---|---|
![]() |
32acc2e197 | ||
![]() |
bf2d991412 | ||
![]() |
7a7c9f760e | ||
![]() |
3188add293 | ||
![]() |
f1129ae8a0 | ||
![]() |
b8fd7a6b26 |
|
@ -84,7 +84,7 @@ RSpec.describe ActivityPub::Activity::Accept do
|
||||||
expect(DistributionWorker)
|
expect(DistributionWorker)
|
||||||
.to have_enqueued_sidekiq_job(status.id, { 'update' => true })
|
.to have_enqueued_sidekiq_job(status.id, { 'update' => true })
|
||||||
expect(ActivityPub::StatusUpdateDistributionWorker)
|
expect(ActivityPub::StatusUpdateDistributionWorker)
|
||||||
.to have_enqueued_sidekiq_job(status.id, { 'updated_at' => be_a(String) })
|
.to have_enqueued_sidekiq_job(status.id, { 'update_id' => be_a(String) })
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when the quoted status is not from the sender of the Accept' do
|
context 'when the quoted status is not from the sender of the Accept' do
|
||||||
|
@ -153,7 +153,7 @@ RSpec.describe ActivityPub::Activity::Accept do
|
||||||
expect(DistributionWorker)
|
expect(DistributionWorker)
|
||||||
.to have_enqueued_sidekiq_job(status.id, { 'update' => true })
|
.to have_enqueued_sidekiq_job(status.id, { 'update' => true })
|
||||||
expect(ActivityPub::StatusUpdateDistributionWorker)
|
expect(ActivityPub::StatusUpdateDistributionWorker)
|
||||||
.to have_enqueued_sidekiq_job(status.id, { 'updated_at' => be_a(String) })
|
.to have_enqueued_sidekiq_job(status.id, { 'update_id' => be_a(String) })
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when approval_uri is missing' do
|
context 'when approval_uri is missing' do
|
||||||
|
|
|
@ -9,64 +9,36 @@ RSpec.describe ActivityPub::StatusUpdateDistributionWorker do
|
||||||
let(:follower) { Fabricate(:account, protocol: :activitypub, inbox_url: 'http://example.com', domain: 'example.com') }
|
let(:follower) { Fabricate(:account, protocol: :activitypub, inbox_url: 'http://example.com', domain: 'example.com') }
|
||||||
|
|
||||||
describe '#perform' do
|
describe '#perform' do
|
||||||
context 'with an explicitly edited status' do
|
before do
|
||||||
|
follower.follow!(status.account)
|
||||||
|
|
||||||
|
status.snapshot!
|
||||||
|
status.text = 'bar'
|
||||||
|
status.edited_at = Time.now.utc
|
||||||
|
status.snapshot!
|
||||||
|
status.save!
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'with public status' do
|
||||||
before do
|
before do
|
||||||
follower.follow!(status.account)
|
status.update(visibility: :public)
|
||||||
|
|
||||||
status.snapshot!
|
|
||||||
status.text = 'bar'
|
|
||||||
status.edited_at = Time.now.utc
|
|
||||||
status.snapshot!
|
|
||||||
status.save!
|
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with public status' do
|
it 'delivers to followers' do
|
||||||
before do
|
expect_push_bulk_to_match(ActivityPub::DeliveryWorker, [[match_json_values(type: 'Update'), status.account.id, 'http://example.com', anything]]) do
|
||||||
status.update(visibility: :public)
|
subject.perform(status.id)
|
||||||
end
|
|
||||||
|
|
||||||
it 'delivers to followers' do
|
|
||||||
expect { subject.perform(status.id) }
|
|
||||||
.to enqueue_sidekiq_job(ActivityPub::DeliveryWorker).with(match_json_values(type: 'Update'), status.account_id, 'http://example.com', anything)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
context 'with private status' do
|
|
||||||
before do
|
|
||||||
status.update(visibility: :private)
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'delivers to followers' do
|
|
||||||
expect { subject.perform(status.id) }
|
|
||||||
.to enqueue_sidekiq_job(ActivityPub::DeliveryWorker).with(match_json_values(type: 'Update'), status.account_id, 'http://example.com', anything)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with an implicitly edited status' do
|
context 'with private status' do
|
||||||
before do
|
before do
|
||||||
follower.follow!(status.account)
|
status.update(visibility: :private)
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with public status' do
|
it 'delivers to followers' do
|
||||||
before do
|
expect_push_bulk_to_match(ActivityPub::DeliveryWorker, [[match_json_values(type: 'Update'), status.account.id, 'http://example.com', anything]]) do
|
||||||
status.update(visibility: :public)
|
subject.perform(status.id)
|
||||||
end
|
|
||||||
|
|
||||||
it 'delivers to followers' do
|
|
||||||
expect { subject.perform(status.id, { 'updated_at' => Time.now.utc.iso8601 }) }
|
|
||||||
.to enqueue_sidekiq_job(ActivityPub::DeliveryWorker).with(match_json_values(type: 'Update'), status.account_id, 'http://example.com', anything)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
context 'with private status' do
|
|
||||||
before do
|
|
||||||
status.update(visibility: :private)
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'delivers to followers' do
|
|
||||||
expect { subject.perform(status.id, { 'updated_at' => Time.now.utc.iso8601 }) }
|
|
||||||
.to enqueue_sidekiq_job(ActivityPub::DeliveryWorker).with(match_json_values(type: 'Update'), status.account_id, 'http://example.com', anything)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user