2017-08-09 05:52:15 +10:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe ActivityPub::Activity::Follow do
|
|
|
|
let(:sender) { Fabricate(:account) }
|
|
|
|
let(:recipient) { Fabricate(:account) }
|
|
|
|
|
|
|
|
let(:json) do
|
|
|
|
{
|
|
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
|
|
id: 'foo',
|
|
|
|
type: 'Follow',
|
|
|
|
actor: ActivityPub::TagManager.instance.uri_for(sender),
|
|
|
|
object: ActivityPub::TagManager.instance.uri_for(recipient),
|
|
|
|
}.with_indifferent_access
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#perform' do
|
|
|
|
subject { described_class.new(json, sender) }
|
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
context 'with no prior follow' do
|
|
|
|
context 'unlocked account' do
|
|
|
|
before do
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a follow from sender to recipient' do
|
|
|
|
expect(sender.following?(recipient)).to be true
|
|
|
|
expect(sender.active_relationships.find_by(target_account: recipient).uri).to eq 'foo'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a follow request' do
|
|
|
|
expect(sender.requested?(recipient)).to be false
|
|
|
|
end
|
2017-08-15 00:57:46 +10:00
|
|
|
end
|
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
context 'silenced account following an unlocked account' do
|
|
|
|
before do
|
|
|
|
sender.touch(:silenced_at)
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a follow from sender to recipient' do
|
|
|
|
expect(sender.following?(recipient)).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a follow request' do
|
|
|
|
expect(sender.requested?(recipient)).to be true
|
|
|
|
expect(sender.follow_requests.find_by(target_account: recipient).uri).to eq 'foo'
|
|
|
|
end
|
2017-08-15 00:57:46 +10:00
|
|
|
end
|
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
context 'unlocked account muting the sender' do
|
|
|
|
before do
|
|
|
|
recipient.mute!(sender)
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a follow from sender to recipient' do
|
|
|
|
expect(sender.following?(recipient)).to be true
|
|
|
|
expect(sender.active_relationships.find_by(target_account: recipient).uri).to eq 'foo'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a follow request' do
|
|
|
|
expect(sender.requested?(recipient)).to be false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'locked account' do
|
|
|
|
before do
|
|
|
|
recipient.update(locked: true)
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a follow from sender to recipient' do
|
|
|
|
expect(sender.following?(recipient)).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a follow request' do
|
|
|
|
expect(sender.requested?(recipient)).to be true
|
|
|
|
expect(sender.follow_requests.find_by(target_account: recipient).uri).to eq 'foo'
|
|
|
|
end
|
2017-08-15 00:57:46 +10:00
|
|
|
end
|
2017-08-09 05:52:15 +10:00
|
|
|
end
|
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
context 'when a follow relationship already exists' do
|
2019-09-28 05:13:51 +10:00
|
|
|
before do
|
2021-02-11 11:53:44 +11:00
|
|
|
sender.active_relationships.create!(target_account: recipient, uri: 'bar')
|
2019-09-28 05:13:51 +10:00
|
|
|
end
|
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
context 'unlocked account' do
|
|
|
|
before do
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'correctly sets the new URI' do
|
|
|
|
expect(sender.active_relationships.find_by(target_account: recipient).uri).to eq 'foo'
|
|
|
|
end
|
2019-09-28 05:13:51 +10:00
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
it 'does not create a follow request' do
|
|
|
|
expect(sender.requested?(recipient)).to be false
|
|
|
|
end
|
2019-09-28 05:13:51 +10:00
|
|
|
end
|
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
context 'silenced account following an unlocked account' do
|
|
|
|
before do
|
|
|
|
sender.touch(:silenced_at)
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'correctly sets the new URI' do
|
|
|
|
expect(sender.active_relationships.find_by(target_account: recipient).uri).to eq 'foo'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a follow request' do
|
|
|
|
expect(sender.requested?(recipient)).to be false
|
|
|
|
end
|
2019-09-28 05:13:51 +10:00
|
|
|
end
|
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
context 'unlocked account muting the sender' do
|
|
|
|
before do
|
|
|
|
recipient.mute!(sender)
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'correctly sets the new URI' do
|
|
|
|
expect(sender.active_relationships.find_by(target_account: recipient).uri).to eq 'foo'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a follow request' do
|
|
|
|
expect(sender.requested?(recipient)).to be false
|
|
|
|
end
|
2019-09-28 05:13:51 +10:00
|
|
|
end
|
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
context 'locked account' do
|
|
|
|
before do
|
|
|
|
recipient.update(locked: true)
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'correctly sets the new URI' do
|
|
|
|
expect(sender.active_relationships.find_by(target_account: recipient).uri).to eq 'foo'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a follow request' do
|
|
|
|
expect(sender.requested?(recipient)).to be false
|
|
|
|
end
|
2019-09-28 05:13:51 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
context 'when a follow request already exists' do
|
2017-08-15 00:57:46 +10:00
|
|
|
before do
|
2021-02-11 11:53:44 +11:00
|
|
|
sender.follow_requests.create!(target_account: recipient, uri: 'bar')
|
2017-08-15 00:57:46 +10:00
|
|
|
end
|
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
context 'silenced account following an unlocked account' do
|
|
|
|
before do
|
|
|
|
sender.touch(:silenced_at)
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a follow from sender to recipient' do
|
|
|
|
expect(sender.following?(recipient)).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'correctly sets the new URI' do
|
|
|
|
expect(sender.requested?(recipient)).to be true
|
|
|
|
expect(sender.follow_requests.find_by(target_account: recipient).uri).to eq 'foo'
|
|
|
|
end
|
2017-08-15 00:57:46 +10:00
|
|
|
end
|
|
|
|
|
2021-02-11 11:53:44 +11:00
|
|
|
context 'locked account' do
|
|
|
|
before do
|
|
|
|
recipient.update(locked: true)
|
|
|
|
subject.perform
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a follow from sender to recipient' do
|
|
|
|
expect(sender.following?(recipient)).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'correctly sets the new URI' do
|
|
|
|
expect(sender.requested?(recipient)).to be true
|
|
|
|
expect(sender.follow_requests.find_by(target_account: recipient).uri).to eq 'foo'
|
|
|
|
end
|
2017-08-15 00:57:46 +10:00
|
|
|
end
|
2017-08-09 05:52:15 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|