2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-10-18 10:02:35 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe RemoveFromFollowersService, type: :service do
|
2023-06-06 11:58:33 +00:00
|
|
|
subject { described_class.new }
|
2021-10-18 10:02:35 +00:00
|
|
|
|
2023-02-20 04:24:14 +00:00
|
|
|
let(:bob) { Fabricate(:account, username: 'bob') }
|
|
|
|
|
2021-10-18 10:02:35 +00:00
|
|
|
describe 'local' do
|
|
|
|
let(:sender) { Fabricate(:account, username: 'alice') }
|
2023-02-17 21:56:20 +00:00
|
|
|
|
2021-10-18 10:02:35 +00:00
|
|
|
before do
|
|
|
|
Follow.create(account: sender, target_account: bob)
|
|
|
|
subject.call(bob, sender)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create follow relation' do
|
|
|
|
expect(bob.followed_by?(sender)).to be false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'remote ActivityPub' do
|
|
|
|
let(:sender) { Fabricate(:account, username: 'alice', domain: 'example.com', protocol: :activitypub, inbox_url: 'http://example.com/inbox') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
Follow.create(account: sender, target_account: bob)
|
|
|
|
stub_request(:post, sender.inbox_url).to_return(status: 200)
|
|
|
|
subject.call(bob, sender)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create follow relation' do
|
|
|
|
expect(bob.followed_by?(sender)).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends a reject activity' do
|
|
|
|
expect(a_request(:post, sender.inbox_url)).to have_been_made.once
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|