2020-01-02 19:52:39 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 05:12:25 +00:00
|
|
|
RSpec.describe RefollowWorker do
|
2020-01-02 19:52:39 +00:00
|
|
|
subject { described_class.new }
|
2023-02-20 01:46:00 +00:00
|
|
|
|
2020-01-02 19:52:39 +00:00
|
|
|
let(:account) { Fabricate(:account, domain: 'example.org', protocol: :activitypub) }
|
|
|
|
let(:alice) { Fabricate(:account, domain: nil, username: 'alice') }
|
|
|
|
let(:bob) { Fabricate(:account, domain: nil, username: 'bob') }
|
|
|
|
|
|
|
|
describe 'perform' do
|
2023-06-22 12:55:22 +00:00
|
|
|
let(:service) { instance_double(FollowService) }
|
2020-01-02 19:52:39 +00:00
|
|
|
|
|
|
|
before do
|
|
|
|
allow(FollowService).to receive(:new).and_return(service)
|
|
|
|
allow(service).to receive(:call)
|
|
|
|
|
|
|
|
alice.follow!(account, reblogs: true)
|
|
|
|
bob.follow!(account, reblogs: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls FollowService for local followers' do
|
|
|
|
result = subject.perform(account.id)
|
|
|
|
|
|
|
|
expect(result).to be_nil
|
2022-09-20 21:51:21 +00:00
|
|
|
expect(service).to have_received(:call).with(alice, account, reblogs: true, notify: false, languages: nil, bypass_limit: true)
|
|
|
|
expect(service).to have_received(:call).with(bob, account, reblogs: false, notify: false, languages: nil, bypass_limit: true)
|
2020-01-02 19:52:39 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|