This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix handling announcements with links (mastodon#16941)
Broken since mastodon#15827
- Loading branch information
1 parent
458830e
commit 989c67d
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
spec/workers/publish_scheduled_announcement_worker_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'rails_helper' | ||
|
||
describe PublishScheduledAnnouncementWorker do | ||
subject { described_class.new } | ||
|
||
let!(:remote_account) { Fabricate(:account, domain: 'domain.com', username: 'foo', uri: 'https://domain.com/users/foo') } | ||
let!(:remote_status) { Fabricate(:status, uri: 'https://domain.com/users/foo/12345', account: remote_account) } | ||
let!(:local_status) { Fabricate(:status) } | ||
let(:scheduled_announcement) { Fabricate(:announcement, text: "rebooting very soon, see #{ActivityPub::TagManager.instance.uri_for(remote_status)} and #{ActivityPub::TagManager.instance.uri_for(local_status)}") } | ||
|
||
describe 'perform' do | ||
before do | ||
service = double | ||
allow(FetchRemoteStatusService).to receive(:new).and_return(service) | ||
allow(service).to receive(:call).with('https://domain.com/users/foo/12345') { remote_status.reload } | ||
|
||
subject.perform(scheduled_announcement.id) | ||
end | ||
|
||
it 'updates the linked statuses' do | ||
expect(scheduled_announcement.reload.status_ids).to eq [remote_status.id, local_status.id] | ||
end | ||
end | ||
end |