about summary refs log tree commit diff
path: root/spec/workers/pubsubhubbub/distribution_worker_spec.rb
blob: 9565a2f7c2b04d308c8be49b5cdc394c72d1a9db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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') }
  let!(:anonymous_subscription) { Fabricate(:subscription, account_id: alice.id, callback_url: 'http://example1.com', confirmed: true, lease_seconds: 3600) }
  let!(:subscription_with_follower) { Fabricate(:subscription, account_id: alice.id, callback_url: 'http://example2.com', confirmed: true, lease_seconds: 3600) }

  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
      allow(Pubsubhubbub::DeliveryWorker).to receive(:perform_async)
      subject.perform(status.stream_entry.id)
      expect(Pubsubhubbub::DeliveryWorker).to have_received(:perform_async).with(subscription_with_follower.id, /.*/)
      expect(Pubsubhubbub::DeliveryWorker).to have_received(:perform_async).with(anonymous_subscription.id, /.*/)
    end
  end

  describe 'with private status' do
    let(:status) { Fabricate(:status, account: alice, text: 'Hello', visibility: :private) }

    it 'delivers payload only to subscriptions with followers' do
      allow(Pubsubhubbub::DeliveryWorker).to receive(:perform_async)
      subject.perform(status.stream_entry.id)
      expect(Pubsubhubbub::DeliveryWorker).to have_received(:perform_async).with(subscription_with_follower.id, /.*/)
      expect(Pubsubhubbub::DeliveryWorker).to_not have_received(:perform_async).with(anonymous_subscription.id, /.*/)
    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(:perform_async)
      subject.perform(status.stream_entry.id)
      expect(Pubsubhubbub::DeliveryWorker).to_not have_received(:perform_async)
    end
  end
end