summaryrefslogtreecommitdiff
path: root/spec/workers/invalid_gpg_signature_update_worker_spec.rb
blob: 5972696515be07fde90ce47155f11e5a8db90b96 (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
require 'spec_helper'

describe InvalidGpgSignatureUpdateWorker do
  context 'when GpgKey is found' do
    it 'calls NotificationService.new.run' do
      gpg_key = create(:gpg_key)
      invalid_signature_updater = double(:invalid_signature_updater)

      expect(Gitlab::Gpg::InvalidGpgSignatureUpdater).to receive(:new).with(gpg_key).and_return(invalid_signature_updater)
      expect(invalid_signature_updater).to receive(:run)

      described_class.new.perform(gpg_key.id)
    end
  end

  context 'when GpgKey is not found' do
    let(:nonexisting_gpg_key_id) { -1 }

    it 'does not raise errors' do
      expect { described_class.new.perform(nonexisting_gpg_key_id) }.not_to raise_error
    end

    it 'does not call NotificationService.new.run' do
      expect(Gitlab::Gpg::InvalidGpgSignatureUpdater).not_to receive(:new)

      described_class.new.perform(nonexisting_gpg_key_id)
    end
  end
end