summaryrefslogtreecommitdiff
path: root/spec/workers/x509_certificate_revoke_worker_spec.rb
blob: 392cb52d084af6af2cb3a9b3f8453a7b80bbaa99 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe X509CertificateRevokeWorker do
  describe '#perform' do
    context 'with a revoked certificate' do
      subject { described_class.new }

      let(:x509_certificate) { create(:x509_certificate, certificate_status: :revoked) }
      let(:job_args) { x509_certificate.id }

      include_examples 'an idempotent worker' do
        it 'executes the revoke service' do
          spy_service = X509CertificateRevokeService.new

          allow(X509CertificateRevokeService).to receive(:new) { spy_service }

          expect(spy_service).to receive(:execute)
            .exactly(IdempotentWorkerHelper::WORKER_EXEC_TIMES).times
            .with(x509_certificate)
            .and_call_original

          subject
        end
      end

      it 'executes the revoke service' do
        spy_service = X509CertificateRevokeService.new

        allow(X509CertificateRevokeService).to receive(:new) { spy_service }

        expect_next_instance_of(X509CertificateRevokeService) do |service|
          expect(service).to receive(:execute).with(x509_certificate)
        end

        subject
      end
    end
  end
end