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

129 lines
4 KiB
Ruby
Raw Normal View History

2018-03-27 19:54:05 +05:30
require 'rails_helper'
describe Clusters::Applications::Runner do
let(:ci_runner) { create(:ci_runner) }
include_examples 'cluster application core specs', :clusters_applications_runner
2018-12-13 13:39:08 +05:30
include_examples 'cluster application status specs', :clusters_applications_runner
2019-03-02 22:35:43 +05:30
include_examples 'cluster application version specs', :clusters_applications_runner
2019-02-15 15:39:39 +05:30
include_examples 'cluster application helm specs', :clusters_applications_runner
2019-03-02 22:35:43 +05:30
include_examples 'cluster application initial status specs'
2018-03-27 19:54:05 +05:30
it { is_expected.to belong_to(:runner) }
2018-05-09 12:01:36 +05:30
describe '.installed' do
subject { described_class.installed }
let!(:cluster) { create(:clusters_applications_runner, :installed) }
before do
create(:clusters_applications_runner, :errored)
end
it { is_expected.to contain_exactly(cluster) }
end
2018-03-27 19:54:05 +05:30
describe '#install_command' do
let(:kubeclient) { double('kubernetes client') }
let(:gitlab_runner) { create(:clusters_applications_runner, runner: ci_runner) }
subject { gitlab_runner.install_command }
it { is_expected.to be_an_instance_of(Gitlab::Kubernetes::Helm::InstallCommand) }
it 'should be initialized with 4 arguments' do
expect(subject.name).to eq('runner')
expect(subject.chart).to eq('runner/gitlab-runner')
2019-03-02 22:35:43 +05:30
expect(subject.version).to eq('0.1.45')
2019-02-15 15:39:39 +05:30
expect(subject).to be_rbac
2018-03-27 19:54:05 +05:30
expect(subject.repository).to eq('https://charts.gitlab.io')
2018-11-18 11:00:15 +05:30
expect(subject.files).to eq(gitlab_runner.files)
end
2019-02-15 15:39:39 +05:30
context 'on a non rbac enabled cluster' do
2018-11-20 20:47:30 +05:30
before do
2019-02-15 15:39:39 +05:30
gitlab_runner.cluster.platform_kubernetes.abac!
2018-11-20 20:47:30 +05:30
end
2019-02-15 15:39:39 +05:30
it { is_expected.not_to be_rbac }
2018-11-20 20:47:30 +05:30
end
2018-11-18 11:00:15 +05:30
context 'application failed to install previously' do
let(:gitlab_runner) { create(:clusters_applications_runner, :errored, runner: ci_runner, version: '0.1.13') }
it 'should be initialized with the locked version' do
2019-03-02 22:35:43 +05:30
expect(subject.version).to eq('0.1.45')
2018-11-18 11:00:15 +05:30
end
2018-03-27 19:54:05 +05:30
end
end
2018-11-18 11:00:15 +05:30
describe '#files' do
let(:application) { create(:clusters_applications_runner, runner: ci_runner) }
let(:values) { subject[:'values.yaml'] }
subject { application.files }
2018-03-27 19:54:05 +05:30
it 'should include runner valid values' do
2018-11-18 11:00:15 +05:30
expect(values).to include('concurrent')
expect(values).to include('checkInterval')
expect(values).to include('rbac')
expect(values).to include('runners')
expect(values).to include('privileged: true')
expect(values).to include('image: ubuntu:16.04')
expect(values).to include('resources')
expect(values).to match(/runnerToken: '?#{ci_runner.token}/)
expect(values).to match(/gitlabUrl: '?#{Gitlab::Routing.url_helpers.root_url}/)
2018-03-27 19:54:05 +05:30
end
context 'without a runner' do
let(:project) { create(:project) }
2018-11-18 11:00:15 +05:30
let(:cluster) { create(:cluster, :with_installed_helm, projects: [project]) }
2019-02-15 15:39:39 +05:30
let(:application) { create(:clusters_applications_runner, runner: nil, cluster: cluster) }
2018-03-27 19:54:05 +05:30
it 'creates a runner' do
expect do
subject
end.to change { Ci::Runner.count }.by(1)
end
it 'uses the new runner token' do
2018-11-18 11:00:15 +05:30
expect(values).to match(/runnerToken: '?#{application.reload.runner.token}/)
2018-03-27 19:54:05 +05:30
end
it 'assigns the new runner to runner' do
subject
2018-11-18 11:00:15 +05:30
expect(application.reload.runner).to be_project_type
2018-03-27 19:54:05 +05:30
end
end
context 'with duplicated values on vendor/runner/values.yaml' do
2018-11-18 11:00:15 +05:30
let(:stub_values) do
2018-03-27 19:54:05 +05:30
{
"concurrent" => 4,
"checkInterval" => 3,
"rbac" => {
"create" => false
},
"clusterWideAccess" => false,
"runners" => {
"privileged" => false,
"image" => "ubuntu:16.04",
"builds" => {},
"services" => {},
"helpers" => {}
}
}
end
before do
2018-11-18 11:00:15 +05:30
allow(application).to receive(:chart_values).and_return(stub_values)
2018-03-27 19:54:05 +05:30
end
it 'should overwrite values.yaml' do
2018-11-18 11:00:15 +05:30
expect(values).to match(/privileged: '?#{application.privileged}/)
2018-03-27 19:54:05 +05:30
end
end
end
end