2017-08-08 21:52:15 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-05-02 18:58:48 +02:00
|
|
|
RSpec.describe ActivityPub::ProcessCollectionService, type: :service do
|
2017-09-26 01:06:13 +02:00
|
|
|
let(:actor) { Fabricate(:account, domain: 'example.com', uri: 'http://example.com/account') }
|
2017-08-31 17:18:49 +02:00
|
|
|
|
|
|
|
let(:payload) do
|
|
|
|
{
|
|
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
|
|
id: 'foo',
|
|
|
|
type: 'Create',
|
|
|
|
actor: ActivityPub::TagManager.instance.uri_for(actor),
|
|
|
|
object: {
|
|
|
|
id: 'bar',
|
|
|
|
type: 'Note',
|
|
|
|
content: 'Lorem ipsum',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:json) { Oj.dump(payload) }
|
|
|
|
|
2017-08-26 13:47:38 +02:00
|
|
|
subject { described_class.new }
|
2017-08-08 21:52:15 +02:00
|
|
|
|
|
|
|
describe '#call' do
|
2017-08-26 13:47:38 +02:00
|
|
|
context 'when actor is the sender'
|
2017-08-31 17:18:49 +02:00
|
|
|
context 'when actor differs from sender' do
|
2017-09-26 01:06:13 +02:00
|
|
|
let(:forwarder) { Fabricate(:account, domain: 'example.com', uri: 'http://example.com/other_account') }
|
2017-08-31 17:18:49 +02:00
|
|
|
|
2018-12-30 09:48:59 +01:00
|
|
|
it 'does not process payload if no signature exists' do
|
|
|
|
expect_any_instance_of(ActivityPub::LinkedDataSignature).to receive(:verify_account!).and_return(nil)
|
|
|
|
expect(ActivityPub::Activity).not_to receive(:factory)
|
2017-08-31 17:18:49 +02:00
|
|
|
|
|
|
|
subject.call(json, forwarder)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'processes payload with actor if valid signature exists' do
|
2018-10-04 12:36:53 +02:00
|
|
|
payload['signature'] = { 'type' => 'RsaSignature2017' }
|
2017-08-31 17:18:49 +02:00
|
|
|
|
|
|
|
expect_any_instance_of(ActivityPub::LinkedDataSignature).to receive(:verify_account!).and_return(actor)
|
2017-10-08 17:34:34 +02:00
|
|
|
expect(ActivityPub::Activity).to receive(:factory).with(instance_of(Hash), actor, instance_of(Hash))
|
2017-08-31 17:18:49 +02:00
|
|
|
|
|
|
|
subject.call(json, forwarder)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not process payload if invalid signature exists' do
|
2018-10-04 12:36:53 +02:00
|
|
|
payload['signature'] = { 'type' => 'RsaSignature2017' }
|
2017-08-31 17:18:49 +02:00
|
|
|
|
|
|
|
expect_any_instance_of(ActivityPub::LinkedDataSignature).to receive(:verify_account!).and_return(nil)
|
|
|
|
expect(ActivityPub::Activity).not_to receive(:factory)
|
|
|
|
|
|
|
|
subject.call(json, forwarder)
|
|
|
|
end
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
end
|