summaryrefslogtreecommitdiff
path: root/spec/workers/clusters/cleanup/service_account_worker_spec.rb
blob: dabc32a0ccdfcce6af285508c1fe064e148c81be (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Clusters::Cleanup::ServiceAccountWorker do
  describe '#perform' do
    let!(:cluster) { create(:cluster, :cleanup_removing_service_account) }

    context 'when cluster.cleanup_status is cleanup_removing_service_account' do
      it 'calls Clusters::Cleanup::ServiceAccountService' do
        expect_any_instance_of(Clusters::Cleanup::ServiceAccountService).to receive(:execute).once

        subject.perform(cluster.id)
      end
    end

    context 'when cluster.cleanup_status is not cleanup_removing_service_account' do
      let!(:cluster) { create(:cluster, :with_environments) }

      it 'does not call Clusters::Cleanup::ServiceAccountService' do
        expect(Clusters::Cleanup::ServiceAccountService).not_to receive(:new)

        subject.perform(cluster.id)
      end
    end
  end
end