summaryrefslogtreecommitdiff
path: root/spec/workers/mail_scheduler/notification_service_worker_spec.rb
blob: f725c8763a0ad0f51de127d4a83d3118b7e68e21 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
require 'spec_helper'

describe MailScheduler::NotificationServiceWorker do
  let(:worker) { described_class.new }
  let(:method) { 'new_key' }
  set(:key) { create(:personal_key) }

  def serialize(*args)
    ActiveJob::Arguments.serialize(args)
  end

  describe '#perform' do
    it 'deserializes arguments from global IDs' do
      expect(worker.notification_service).to receive(method).with(key)

      worker.perform(method, *serialize(key))
    end

    context 'when the arguments cannot be deserialized' do
      it 'does nothing' do
        expect(worker.notification_service).not_to receive(method)

        worker.perform(method, key.to_global_id.to_s.succ)
      end
    end

    context 'when the method is not a public method' do
      it 'raises NoMethodError' do
        expect { worker.perform('notifiable?', *serialize(key)) }.to raise_error(NoMethodError)
      end
    end
  end

  describe '.perform_async' do
    it 'serializes arguments as global IDs when scheduling' do
      Sidekiq::Testing.fake! do
        described_class.perform_async(method, key)

        expect(described_class.jobs.count).to eq(1)
        expect(described_class.jobs.first).to include('args' => [method, *serialize(key)])
      end
    end
  end
end