2019-07-31 22:56:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Gitlab::Kubernetes::Helm::DeleteCommand do
|
2020-10-24 23:57:45 +05:30
|
|
|
subject(:delete_command) { described_class.new(name: app_name, rbac: rbac, files: files) }
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
let(:app_name) { 'app-name' }
|
|
|
|
let(:rbac) { true }
|
|
|
|
let(:files) { {} }
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
it_behaves_like 'helm command generator' do
|
2019-07-31 22:56:46 +05:30
|
|
|
let(:commands) do
|
|
|
|
<<~EOS
|
2020-01-01 13:55:28 +05:30
|
|
|
export HELM_HOST="localhost:44134"
|
|
|
|
tiller -listen ${HELM_HOST} -alsologtostderr &
|
|
|
|
helm init --client-only
|
2019-07-31 22:56:46 +05:30
|
|
|
helm delete --purge app-name
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#pod_name' do
|
|
|
|
subject { delete_command.pod_name }
|
|
|
|
|
|
|
|
it { is_expected.to eq('uninstall-app-name') }
|
|
|
|
end
|
2020-05-24 23:13:21 +05:30
|
|
|
|
|
|
|
it_behaves_like 'helm command' do
|
|
|
|
let(:command) { delete_command }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#delete_command' do
|
|
|
|
it 'deletes the release' do
|
|
|
|
expect(subject.delete_command).to eq('helm delete --purge app-name')
|
|
|
|
end
|
|
|
|
end
|
2019-07-31 22:56:46 +05:30
|
|
|
end
|