debian-mirror-gitlab/spec/models/clusters/applications/ingress_spec.rb

127 lines
3.9 KiB
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
require 'rails_helper'
describe Clusters::Applications::Ingress do
2018-03-27 19:54:05 +05:30
let(:ingress) { create(:clusters_applications_ingress) }
2018-03-17 18:26:18 +05:30
2018-03-27 19:54:05 +05:30
include_examples 'cluster application core specs', :clusters_applications_ingress
2018-12-13 13:39:08 +05:30
include_examples 'cluster application status specs', :clusters_applications_ingress
2019-01-03 12:48:30 +05:30
include_examples 'cluster application helm specs', :clusters_applications_knative
2018-03-27 19:54:05 +05:30
before do
allow(ClusterWaitForIngressIpAddressWorker).to receive(:perform_in)
allow(ClusterWaitForIngressIpAddressWorker).to receive(:perform_async)
end
2018-05-09 12:01:36 +05:30
describe '.installed' do
subject { described_class.installed }
let!(:cluster) { create(:clusters_applications_ingress, :installed) }
before do
create(:clusters_applications_ingress, :errored)
end
it { is_expected.to contain_exactly(cluster) }
end
2018-11-18 11:00:15 +05:30
describe '#make_installing!' do
before do
application.make_installing!
end
context 'application install previously errored with older version' do
let(:application) { create(:clusters_applications_ingress, :scheduled, version: '0.22.0') }
it 'updates the application version' do
expect(application.reload.version).to eq('0.23.0')
end
end
end
2018-03-27 19:54:05 +05:30
describe '#make_installed!' do
before do
application.make_installed!
end
let(:application) { create(:clusters_applications_ingress, :installing) }
it 'schedules a ClusterWaitForIngressIpAddressWorker' do
expect(ClusterWaitForIngressIpAddressWorker).to have_received(:perform_in)
.with(Clusters::Applications::Ingress::FETCH_IP_ADDRESS_DELAY, 'ingress', application.id)
end
end
describe '#schedule_status_update' do
let(:application) { create(:clusters_applications_ingress, :installed) }
before do
application.schedule_status_update
end
it 'schedules a ClusterWaitForIngressIpAddressWorker' do
expect(ClusterWaitForIngressIpAddressWorker).to have_received(:perform_async)
.with('ingress', application.id)
end
context 'when the application is not installed' do
let(:application) { create(:clusters_applications_ingress, :installing) }
it 'does not schedule a ClusterWaitForIngressIpAddressWorker' do
expect(ClusterWaitForIngressIpAddressWorker).not_to have_received(:perform_async)
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
end
describe '#install_command' do
subject { ingress.install_command }
it { is_expected.to be_an_instance_of(Gitlab::Kubernetes::Helm::InstallCommand) }
it 'should be initialized with ingress arguments' do
expect(subject.name).to eq('ingress')
expect(subject.chart).to eq('stable/nginx-ingress')
2018-11-18 11:00:15 +05:30
expect(subject.version).to eq('0.23.0')
2018-11-20 20:47:30 +05:30
expect(subject).not_to be_rbac
2018-11-18 11:00:15 +05:30
expect(subject.files).to eq(ingress.files)
end
2018-11-20 20:47:30 +05:30
context 'on a rbac enabled cluster' do
before do
ingress.cluster.platform_kubernetes.rbac!
end
it { is_expected.to be_rbac }
end
2018-11-18 11:00:15 +05:30
context 'application failed to install previously' do
let(:ingress) { create(:clusters_applications_ingress, :errored, version: 'nginx') }
it 'should be initialized with the locked version' do
expect(subject.version).to eq('0.23.0')
end
2018-03-27 19:54:05 +05:30
end
end
2018-11-18 11:00:15 +05:30
describe '#files' do
let(:application) { ingress }
let(:values) { subject[:'values.yaml'] }
subject { application.files }
it 'should include ingress valid keys in values' do
expect(values).to include('image')
expect(values).to include('repository')
expect(values).to include('stats')
expect(values).to include('podAnnotations')
end
2018-03-27 19:54:05 +05:30
end
2018-03-17 18:26:18 +05:30
end