jupyter_spec.rb 5.0 KB
Newer Older
1 2
# frozen_string_literal: true

3
require 'spec_helper'
4 5 6

describe Clusters::Applications::Jupyter do
  include_examples 'cluster application core specs', :clusters_applications_jupyter
7
  include_examples 'cluster application status specs', :clusters_applications_jupyter
8
  include_examples 'cluster application version specs', :clusters_applications_jupyter
9
  include_examples 'cluster application helm specs', :clusters_applications_jupyter
10 11 12

  it { is_expected.to belong_to(:oauth_application) }

13 14 15 16 17 18
  describe '#can_uninstall?' do
    let(:ingress) { create(:clusters_applications_ingress, :installed, external_hostname: 'localhost.localdomain') }
    let(:jupyter) { create(:clusters_applications_jupyter, cluster: ingress.cluster) }

    subject { jupyter.can_uninstall? }

J
João Cunha 已提交
19
    it { is_expected.to be_truthy }
20 21
  end

22 23 24 25 26 27 28 29 30
  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) }

31
      it { expect(jupyter).to be_not_installable }
32 33 34 35 36 37
    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) }

38
      it { expect(jupyter).to be_installable }
39
    end
W
walkafwalka 已提交
40 41 42 43 44 45 46

    context 'when ingress is installed and external_hostname is assigned' do
      let(:ingress) { create(:clusters_applications_ingress, :installed, external_hostname: 'localhost.localdomain') }
      let(:jupyter) { create(:clusters_applications_jupyter, cluster: ingress.cluster) }

      it { expect(jupyter).to be_installable }
    end
47 48 49 50 51 52 53 54 55 56
  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) }

57
    it 'is initialized with 4 arguments' do
58 59
      expect(subject.name).to eq('jupyter')
      expect(subject.chart).to eq('jupyter/jupyterhub')
60
      expect(subject.version).to eq('0.9-174bbd5')
61
      expect(subject).to be_rbac
62
      expect(subject.repository).to eq('https://jupyterhub.github.io/helm-chart/')
63
      expect(subject.files).to eq(jupyter.files)
64
    end
65

66
    context 'on a non rbac enabled cluster' do
67
      before do
68
        jupyter.cluster.platform_kubernetes.abac!
69 70
      end

71
      it { is_expected.not_to be_rbac }
72 73
    end

74 75 76
    context 'application failed to install previously' do
      let(:jupyter) { create(:clusters_applications_jupyter, :errored, version: '0.0.1') }

77
      it 'is initialized with the locked version' do
78
        expect(subject.version).to eq('0.9-174bbd5')
79 80
      end
    end
81 82
  end

83
  describe '#files' do
84 85
    let(:cluster) { create(:cluster, :with_installed_helm, :provided_by_gcp, :project) }
    let(:application) { create(:clusters_applications_jupyter, cluster: cluster) }
86
    let(:values) { subject[:'values.yaml'] }
87

88 89
    subject { application.files }

90 91 92 93 94 95 96 97 98 99 100 101 102 103
    context 'when cluster belongs to a project' do
      it 'includes valid values' do
        expect(values).to include('ingress')
        expect(values).to include('hub')
        expect(values).to include('proxy')
        expect(values).to include('auth')
        expect(values).to include('singleuser')
        expect(values).to match(/clientId: '?#{application.oauth_application.uid}/)
        expect(values).to match(/callbackUrl: '?#{application.callback_url}/)
        expect(values).to include("gitlabProjectIdWhitelist:\n    - #{application.cluster.project.id}")
        expect(values).to include("c.GitLabOAuthenticator.scope = ['api read_repository write_repository']")
        expect(values).to match(/GITLAB_HOST: '?#{Gitlab.config.gitlab.host}/)
        expect(values).to match(/GITLAB_CLUSTER_ID: '?#{application.cluster.id}/)
      end
104
    end
105

106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
    context 'when cluster belongs to a group' do
      let(:group) { create(:group) }
      let(:cluster) { create(:cluster, :with_installed_helm, :provided_by_gcp, :group, groups: [group]) }

      it 'includes valid values' do
        expect(values).to include('ingress')
        expect(values).to include('hub')
        expect(values).to include('proxy')
        expect(values).to include('auth')
        expect(values).to include('singleuser')
        expect(values).to match(/clientId: '?#{application.oauth_application.uid}/)
        expect(values).to match(/callbackUrl: '?#{application.callback_url}/)
        expect(values).to include("gitlabGroupWhitelist:\n    - #{group.to_param}")
        expect(values).to include("c.GitLabOAuthenticator.scope = ['api read_repository write_repository']")
        expect(values).to match(/GITLAB_HOST: '?#{Gitlab.config.gitlab.host}/)
121 122 123
        expect(values).to match(/GITLAB_CLUSTER_ID: '?#{application.cluster.id}/)
      end
    end
124 125
  end
end