123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- 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) }
- 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
- end
- 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
- end
- 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
- end
- end
- context 'when a follow relationship already exists' do
- before do
- sender.active_relationships.create!(target_account: recipient, uri: 'bar')
- end
- 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
- it 'does not create a follow request' do
- expect(sender.requested?(recipient)).to be false
- end
- end
- 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
- end
- 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
- end
- 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
- end
- end
- context 'when a follow request already exists' do
- before do
- sender.follow_requests.create!(target_account: recipient, uri: 'bar')
- end
- 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
- 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 '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
- end
- end
- end
- end
|