2017-06-14 18:01:35 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-05-02 18:58:48 +02:00
|
|
|
RSpec.describe BatchedRemoveStatusService, type: :service do
|
2017-06-14 18:01:35 +02:00
|
|
|
subject { BatchedRemoveStatusService.new }
|
|
|
|
|
|
|
|
let!(:alice) { Fabricate(:account) }
|
2021-05-07 19:32:58 +02:00
|
|
|
let!(:bob) { Fabricate(:account, username: 'bob', domain: 'example.com') }
|
2022-01-28 00:46:42 +01:00
|
|
|
let!(:jeff) { Fabricate(:account) }
|
2017-08-13 00:44:41 +02:00
|
|
|
let!(:hank) { Fabricate(:account, username: 'hank', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') }
|
2017-06-14 18:01:35 +02:00
|
|
|
|
2019-01-05 12:43:28 +01:00
|
|
|
let(:status1) { PostStatusService.new.call(alice, text: 'Hello @bob@example.com') }
|
|
|
|
let(:status2) { PostStatusService.new.call(alice, text: 'Another status') }
|
2017-06-14 18:01:35 +02:00
|
|
|
|
|
|
|
before do
|
2022-04-28 17:47:34 +02:00
|
|
|
allow(redis).to receive_messages(publish: nil)
|
2017-06-14 18:01:35 +02:00
|
|
|
|
2017-08-13 00:44:41 +02:00
|
|
|
stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
|
2017-06-14 18:01:35 +02:00
|
|
|
|
2018-10-08 04:50:11 +02:00
|
|
|
jeff.user.update(current_sign_in_at: Time.zone.now)
|
2017-06-14 18:01:35 +02:00
|
|
|
jeff.follow!(alice)
|
2017-08-13 00:44:41 +02:00
|
|
|
hank.follow!(alice)
|
2017-06-14 18:01:35 +02:00
|
|
|
|
|
|
|
status1
|
|
|
|
status2
|
|
|
|
|
|
|
|
subject.call([status1, status2])
|
|
|
|
end
|
|
|
|
|
2020-12-22 17:13:55 +01:00
|
|
|
it 'removes statuses' do
|
|
|
|
expect { Status.find(status1.id) }.to raise_error ActiveRecord::RecordNotFound
|
|
|
|
expect { Status.find(status2.id) }.to raise_error ActiveRecord::RecordNotFound
|
|
|
|
end
|
|
|
|
|
2017-06-14 18:01:35 +02:00
|
|
|
it 'removes statuses from author\'s home feed' do
|
2017-11-18 00:16:48 +01:00
|
|
|
expect(HomeFeed.new(alice).get(10)).to_not include([status1.id, status2.id])
|
2017-06-14 18:01:35 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes statuses from local follower\'s home feed' do
|
2017-11-18 00:16:48 +01:00
|
|
|
expect(HomeFeed.new(jeff).get(10)).to_not include([status1.id, status2.id])
|
2017-06-14 18:01:35 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'notifies streaming API of followers' do
|
2022-04-28 17:47:34 +02:00
|
|
|
expect(redis).to have_received(:publish).with("timeline:#{jeff.id}", any_args).at_least(:once)
|
2017-06-14 18:01:35 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'notifies streaming API of public timeline' do
|
2022-04-28 17:47:34 +02:00
|
|
|
expect(redis).to have_received(:publish).with('timeline:public', any_args).at_least(:once)
|
2017-06-14 18:01:35 +02:00
|
|
|
end
|
|
|
|
|
2017-08-13 00:44:41 +02:00
|
|
|
it 'sends delete activity to followers' do
|
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.at_least_once
|
|
|
|
end
|
2017-06-14 18:01:35 +02:00
|
|
|
end
|