summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/services/check_ingress_ip_address_service_shared_examples.rb
blob: 02de47a96ddfe793246b1affa91732ad13b6ab1b (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
shared_examples 'check ingress ip executions' do |app_name|
  describe '#execute' do
    let(:application) { create(app_name, :installed) }
    let(:service) { described_class.new(application) }
    let(:kubeclient) { double(::Kubeclient::Client, get_service: kube_service) }

    context 'when the ingress ip address is available' do
      it 'updates the external_ip for the app' do
        subject

        expect(application.external_ip).to eq('111.222.111.222')
      end
    end

    context 'when the ingress external hostname is available' do
      it 'updates the external_hostname for the app' do
        subject

        expect(application.external_hostname).to eq('localhost.localdomain')
      end
    end

    context 'when the ingress ip address is not available' do
      let(:ingress) { nil }

      it 'does not error' do
        subject
      end
    end

    context 'when the exclusive lease cannot be obtained' do
      it 'does not call kubeclient' do
        stub_exclusive_lease_taken(lease_key, timeout: 15.seconds.to_i)

        subject

        expect(kubeclient).not_to have_received(:get_service)
      end
    end
  end
end