jupyter_spec.rb 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
require 'rails_helper'

describe Clusters::Applications::Jupyter do
  include_examples 'cluster application core specs', :clusters_applications_jupyter

  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) }

17
      it { expect(jupyter).to be_not_installable }
18 19 20 21 22 23
    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) }

24
      it { expect(jupyter).to be_installable }
25 26 27 28 29 30 31 32 33 34 35 36 37 38
    end
  end

  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')
39
      expect(subject.version).to be_nil
40
      expect(subject.repository).to eq('https://jupyterhub.github.io/helm-chart/')
41
      expect(subject.values).to eq(jupyter.values)
42 43 44
    end
  end

45 46
  describe '#values' do
    let(:jupyter) { create(:clusters_applications_jupyter) }
47

48
    subject { jupyter.values }
49 50

    it 'should include valid values' do
51 52 53 54 55 56 57
      is_expected.to include('ingress')
      is_expected.to include('hub')
      is_expected.to include('rbac')
      is_expected.to include('proxy')
      is_expected.to include('auth')
      is_expected.to include("clientId: #{jupyter.oauth_application.uid}")
      is_expected.to include("callbackUrl: #{jupyter.callback_url}")
58 59 60
    end
  end
end