summaryrefslogtreecommitdiff
path: root/spec/services/solidus_subscriptions/dispatcher/success_dispatcher_spec.rb
blob: aa1f72fe9495d10770c8af14e032b8883eb87b5a (plain)
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
RSpec.describe SolidusSubscriptions::Dispatcher::SuccessDispatcher do
  describe '#dispatch' do
    it 'marks all the installments as success' do
      installments = Array.new(2) { instance_spy(SolidusSubscriptions::Installment) }
      order = create(:order_with_line_items)

      dispatcher = described_class.new(installments, order)
      dispatcher.dispatch

      expect(installments).to all(have_received(:success!).with(order).once)
    end

    it 'fires an installments_succeeded event' do
      stub_const('Spree::Event', class_spy(Spree::Event))
      installments = Array.new(2) { instance_spy(SolidusSubscriptions::Installment) }
      order = create(:order_with_line_items)

      dispatcher = described_class.new(installments, order)
      dispatcher.dispatch

      expect(Spree::Event).to have_received(:fire).with(
        'solidus_subscriptions.installments_succeeded',
        installments: installments,
        order: order,
      )
    end
  end
end