2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-11-07 09:10:40 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Clusters::Applications::Ingress do
|
2018-03-01 18:46:02 -05:00
|
|
|
let(:ingress) { create(:clusters_applications_ingress) }
|
|
|
|
|
2018-12-04 05:24:21 -05:00
|
|
|
it_behaves_like 'having unique enum values'
|
|
|
|
|
2018-03-01 18:46:02 -05:00
|
|
|
include_examples 'cluster application core specs', :clusters_applications_ingress
|
2018-10-15 05:03:15 -04:00
|
|
|
include_examples 'cluster application status specs', :clusters_applications_ingress
|
2019-02-07 16:40:55 -05:00
|
|
|
include_examples 'cluster application version specs', :clusters_applications_ingress
|
2018-11-26 15:02:33 -05:00
|
|
|
include_examples 'cluster application helm specs', :clusters_applications_ingress
|
2019-02-06 06:05:21 -05:00
|
|
|
include_examples 'cluster application initial status specs'
|
2017-11-07 09:10:40 -05:00
|
|
|
|
2018-02-19 20:42:05 -05:00
|
|
|
before do
|
|
|
|
allow(ClusterWaitForIngressIpAddressWorker).to receive(:perform_in)
|
2018-02-22 17:08:12 -05:00
|
|
|
allow(ClusterWaitForIngressIpAddressWorker).to receive(:perform_async)
|
2018-02-19 20:42:05 -05:00
|
|
|
end
|
2018-02-11 22:22:15 -05:00
|
|
|
|
2019-04-12 01:42:48 -04:00
|
|
|
describe '#can_uninstall?' do
|
|
|
|
subject { ingress.can_uninstall? }
|
|
|
|
|
2019-07-02 08:59:59 -04:00
|
|
|
it 'returns true if application_jupyter_nil_or_installable? AND external_ip_or_hostname? are true' do
|
|
|
|
ingress.external_ip = 'IP'
|
|
|
|
|
|
|
|
is_expected.to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if application_jupyter_nil_or_installable? is false' do
|
|
|
|
create(:clusters_applications_jupyter, :installed, cluster: ingress.cluster)
|
|
|
|
|
|
|
|
is_expected.to be_falsey
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if external_ip_or_hostname? is false' do
|
|
|
|
is_expected.to be_falsey
|
|
|
|
end
|
2019-04-12 01:42:48 -04:00
|
|
|
end
|
|
|
|
|
2018-02-19 20:42:05 -05:00
|
|
|
describe '#make_installed!' do
|
2018-02-11 22:22:15 -05:00
|
|
|
before do
|
2018-02-19 20:42:05 -05:00
|
|
|
application.make_installed!
|
2018-02-11 22:22:15 -05:00
|
|
|
end
|
|
|
|
|
2018-02-19 20:42:05 -05:00
|
|
|
let(:application) { create(:clusters_applications_ingress, :installing) }
|
|
|
|
|
2018-02-11 22:22:15 -05:00
|
|
|
it 'schedules a ClusterWaitForIngressIpAddressWorker' do
|
|
|
|
expect(ClusterWaitForIngressIpAddressWorker).to have_received(:perform_in)
|
2018-02-24 20:46:16 -05:00
|
|
|
.with(Clusters::Applications::Ingress::FETCH_IP_ADDRESS_DELAY, 'ingress', application.id)
|
2018-02-11 22:22:15 -05:00
|
|
|
end
|
|
|
|
end
|
2018-02-19 21:49:35 -05:00
|
|
|
|
2018-02-22 17:08:12 -05:00
|
|
|
describe '#schedule_status_update' do
|
2018-02-19 21:49:35 -05:00
|
|
|
let(:application) { create(:clusters_applications_ingress, :installed) }
|
|
|
|
|
|
|
|
before do
|
2018-02-22 17:08:12 -05:00
|
|
|
application.schedule_status_update
|
2018-02-19 21:49:35 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'schedules a ClusterWaitForIngressIpAddressWorker' do
|
2018-02-22 17:08:12 -05:00
|
|
|
expect(ClusterWaitForIngressIpAddressWorker).to have_received(:perform_async)
|
2018-02-24 20:46:16 -05:00
|
|
|
.with('ingress', application.id)
|
2018-02-19 21:49:35 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the application is not installed' do
|
|
|
|
let(:application) { create(:clusters_applications_ingress, :installing) }
|
|
|
|
|
|
|
|
it 'does not schedule a ClusterWaitForIngressIpAddressWorker' do
|
2018-02-22 17:08:12 -05:00
|
|
|
expect(ClusterWaitForIngressIpAddressWorker).not_to have_received(:perform_async)
|
2018-02-19 21:49:35 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there is already an external_ip' do
|
|
|
|
let(:application) { create(:clusters_applications_ingress, :installed, external_ip: '111.222.222.111') }
|
|
|
|
|
|
|
|
it 'does not schedule a ClusterWaitForIngressIpAddressWorker' do
|
|
|
|
expect(ClusterWaitForIngressIpAddressWorker).not_to have_received(:perform_in)
|
|
|
|
end
|
|
|
|
end
|
2019-03-07 16:51:43 -05:00
|
|
|
|
|
|
|
context 'when there is already an external_hostname' do
|
|
|
|
let(:application) { create(:clusters_applications_ingress, :installed, external_hostname: 'localhost.localdomain') }
|
|
|
|
|
|
|
|
it 'does not schedule a ClusterWaitForIngressIpAddressWorker' do
|
|
|
|
expect(ClusterWaitForIngressIpAddressWorker).not_to have_received(:perform_in)
|
|
|
|
end
|
|
|
|
end
|
2018-02-19 21:49:35 -05:00
|
|
|
end
|
2018-03-01 18:46:02 -05:00
|
|
|
|
|
|
|
describe '#install_command' do
|
|
|
|
subject { ingress.install_command }
|
|
|
|
|
|
|
|
it { is_expected.to be_an_instance_of(Gitlab::Kubernetes::Helm::InstallCommand) }
|
|
|
|
|
2019-04-05 04:43:27 -04:00
|
|
|
it 'is initialized with ingress arguments' do
|
2018-03-01 18:46:02 -05:00
|
|
|
expect(subject.name).to eq('ingress')
|
|
|
|
expect(subject.chart).to eq('stable/nginx-ingress')
|
2019-01-07 16:32:28 -05:00
|
|
|
expect(subject.version).to eq('1.1.2')
|
2019-01-03 08:41:53 -05:00
|
|
|
expect(subject).to be_rbac
|
2018-08-07 08:39:38 -04:00
|
|
|
expect(subject.files).to eq(ingress.files)
|
2018-03-01 18:46:02 -05:00
|
|
|
end
|
2018-07-22 06:48:53 -04:00
|
|
|
|
2019-01-03 08:41:53 -05:00
|
|
|
context 'on a non rbac enabled cluster' do
|
2018-09-06 06:03:38 -04:00
|
|
|
before do
|
2019-01-03 08:41:53 -05:00
|
|
|
ingress.cluster.platform_kubernetes.abac!
|
2018-09-06 06:03:38 -04:00
|
|
|
end
|
|
|
|
|
2019-01-03 08:41:53 -05:00
|
|
|
it { is_expected.not_to be_rbac }
|
2018-09-06 06:03:38 -04:00
|
|
|
end
|
|
|
|
|
2018-07-22 06:48:53 -04:00
|
|
|
context 'application failed to install previously' do
|
|
|
|
let(:ingress) { create(:clusters_applications_ingress, :errored, version: 'nginx') }
|
|
|
|
|
2019-04-05 04:43:27 -04:00
|
|
|
it 'is initialized with the locked version' do
|
2019-01-07 16:32:28 -05:00
|
|
|
expect(subject.version).to eq('1.1.2')
|
2018-07-22 06:48:53 -04:00
|
|
|
end
|
|
|
|
end
|
2018-03-01 18:46:02 -05:00
|
|
|
end
|
|
|
|
|
2018-08-07 08:39:38 -04:00
|
|
|
describe '#files' do
|
|
|
|
let(:application) { ingress }
|
|
|
|
let(:values) { subject[:'values.yaml'] }
|
2018-03-01 18:46:02 -05:00
|
|
|
|
2018-08-07 08:39:38 -04:00
|
|
|
subject { application.files }
|
|
|
|
|
2019-04-05 04:43:27 -04:00
|
|
|
it 'includes ingress valid keys in values' do
|
2018-08-07 08:39:38 -04:00
|
|
|
expect(values).to include('image')
|
|
|
|
expect(values).to include('repository')
|
|
|
|
expect(values).to include('stats')
|
|
|
|
expect(values).to include('podAnnotations')
|
|
|
|
end
|
2018-03-01 18:46:02 -05:00
|
|
|
end
|
2017-11-07 09:10:40 -05:00
|
|
|
end
|