Welcome to mirror list, hosted at ThFree Co, Russian Federation.

template_spec.rb « kubeconfig « kubernetes « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 057c43733292fee7e18d289967d964a541aac834 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Kubernetes::Kubeconfig::Template do
  let(:template) { described_class.new }

  describe '#valid?' do
    subject { template.valid? }

    it { is_expected.to be_falsey }

    context 'with configuration added' do
      before do
        template.add_context(name: 'name', cluster: 'cluster', user: 'user')
      end

      it { is_expected.to be_truthy }
    end
  end

  describe '#to_h' do
    subject { described_class.new.to_h }

    it do
      is_expected.to eq(
        apiVersion: 'v1',
        kind: 'Config',
        clusters: [],
        users: [],
        contexts: []
      )
    end
  end

  describe '#to_yaml' do
    subject { template.to_yaml }

    it { is_expected.to eq(YAML.dump(template.to_h.deep_stringify_keys)) }
  end

  describe 'adding entries' do
    let(:entry) { instance_double(entry_class, to_h: attributes) }
    let(:attributes) do
      { name: 'name', other: 'other' }
    end

    subject { template.to_h }

    before do
      expect(entry_class).to receive(:new).with(attributes).and_return(entry)
    end

    describe '#add_cluster' do
      let(:entry_class) { Gitlab::Kubernetes::Kubeconfig::Entry::Cluster }

      before do
        template.add_cluster(**attributes)
      end

      it { is_expected.to include(clusters: [attributes]) }
    end

    describe '#add_user' do
      let(:entry_class) { Gitlab::Kubernetes::Kubeconfig::Entry::User }

      before do
        template.add_user(**attributes)
      end

      it { is_expected.to include(users: [attributes]) }
    end

    describe '#add_context' do
      let(:entry_class) { Gitlab::Kubernetes::Kubeconfig::Entry::Context }

      before do
        template.add_context(**attributes)
      end

      it { is_expected.to include(contexts: [attributes]) }
    end
  end
end