summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/kubernetes/kubectl_cmd_spec.rb
blob: 2e37361326990a7b4adf0fcb49560288b5fa6989 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.describe Gitlab::Kubernetes::KubectlCmd do
  describe '.delete' do
    it 'constructs string properly' do
      args = %w(resource_type type --flag-1 --flag-2)

      expected_command = 'kubectl delete resource_type type --flag-1 --flag-2'

      expect(described_class.delete(*args)).to eq expected_command
    end
  end

  describe '.apply_file' do
    context 'without optional args' do
      it 'requires filename to be present' do
        expect { described_class.apply_file(nil) }.to raise_error(ArgumentError, "filename is not present")
        expect { described_class.apply_file("  ") }.to raise_error(ArgumentError, "filename is not present")
      end

      it 'constructs string properly' do
        expected_command = 'kubectl apply -f filename'

        expect(described_class.apply_file('filename')).to eq expected_command
      end
    end

    context 'with optional args' do
      it 'constructs command properly with many args' do
        args = %w(arg-1 --flag-0-1 arg-2 --flag-0-2)

        expected_command = 'kubectl apply -f filename arg-1 --flag-0-1 arg-2 --flag-0-2'

        expect(described_class.apply_file('filename', *args)).to eq expected_command
      end

      it 'constructs command properly with single arg' do
        args = "arg-1"

        expected_command = 'kubectl apply -f filename arg-1'

        expect(described_class.apply_file('filename', args)).to eq(expected_command)
      end
    end
  end

  describe '.api_resources' do
    it 'constructs string properly' do
      expected_command = 'kubectl api-resources -o name --api-group foo'

      expect(described_class.api_resources("-o", "name", "--api-group", "foo")).to eq expected_command
    end
  end

  describe '.delete_crds_from_group' do
    it 'constructs string properly' do
      command = 'kubectl api-resources -o name --api-group foo | xargs -r kubectl delete --ignore-not-found crd'
      command_with_retries = "for i in $(seq 1 3); do #{command} && s=0 && break || s=$?; sleep 1s; echo \"Retrying ($i)...\"; done; (exit $s)"

      expect(described_class.delete_crds_from_group("foo")).to eq command_with_retries
    end
  end
end