summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/kubernetes/helm/base_command_spec.rb
blob: 2a4a911cf38e24f9e7865251bfddbf03c53836ae (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
45
46
47
48
49
50
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Kubernetes::Helm::BaseCommand do
  subject(:base_command) do
    test_class.new(rbac)
  end

  let(:application) { create(:clusters_applications_helm) }
  let(:rbac) { false }

  let(:test_class) do
    Class.new do
      include Gitlab::Kubernetes::Helm::BaseCommand

      def initialize(rbac)
        @rbac = rbac
      end

      def name
        "test-class-name"
      end

      def rbac?
        @rbac
      end

      def files
        {
          some: 'value'
        }
      end
    end
  end

  it_behaves_like 'helm command generator' do
    let(:commands) { '' }
  end

  describe '#pod_name' do
    subject { base_command.pod_name }

    it { is_expected.to eq('install-test-class-name') }
  end

  it_behaves_like 'helm command' do
    let(:command) { base_command }
  end
end