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

66 lines
1.8 KiB
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
require 'rails_helper'
describe Clusters::Applications::Helm do
2018-03-27 19:54:05 +05:30
include_examples 'cluster application core specs', :clusters_applications_helm
2018-03-17 18:26:18 +05:30
2019-05-30 16:15:17 +05:30
describe '.installed' do
subject { described_class.installed }
2018-05-09 12:01:36 +05:30
2018-11-18 11:00:15 +05:30
let!(:installed_cluster) { create(:clusters_applications_helm, :installed) }
2018-05-09 12:01:36 +05:30
before do
create(:clusters_applications_helm, :errored)
end
2019-05-30 16:15:17 +05:30
it { is_expected.to contain_exactly(installed_cluster) }
2018-11-18 11:00:15 +05:30
end
describe '#issue_client_cert' do
let(:application) { create(:clusters_applications_helm) }
subject { application.issue_client_cert }
it 'returns a new cert' do
is_expected.to be_kind_of(Gitlab::Kubernetes::Helm::Certificate)
expect(subject.cert_string).not_to eq(application.ca_cert)
expect(subject.key_string).not_to eq(application.ca_key)
end
2018-05-09 12:01:36 +05:30
end
2018-03-17 18:26:18 +05:30
describe '#install_command' do
2018-03-27 19:54:05 +05:30
let(:helm) { create(:clusters_applications_helm) }
2018-03-17 18:26:18 +05:30
2018-03-27 19:54:05 +05:30
subject { helm.install_command }
2018-03-17 18:26:18 +05:30
2018-03-27 19:54:05 +05:30
it { is_expected.to be_an_instance_of(Gitlab::Kubernetes::Helm::InitCommand) }
2018-03-17 18:26:18 +05:30
2019-05-30 16:15:17 +05:30
it 'should be initialized with 1 arguments' do
2018-03-27 19:54:05 +05:30
expect(subject.name).to eq('helm')
2018-03-17 18:26:18 +05:30
end
2018-11-18 11:00:15 +05:30
2019-05-30 16:15:17 +05:30
it 'should have cert files' do
2018-11-18 11:00:15 +05:30
expect(subject.files[:'ca.pem']).to be_present
expect(subject.files[:'ca.pem']).to eq(helm.ca_cert)
expect(subject.files[:'cert.pem']).to be_present
expect(subject.files[:'key.pem']).to be_present
cert = OpenSSL::X509::Certificate.new(subject.files[:'cert.pem'])
expect(cert.not_after).to be > 999.years.from_now
end
2018-11-20 20:47:30 +05:30
describe 'rbac' do
2019-02-15 15:39:39 +05:30
context 'rbac cluster' do
it { expect(subject).to be_rbac }
2018-11-20 20:47:30 +05:30
end
2019-02-15 15:39:39 +05:30
context 'non rbac cluster' do
2018-11-20 20:47:30 +05:30
before do
2019-02-15 15:39:39 +05:30
helm.cluster.platform_kubernetes.abac!
2018-11-20 20:47:30 +05:30
end
2019-02-15 15:39:39 +05:30
it { expect(subject).not_to be_rbac }
2018-11-20 20:47:30 +05:30
end
end
2018-03-17 18:26:18 +05:30
end
end