summaryrefslogtreecommitdiff
path: root/spec/requests/admin
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-04-20 23:50:22 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-04-20 23:50:22 +0000
commit9dc93a4519d9d5d7be48ff274127136236a3adb3 (patch)
tree70467ae3692a0e35e5ea56bcb803eb512a10bedb /spec/requests/admin
parent4b0f34b6d759d6299322b3a54453e930c6121ff0 (diff)
downloadgitlab-ce-9dc93a4519d9d5d7be48ff274127136236a3adb3.tar.gz
Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43
Diffstat (limited to 'spec/requests/admin')
-rw-r--r--spec/requests/admin/clusters/integrations_controller_spec.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/spec/requests/admin/clusters/integrations_controller_spec.rb b/spec/requests/admin/clusters/integrations_controller_spec.rb
new file mode 100644
index 00000000000..ee1c1d5aad4
--- /dev/null
+++ b/spec/requests/admin/clusters/integrations_controller_spec.rb
@@ -0,0 +1,25 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Admin::Clusters::IntegrationsController, :enable_admin_mode do
+ include AccessMatchersForController
+
+ shared_examples 'a secure endpoint' do
+ context 'it is allowed for admins only' do
+ it { expect { subject }.to be_allowed_for(:admin) }
+ it { expect { subject }.to be_denied_for(:user) }
+ it { expect { subject }.to be_denied_for(:external) }
+ end
+ end
+
+ describe 'POST create_or_update' do
+ let(:cluster) { create(:cluster, :instance, :provided_by_gcp) }
+ let(:user) { create(:admin) }
+
+ it_behaves_like '#create_or_update action' do
+ let(:path) { create_or_update_admin_cluster_integration_path(cluster) }
+ let(:redirect_path) { admin_cluster_path(cluster, params: { tab: 'integrations' }) }
+ end
+ end
+end