Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/requests/admin/clusters/integrations_controller_spec.rb')
-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