summaryrefslogtreecommitdiff
path: root/spec/models
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-09-27 14:21:38 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-09-27 14:21:38 +0000
commitf7e28d265cb088c3a0293f459bd81284ec2a8fa7 (patch)
treea463f34b04cb7b49f7f8e3c8abfd378c4f28e9fd /spec/models
parent3fe6f2ceb8dbe2928f14bfe9bd11555e80e4d612 (diff)
parent02129c294d4f749d04835d231a24e81850347ebb (diff)
downloadgitlab-ce-f7e28d265cb088c3a0293f459bd81284ec2a8fa7.tar.gz
Merge branch 'dz-expose-cluster-id-to-jupyter' into 'master'
Add GitLab cluster id to jupyter config Closes #51474 and #51594 See merge request gitlab-org/gitlab-ce!21796
Diffstat (limited to 'spec/models')
-rw-r--r--spec/models/clusters/applications/jupyter_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/models/clusters/applications/jupyter_spec.rb b/spec/models/clusters/applications/jupyter_spec.rb
index 591a01d78a9..9c4396731eb 100644
--- a/spec/models/clusters/applications/jupyter_spec.rb
+++ b/spec/models/clusters/applications/jupyter_spec.rb
@@ -108,8 +108,15 @@ describe Clusters::Applications::Jupyter do
expect(values).to include('rbac')
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}/)
end
+
+ 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
end
end