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

101 lines
3.3 KiB
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
require 'rails_helper'
describe Clusters::Applications::Jupyter do
include_examples 'cluster application core specs', :clusters_applications_jupyter
2019-02-15 15:39:39 +05:30
include_examples 'cluster application helm specs', :clusters_applications_jupyter
2018-11-08 19:23:39 +05:30
it { is_expected.to belong_to(:oauth_application) }
describe '#set_initial_status' do
before do
jupyter.set_initial_status
end
context 'when ingress is not installed' do
let(:cluster) { create(:cluster, :provided_by_gcp) }
let(:jupyter) { create(:clusters_applications_jupyter, cluster: cluster) }
it { expect(jupyter).to be_not_installable }
end
context 'when ingress is installed and external_ip is assigned' do
let(:ingress) { create(:clusters_applications_ingress, :installed, external_ip: '127.0.0.1') }
let(:jupyter) { create(:clusters_applications_jupyter, cluster: ingress.cluster) }
it { expect(jupyter).to be_installable }
end
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_jupyter, :scheduled, version: 'v0.5') }
it 'updates the application version' do
expect(application.reload.version).to eq('v0.6')
end
end
end
2018-11-08 19:23:39 +05:30
describe '#install_command' do
let!(:ingress) { create(:clusters_applications_ingress, :installed, external_ip: '127.0.0.1') }
let!(:jupyter) { create(:clusters_applications_jupyter, cluster: ingress.cluster) }
subject { jupyter.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('jupyter')
expect(subject.chart).to eq('jupyter/jupyterhub')
2018-11-18 11:00:15 +05:30
expect(subject.version).to eq('v0.6')
2019-02-15 15:39:39 +05:30
expect(subject).to be_rbac
2018-11-08 19:23:39 +05:30
expect(subject.repository).to eq('https://jupyterhub.github.io/helm-chart/')
2018-11-18 11:00:15 +05:30
expect(subject.files).to eq(jupyter.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
jupyter.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(:jupyter) { create(:clusters_applications_jupyter, :errored, version: '0.0.1') }
it 'should be initialized with the locked version' do
expect(subject.version).to eq('v0.6')
end
2018-11-08 19:23:39 +05:30
end
end
2018-11-18 11:00:15 +05:30
describe '#files' do
let(:application) { create(:clusters_applications_jupyter) }
let(:values) { subject[:'values.yaml'] }
subject { application.files }
2018-11-08 19:23:39 +05:30
it 'should include valid values' do
2018-11-18 11:00:15 +05:30
expect(values).to include('ingress')
expect(values).to include('hub')
expect(values).to include('rbac')
expect(values).to include('proxy')
expect(values).to include('auth')
2018-12-05 23:21:45 +05:30
expect(values).to include('singleuser')
2018-11-18 11:00:15 +05:30
expect(values).to match(/clientId: '?#{application.oauth_application.uid}/)
expect(values).to match(/callbackUrl: '?#{application.callback_url}/)
2018-11-08 19:23:39 +05:30
end
2018-12-05 23:21:45 +05:30
context 'when cluster belongs to a project' do
it 'sets GitLab project id' do
expect(values).to match(/GITLAB_CLUSTER_ID: '?#{application.cluster.id}/)
end
end
2018-11-08 19:23:39 +05:30
end
end