about summary refs log tree commit diff
path: root/spec/services/pubsubhubbub/unsubscribe_service_spec.rb
blob: 7ed9fc5af5fcdd2f64656d0f795848626cdc01cb (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
# frozen_string_literal: true

require 'rails_helper'

describe Pubsubhubbub::UnsubscribeService, type: :service do
  describe '#call' do
    subject { described_class.new }

    context 'with a nil account' do
      it 'returns an invalid topic status' do
        result = subject.call(nil, 'callback.host')

        expect(result).to eq invalid_topic_status
      end
    end

    context 'with a valid account' do
      let(:account) { Fabricate(:account) }

      it 'returns a valid topic status and does not run confirm when no subscription' do
        allow(Pubsubhubbub::ConfirmationWorker).to receive(:perform_async).and_return(nil)
        result = subject.call(account, 'callback.host')

        expect(result).to eq valid_topic_status
        expect(Pubsubhubbub::ConfirmationWorker).not_to have_received(:perform_async)
      end

      it 'returns a valid topic status and does run confirm when there is a subscription' do
        subscription = Fabricate(:subscription, account: account, callback_url: 'callback.host')
        allow(Pubsubhubbub::ConfirmationWorker).to receive(:perform_async).and_return(nil)
        result = subject.call(account, 'callback.host')

        expect(result).to eq valid_topic_status
        expect(Pubsubhubbub::ConfirmationWorker).to have_received(:perform_async).with(subscription.id, 'unsubscribe')
      end
    end

    def invalid_topic_status
      ['Invalid topic URL', 422]
    end

    def valid_topic_status
      ['', 202]
    end
  end
end