summaryrefslogtreecommitdiff
path: root/spec/services/clusters/applications/check_ingress_ip_address_service_spec.rb
blob: eb0bdb61ee325191cea4dd793d74e12ceb043298 (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
require 'spec_helper'

describe Clusters::Applications::CheckIngressIpAddressService do
  include ExclusiveLeaseHelpers

  let(:application) { create(:clusters_applications_ingress, :installed) }
  let(:service) { described_class.new(application) }
  let(:kubeclient) { double(::Kubeclient::Client, get_service: kube_service) }
  let(:ingress) { [{ ip: '111.222.111.222' }] }
  let(:lease_key) { "check_ingress_ip_address_service:#{application.id}" }

  let(:kube_service) do
    ::Kubeclient::Resource.new(
      {
          status: {
              loadBalancer: {
                  ingress: ingress
              }
          }
      }
    )
  end

  subject { service.execute }

  before do
    stub_exclusive_lease(lease_key, timeout: 15.seconds.to_i)
    allow(application.cluster).to receive(:kubeclient).and_return(kubeclient)
  end

  describe '#execute' do
    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 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

    context 'when there is already an external_ip' do
      let(:application) { create(:clusters_applications_ingress, :installed, external_ip: '001.111.002.111') }

      it 'does not call kubeclient' do
        subject

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