2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
require 'fast_spec_helper'
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
RSpec.describe Quality::KubernetesClient do
|
2018-12-13 13:39:08 +05:30
|
|
|
let(:namespace) { 'review-apps-ee' }
|
|
|
|
let(:release_name) { 'my-release' }
|
2020-01-01 13:55:28 +05:30
|
|
|
let(:pod_for_release) { "pod-my-release-abcd" }
|
|
|
|
let(:raw_resource_names_str) { "NAME\nfoo\n#{pod_for_release}\nbar" }
|
|
|
|
let(:raw_resource_names) { raw_resource_names_str.lines.map(&:strip) }
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
subject { described_class.new(namespace: namespace) }
|
2018-12-05 23:21:45 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
describe 'RESOURCE_LIST' do
|
|
|
|
it 'returns the correct list of resources separated by commas' do
|
|
|
|
expect(described_class::RESOURCE_LIST).to eq('ingress,svc,pdb,hpa,deploy,statefulset,job,pod,secret,configmap,pvc,secret,clusterrole,clusterrolebinding,role,rolebinding,sa,crd')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
describe '#cleanup' do
|
2020-01-01 13:55:28 +05:30
|
|
|
before do
|
|
|
|
allow(subject).to receive(:raw_resource_names).and_return(raw_resource_names)
|
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
it 'raises an error if the Kubernetes command fails' do
|
|
|
|
expect(Gitlab::Popen).to receive(:popen_with_detail)
|
2020-01-01 13:55:28 +05:30
|
|
|
.with(["kubectl delete #{described_class::RESOURCE_LIST} " +
|
|
|
|
%(--namespace "#{namespace}" --now --ignore-not-found --include-uninitialized --wait=true -l release="#{release_name}")])
|
2018-12-13 13:39:08 +05:30
|
|
|
.and_return(Gitlab::Popen::Result.new([], '', '', double(success?: false)))
|
|
|
|
|
|
|
|
expect { subject.cleanup(release_name: release_name) }.to raise_error(described_class::CommandFailedError)
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
it 'calls kubectl with the correct arguments' do
|
2018-12-13 13:39:08 +05:30
|
|
|
expect(Gitlab::Popen).to receive(:popen_with_detail)
|
2020-01-01 13:55:28 +05:30
|
|
|
.with(["kubectl delete #{described_class::RESOURCE_LIST} " +
|
|
|
|
%(--namespace "#{namespace}" --now --ignore-not-found --include-uninitialized --wait=true -l release="#{release_name}")])
|
|
|
|
.and_return(Gitlab::Popen::Result.new([], '', '', double(success?: true)))
|
|
|
|
|
|
|
|
expect(Gitlab::Popen).to receive(:popen_with_detail)
|
2020-04-08 14:13:33 +05:30
|
|
|
.with([%(kubectl delete --namespace "#{namespace}" --ignore-not-found #{pod_for_release})])
|
2018-12-13 13:39:08 +05:30
|
|
|
.and_return(Gitlab::Popen::Result.new([], '', '', double(success?: true)))
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
# We're not verifying the output here, just silencing it
|
2018-12-13 13:39:08 +05:30
|
|
|
expect { subject.cleanup(release_name: release_name) }.to output.to_stdout
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
context 'with multiple releases' do
|
2020-03-13 15:44:24 +05:30
|
|
|
let(:release_name) { %w[my-release my-release-2] }
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
it 'raises an error if the Kubernetes command fails' do
|
|
|
|
expect(Gitlab::Popen).to receive(:popen_with_detail)
|
2020-01-01 13:55:28 +05:30
|
|
|
.with(["kubectl delete #{described_class::RESOURCE_LIST} " +
|
|
|
|
%(--namespace "#{namespace}" --now --ignore-not-found --include-uninitialized --wait=true -l 'release in (#{release_name.join(', ')})')])
|
|
|
|
.and_return(Gitlab::Popen::Result.new([], '', '', double(success?: false)))
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
expect { subject.cleanup(release_name: release_name) }.to raise_error(described_class::CommandFailedError)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls kubectl with the correct arguments' do
|
|
|
|
expect(Gitlab::Popen).to receive(:popen_with_detail)
|
2020-01-01 13:55:28 +05:30
|
|
|
.with(["kubectl delete #{described_class::RESOURCE_LIST} " +
|
|
|
|
%(--namespace "#{namespace}" --now --ignore-not-found --include-uninitialized --wait=true -l 'release in (#{release_name.join(', ')})')])
|
|
|
|
.and_return(Gitlab::Popen::Result.new([], '', '', double(success?: true)))
|
|
|
|
|
|
|
|
expect(Gitlab::Popen).to receive(:popen_with_detail)
|
2020-04-08 14:13:33 +05:30
|
|
|
.with([%(kubectl delete --namespace "#{namespace}" --ignore-not-found #{pod_for_release})])
|
2020-01-01 13:55:28 +05:30
|
|
|
.and_return(Gitlab::Popen::Result.new([], '', '', double(success?: true)))
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
# We're not verifying the output here, just silencing it
|
|
|
|
expect { subject.cleanup(release_name: release_name) }.to output.to_stdout
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with `wait: false`' do
|
|
|
|
it 'raises an error if the Kubernetes command fails' do
|
|
|
|
expect(Gitlab::Popen).to receive(:popen_with_detail)
|
2020-01-01 13:55:28 +05:30
|
|
|
.with(["kubectl delete #{described_class::RESOURCE_LIST} " +
|
|
|
|
%(--namespace "#{namespace}" --now --ignore-not-found --include-uninitialized --wait=false -l release="#{release_name}")])
|
|
|
|
.and_return(Gitlab::Popen::Result.new([], '', '', double(success?: false)))
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
expect { subject.cleanup(release_name: release_name, wait: false) }.to raise_error(described_class::CommandFailedError)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls kubectl with the correct arguments' do
|
|
|
|
expect(Gitlab::Popen).to receive(:popen_with_detail)
|
2020-01-01 13:55:28 +05:30
|
|
|
.with(["kubectl delete #{described_class::RESOURCE_LIST} " +
|
|
|
|
%(--namespace "#{namespace}" --now --ignore-not-found --include-uninitialized --wait=false -l release="#{release_name}")])
|
|
|
|
.and_return(Gitlab::Popen::Result.new([], '', '', double(success?: true)))
|
|
|
|
|
|
|
|
expect(Gitlab::Popen).to receive(:popen_with_detail)
|
2020-04-08 14:13:33 +05:30
|
|
|
.with([%(kubectl delete --namespace "#{namespace}" --ignore-not-found #{pod_for_release})])
|
2020-01-01 13:55:28 +05:30
|
|
|
.and_return(Gitlab::Popen::Result.new([], '', '', double(success?: true)))
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
# We're not verifying the output here, just silencing it
|
|
|
|
expect { subject.cleanup(release_name: release_name, wait: false) }.to output.to_stdout
|
|
|
|
end
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
describe '#raw_resource_names' do
|
|
|
|
it 'calls kubectl to retrieve the resource names' do
|
|
|
|
expect(Gitlab::Popen).to receive(:popen_with_detail)
|
|
|
|
.with(["kubectl get #{described_class::RESOURCE_LIST} " +
|
2020-03-13 15:44:24 +05:30
|
|
|
%(--namespace "#{namespace}" -o name)])
|
2020-01-01 13:55:28 +05:30
|
|
|
.and_return(Gitlab::Popen::Result.new([], raw_resource_names_str, '', double(success?: true)))
|
|
|
|
|
|
|
|
expect(subject.__send__(:raw_resource_names)).to eq(raw_resource_names)
|
|
|
|
end
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|