2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-02-12 16:28:15 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-03-13 08:39:26 +00:00
|
|
|
RSpec.describe AuthorizeFollowService do
|
2023-06-06 11:58:33 +00:00
|
|
|
subject { described_class.new }
|
2017-02-12 16:28:15 +00:00
|
|
|
|
2023-02-20 04:24:14 +00:00
|
|
|
let(:sender) { Fabricate(:account, username: 'alice') }
|
|
|
|
|
2017-02-12 16:28:15 +00:00
|
|
|
describe 'local' do
|
2022-01-27 23:46:42 +00:00
|
|
|
let(:bob) { Fabricate(:account, username: 'bob') }
|
2017-02-12 16:28:15 +00:00
|
|
|
|
|
|
|
before do
|
|
|
|
FollowRequest.create(account: bob, target_account: sender)
|
|
|
|
subject.call(bob, sender)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes follow request' do
|
|
|
|
expect(bob.requested?(sender)).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates follow relation' do
|
|
|
|
expect(bob.following?(sender)).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-12 22:44:41 +00:00
|
|
|
describe 'remote ActivityPub' do
|
2022-01-27 23:46:42 +00:00
|
|
|
let(:bob) { Fabricate(:account, username: 'bob', domain: 'example.com', protocol: :activitypub, inbox_url: 'http://example.com/inbox') }
|
2017-08-12 22:44:41 +00:00
|
|
|
|
|
|
|
before do
|
|
|
|
FollowRequest.create(account: bob, target_account: sender)
|
|
|
|
stub_request(:post, bob.inbox_url).to_return(status: 200)
|
|
|
|
subject.call(bob, sender)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes follow request' do
|
|
|
|
expect(bob.requested?(sender)).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates follow relation' do
|
|
|
|
expect(bob.following?(sender)).to be true
|
|
|
|
end
|
|
|
|
|
2024-07-08 16:01:08 +00:00
|
|
|
it 'sends an accept activity', :inline_jobs do
|
2017-08-12 22:44:41 +00:00
|
|
|
expect(a_request(:post, bob.inbox_url)).to have_been_made.once
|
|
|
|
end
|
|
|
|
end
|
2017-02-12 16:28:15 +00:00
|
|
|
end
|