2017-05-09 20:55:43 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Pubsubhubbub::DistributionWorker do
|
|
|
|
subject { Pubsubhubbub::DistributionWorker.new }
|
|
|
|
|
|
|
|
let!(:alice) { Fabricate(:account, username: 'alice') }
|
|
|
|
let!(:bob) { Fabricate(:account, username: 'bob', domain: 'example2.com') }
|
2017-05-12 14:35:36 -04:00
|
|
|
let!(:anonymous_subscription) { Fabricate(:subscription, account: alice, callback_url: 'http://example1.com', confirmed: true, lease_seconds: 3600) }
|
|
|
|
let!(:subscription_with_follower) { Fabricate(:subscription, account: alice, callback_url: 'http://example2.com', confirmed: true, lease_seconds: 3600) }
|
2017-05-09 20:55:43 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
bob.follow!(alice)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with public status' do
|
|
|
|
let(:status) { Fabricate(:status, account: alice, text: 'Hello', visibility: :public) }
|
|
|
|
|
|
|
|
it 'delivers payload to all subscriptions' do
|
2017-06-14 12:01:35 -04:00
|
|
|
allow(Pubsubhubbub::DeliveryWorker).to receive(:push_bulk)
|
2017-05-09 20:55:43 -04:00
|
|
|
subject.perform(status.stream_entry.id)
|
2017-09-25 19:06:27 -04:00
|
|
|
expect(Pubsubhubbub::DeliveryWorker).to have_received(:push_bulk).with([anonymous_subscription.id, subscription_with_follower.id])
|
2017-05-09 20:55:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-24 11:51:32 -04:00
|
|
|
context 'when OStatus privacy is not used' do
|
|
|
|
describe 'with private status' do
|
|
|
|
let(:status) { Fabricate(:status, account: alice, text: 'Hello', visibility: :private) }
|
|
|
|
|
|
|
|
it 'does not deliver anything' do
|
|
|
|
allow(Pubsubhubbub::DeliveryWorker).to receive(:push_bulk)
|
|
|
|
subject.perform(status.stream_entry.id)
|
|
|
|
expect(Pubsubhubbub::DeliveryWorker).to_not have_received(:push_bulk)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with direct status' do
|
|
|
|
let(:status) { Fabricate(:status, account: alice, text: 'Hello', visibility: :direct) }
|
|
|
|
|
|
|
|
it 'does not deliver payload' do
|
|
|
|
allow(Pubsubhubbub::DeliveryWorker).to receive(:push_bulk)
|
|
|
|
subject.perform(status.stream_entry.id)
|
|
|
|
expect(Pubsubhubbub::DeliveryWorker).to_not have_received(:push_bulk)
|
|
|
|
end
|
2017-05-09 20:55:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|