2016-02-24 23:17:01 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-05-02 16:58:48 +00:00
|
|
|
RSpec.describe ProcessInteractionService, type: :service do
|
2017-02-11 23:48:53 +00:00
|
|
|
let(:receiver) { Fabricate(:user, email: 'alice@example.com', account: Fabricate(:account, username: 'alice')).account }
|
|
|
|
let(:sender) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account }
|
2017-05-03 18:40:14 +00:00
|
|
|
let(:remote_sender) { Fabricate(:account, username: 'carol', domain: 'localdomain.com', uri: 'https://webdomain.com/users/carol') }
|
2017-02-11 23:48:53 +00:00
|
|
|
|
2016-03-05 11:50:59 +00:00
|
|
|
subject { ProcessInteractionService.new }
|
|
|
|
|
2017-05-30 20:56:31 +00:00
|
|
|
describe 'status delete slap' do
|
|
|
|
let(:remote_status) { Fabricate(:status, account: remote_sender) }
|
|
|
|
let(:envelope) { OStatus2::Salmon.new.pack(payload, sender.keypair) }
|
|
|
|
let(:payload) {
|
|
|
|
<<~XML
|
|
|
|
<entry xmlns="http://www.w3.org/2005/Atom" xmlns:activity="http://activitystrea.ms/spec/1.0/">
|
|
|
|
<author>
|
|
|
|
<email>carol@localdomain.com</email>
|
|
|
|
<name>carol</name>
|
|
|
|
<uri>https://webdomain.com/users/carol</uri>
|
|
|
|
</author>
|
|
|
|
|
|
|
|
<id>#{remote_status.id}</id>
|
|
|
|
<activity:verb>http://activitystrea.ms/schema/1.0/delete</activity:verb>
|
|
|
|
</entry>
|
|
|
|
XML
|
|
|
|
}
|
|
|
|
|
|
|
|
before do
|
|
|
|
receiver.update(locked: true)
|
|
|
|
remote_sender.update(private_key: sender.private_key, public_key: remote_sender.public_key)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'deletes a record' do
|
|
|
|
expect(RemovalWorker).to receive(:perform_async).with(remote_status.id)
|
|
|
|
subject.call(envelope, receiver)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-11 23:48:53 +00:00
|
|
|
describe 'follow request slap' do
|
|
|
|
before do
|
|
|
|
receiver.update(locked: true)
|
|
|
|
|
|
|
|
payload = <<XML
|
|
|
|
<entry xmlns="http://www.w3.org/2005/Atom" xmlns:activity="http://activitystrea.ms/spec/1.0/">
|
|
|
|
<author>
|
|
|
|
<name>bob</name>
|
|
|
|
<uri>https://cb6e6126.ngrok.io/users/bob</uri>
|
|
|
|
</author>
|
|
|
|
|
|
|
|
<id>someIdHere</id>
|
|
|
|
<activity:verb>http://activitystrea.ms/schema/1.0/request-friend</activity:verb>
|
|
|
|
</entry>
|
|
|
|
XML
|
|
|
|
|
|
|
|
envelope = OStatus2::Salmon.new.pack(payload, sender.keypair)
|
|
|
|
subject.call(envelope, receiver)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a record' do
|
|
|
|
expect(FollowRequest.find_by(account: sender, target_account: receiver)).to_not be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-03 18:40:14 +00:00
|
|
|
describe 'follow request slap from known remote user identified by email' do
|
|
|
|
before do
|
|
|
|
receiver.update(locked: true)
|
|
|
|
# Copy already-generated key
|
|
|
|
remote_sender.update(private_key: sender.private_key, public_key: remote_sender.public_key)
|
|
|
|
|
|
|
|
payload = <<XML
|
|
|
|
<entry xmlns="http://www.w3.org/2005/Atom" xmlns:activity="http://activitystrea.ms/spec/1.0/">
|
|
|
|
<author>
|
|
|
|
<email>carol@localdomain.com</email>
|
|
|
|
<name>carol</name>
|
|
|
|
<uri>https://webdomain.com/users/carol</uri>
|
|
|
|
</author>
|
|
|
|
|
|
|
|
<id>someIdHere</id>
|
|
|
|
<activity:verb>http://activitystrea.ms/schema/1.0/request-friend</activity:verb>
|
|
|
|
</entry>
|
|
|
|
XML
|
|
|
|
|
|
|
|
envelope = OStatus2::Salmon.new.pack(payload, remote_sender.keypair)
|
|
|
|
subject.call(envelope, receiver)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a record' do
|
|
|
|
expect(FollowRequest.find_by(account: remote_sender, target_account: receiver)).to_not be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-11 23:48:53 +00:00
|
|
|
describe 'follow request authorization slap' do
|
|
|
|
before do
|
|
|
|
receiver.update(locked: true)
|
|
|
|
FollowRequest.create(account: sender, target_account: receiver)
|
|
|
|
|
|
|
|
payload = <<XML
|
|
|
|
<entry xmlns="http://www.w3.org/2005/Atom" xmlns:activity="http://activitystrea.ms/spec/1.0/">
|
|
|
|
<author>
|
|
|
|
<name>alice</name>
|
|
|
|
<uri>https://cb6e6126.ngrok.io/users/alice</uri>
|
|
|
|
</author>
|
|
|
|
|
|
|
|
<id>someIdHere</id>
|
|
|
|
<activity:verb>http://activitystrea.ms/schema/1.0/authorize</activity:verb>
|
|
|
|
</entry>
|
|
|
|
XML
|
|
|
|
|
|
|
|
envelope = OStatus2::Salmon.new.pack(payload, receiver.keypair)
|
|
|
|
subject.call(envelope, sender)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a follow relationship' do
|
|
|
|
expect(Follow.find_by(account: sender, target_account: receiver)).to_not be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the follow request' do
|
|
|
|
expect(FollowRequest.find_by(account: sender, target_account: receiver)).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'follow request rejection slap' do
|
|
|
|
before do
|
|
|
|
receiver.update(locked: true)
|
|
|
|
FollowRequest.create(account: sender, target_account: receiver)
|
|
|
|
|
|
|
|
payload = <<XML
|
|
|
|
<entry xmlns="http://www.w3.org/2005/Atom" xmlns:activity="http://activitystrea.ms/spec/1.0/">
|
|
|
|
<author>
|
|
|
|
<name>alice</name>
|
|
|
|
<uri>https://cb6e6126.ngrok.io/users/alice</uri>
|
|
|
|
</author>
|
|
|
|
|
|
|
|
<id>someIdHere</id>
|
|
|
|
<activity:verb>http://activitystrea.ms/schema/1.0/reject</activity:verb>
|
|
|
|
</entry>
|
|
|
|
XML
|
|
|
|
|
|
|
|
envelope = OStatus2::Salmon.new.pack(payload, receiver.keypair)
|
|
|
|
subject.call(envelope, sender)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a follow relationship' do
|
|
|
|
expect(Follow.find_by(account: sender, target_account: receiver)).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the follow request' do
|
|
|
|
expect(FollowRequest.find_by(account: sender, target_account: receiver)).to be_nil
|
|
|
|
end
|
|
|
|
end
|
2016-02-24 23:17:01 +00:00
|
|
|
end
|