2017-08-08 19:52:15 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe ActivityPub::Activity::Announce do
|
2019-02-13 17:36:23 +00:00
|
|
|
let(:sender) { Fabricate(:account, followers_url: 'http://example.com/followers') }
|
2017-08-08 19:52:15 +00:00
|
|
|
let(:recipient) { Fabricate(:account) }
|
|
|
|
let(:status) { Fabricate(:status, account: recipient) }
|
|
|
|
|
|
|
|
let(:json) do
|
|
|
|
{
|
|
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
|
|
id: 'foo',
|
|
|
|
type: 'Announce',
|
|
|
|
actor: ActivityPub::TagManager.instance.uri_for(sender),
|
2019-02-13 17:36:23 +00:00
|
|
|
object: object_json,
|
2017-08-08 19:52:15 +00:00
|
|
|
}.with_indifferent_access
|
|
|
|
end
|
|
|
|
|
2019-02-13 17:36:23 +00:00
|
|
|
subject { described_class.new(json, sender) }
|
|
|
|
|
|
|
|
before do
|
2019-02-15 17:19:45 +00:00
|
|
|
Fabricate(:account).follow!(sender)
|
2019-02-13 17:36:23 +00:00
|
|
|
sender.update(uri: ActivityPub::TagManager.instance.uri_for(sender))
|
|
|
|
end
|
2017-08-08 19:52:15 +00:00
|
|
|
|
2019-02-13 17:36:23 +00:00
|
|
|
describe '#perform' do
|
2017-08-08 19:52:15 +00:00
|
|
|
before do
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
2019-02-13 17:36:23 +00:00
|
|
|
context 'a known status' do
|
|
|
|
let(:object_json) do
|
|
|
|
ActivityPub::TagManager.instance.uri_for(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a reblog by sender of status' do
|
|
|
|
expect(sender.reblogged?(status)).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'self-boost of a previously unknown status with missing attributedTo' do
|
|
|
|
let(:object_json) do
|
|
|
|
{
|
|
|
|
id: [ActivityPub::TagManager.instance.uri_for(sender), '#bar'].join,
|
|
|
|
type: 'Note',
|
|
|
|
content: 'Lorem ipsum',
|
|
|
|
to: 'http://example.com/followers',
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a reblog by sender of status' do
|
|
|
|
expect(sender.reblogged?(sender.statuses.first)).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'self-boost of a previously unknown status with correct attributedTo' do
|
|
|
|
let(:object_json) do
|
|
|
|
{
|
|
|
|
id: [ActivityPub::TagManager.instance.uri_for(sender), '#bar'].join,
|
|
|
|
type: 'Note',
|
|
|
|
content: 'Lorem ipsum',
|
|
|
|
attributedTo: ActivityPub::TagManager.instance.uri_for(sender),
|
|
|
|
to: 'http://example.com/followers',
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a reblog by sender of status' do
|
|
|
|
expect(sender.reblogged?(sender.statuses.first)).to be true
|
|
|
|
end
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|