kubernetes_namespace_spec.rb 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Ci::Build::Prerequisite::KubernetesNamespace do
  let(:build) { create(:ci_build) }

  describe '#unmet?' do
    subject { described_class.new(build).unmet? }

    context 'build has no deployment' do
      before do
        expect(build.deployment).to be_nil
      end

      it { is_expected.to be_falsey }
    end

19
    context 'build has a deployment' do
20 21
      let!(:deployment) { create(:deployment, deployable: build) }

22
      context 'and a cluster to deploy to' do
23
        let(:cluster) { create(:cluster, :group) }
24

25
        before do
26
          allow(build.deployment).to receive(:deployment_platform_cluster).and_return(cluster)
27
        end
28

29
        it { is_expected.to be_truthy }
30

31 32 33 34 35 36
        context 'and the cluster is not managed' do
          let(:cluster) { create(:cluster, :not_managed, projects: [build.project]) }

          it { is_expected.to be_falsey }
        end

37
        context 'and a namespace is already created for this project' do
38
          let!(:kubernetes_namespace) { create(:cluster_kubernetes_namespace, :with_token, cluster: cluster, project: build.project) }
39 40

          it { is_expected.to be_falsey }
41 42 43 44 45 46

          context 'and the service_account_token is blank' do
            let!(:kubernetes_namespace) { create(:cluster_kubernetes_namespace, :without_token, cluster: cluster, project: build.project) }

            it { is_expected.to be_truthy }
          end
47
        end
48
      end
49

50 51
      context 'and no cluster to deploy to' do
        before do
52
          expect(deployment.deployment_platform_cluster).to be_nil
53 54 55 56
        end

        it { is_expected.to be_falsey }
      end
57 58 59 60
    end
  end

  describe '#complete!' do
61
    let!(:deployment) { create(:deployment, deployable: build) }
62 63 64 65 66
    let(:service) { double(execute: true) }

    subject { described_class.new(build).complete! }

    context 'completion is required' do
67
      let(:cluster) { create(:cluster, :group) }
68 69

      before do
70
        allow(build.deployment).to receive(:deployment_platform_cluster).and_return(cluster)
71
      end
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86

      it 'creates a kubernetes namespace' do
        expect(Clusters::Gcp::Kubernetes::CreateOrUpdateNamespaceService)
          .to receive(:new)
          .with(cluster: cluster, kubernetes_namespace: instance_of(Clusters::KubernetesNamespace))
          .and_return(service)

        expect(service).to receive(:execute).once

        subject
      end
    end

    context 'completion is not required' do
      before do
87
        expect(deployment.deployment_platform_cluster).to be_nil
88 89 90 91 92 93 94 95 96 97
      end

      it 'does not create a namespace' do
        expect(Clusters::Gcp::Kubernetes::CreateOrUpdateNamespaceService).not_to receive(:new)

        subject
      end
    end
  end
end