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/features/operations_sidebar_link_spec.rb')
-rw-r--r--spec/features/operations_sidebar_link_spec.rb144
1 files changed, 0 insertions, 144 deletions
diff --git a/spec/features/operations_sidebar_link_spec.rb b/spec/features/operations_sidebar_link_spec.rb
deleted file mode 100644
index 798f9092db0..00000000000
--- a/spec/features/operations_sidebar_link_spec.rb
+++ /dev/null
@@ -1,144 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe 'Operations dropdown sidebar', :aggregate_failures do
- let_it_be_with_reload(:project) { create(:project, :internal, :repository) }
- let(:user) { create(:user) }
- let(:access_level) { ProjectFeature::PUBLIC }
- let(:role) { nil }
-
- before do
- project.add_role(user, role) if role
- project.project_feature.update_attribute(:operations_access_level, access_level)
-
- sign_in(user)
- visit project_issues_path(project)
- end
-
- shared_examples 'shows Operations menu based on the access level' do
- context 'when operations project feature is PRIVATE' do
- let(:access_level) { ProjectFeature::PRIVATE }
-
- it 'shows the `Operations` menu' do
- expect(page).to have_selector('a.shortcuts-operations', text: 'Operations')
- end
- end
-
- context 'when operations project feature is DISABLED' do
- let(:access_level) { ProjectFeature::DISABLED }
-
- it 'does not show the `Operations` menu' do
- expect(page).not_to have_selector('a.shortcuts-operations')
- end
- end
- end
-
- context 'user is not a member' do
- it 'has the correct `Operations` menu items', :aggregate_failures do
- expect(page).to have_selector('a.shortcuts-operations', text: 'Operations')
- expect(page).to have_link(title: 'Incidents', href: project_incidents_path(project))
- expect(page).to have_link(title: 'Environments', href: project_environments_path(project))
-
- expect(page).not_to have_link(title: 'Metrics', href: project_metrics_dashboard_path(project))
- expect(page).not_to have_link(title: 'Alerts', href: project_alert_management_index_path(project))
- expect(page).not_to have_link(title: 'Error Tracking', href: project_error_tracking_index_path(project))
- expect(page).not_to have_link(title: 'Product Analytics', href: project_product_analytics_path(project))
- expect(page).not_to have_link(title: 'Serverless', href: project_serverless_functions_path(project))
- expect(page).not_to have_link(title: 'Logs', href: project_logs_path(project))
- expect(page).not_to have_link(title: 'Kubernetes', href: project_clusters_path(project))
- end
-
- context 'when operations project feature is PRIVATE' do
- let(:access_level) { ProjectFeature::PRIVATE }
-
- it 'does not show the `Operations` menu' do
- expect(page).not_to have_selector('a.shortcuts-operations')
- end
- end
-
- context 'when operations project feature is DISABLED' do
- let(:access_level) { ProjectFeature::DISABLED }
-
- it 'does not show the `Operations` menu' do
- expect(page).not_to have_selector('a.shortcuts-operations')
- end
- end
- end
-
- context 'user has guest role' do
- let(:role) { :guest }
-
- it 'has the correct `Operations` menu items' do
- expect(page).to have_selector('a.shortcuts-operations', text: 'Operations')
- expect(page).to have_link(title: 'Incidents', href: project_incidents_path(project))
- expect(page).to have_link(title: 'Environments', href: project_environments_path(project))
-
- expect(page).not_to have_link(title: 'Metrics', href: project_metrics_dashboard_path(project))
- expect(page).not_to have_link(title: 'Alerts', href: project_alert_management_index_path(project))
- expect(page).not_to have_link(title: 'Error Tracking', href: project_error_tracking_index_path(project))
- expect(page).not_to have_link(title: 'Product Analytics', href: project_product_analytics_path(project))
- expect(page).not_to have_link(title: 'Serverless', href: project_serverless_functions_path(project))
- expect(page).not_to have_link(title: 'Logs', href: project_logs_path(project))
- expect(page).not_to have_link(title: 'Kubernetes', href: project_clusters_path(project))
- end
-
- it_behaves_like 'shows Operations menu based on the access level'
- end
-
- context 'user has reporter role' do
- let(:role) { :reporter }
-
- it 'has the correct `Operations` menu items' do
- expect(page).to have_link(title: 'Metrics', href: project_metrics_dashboard_path(project))
- expect(page).to have_link(title: 'Incidents', href: project_incidents_path(project))
- expect(page).to have_link(title: 'Environments', href: project_environments_path(project))
- expect(page).to have_link(title: 'Error Tracking', href: project_error_tracking_index_path(project))
- expect(page).to have_link(title: 'Product Analytics', href: project_product_analytics_path(project))
-
- expect(page).not_to have_link(title: 'Alerts', href: project_alert_management_index_path(project))
- expect(page).not_to have_link(title: 'Serverless', href: project_serverless_functions_path(project))
- expect(page).not_to have_link(title: 'Logs', href: project_logs_path(project))
- expect(page).not_to have_link(title: 'Kubernetes', href: project_clusters_path(project))
- end
-
- it_behaves_like 'shows Operations menu based on the access level'
- end
-
- context 'user has developer role' do
- let(:role) { :developer }
-
- it 'has the correct `Operations` menu items' do
- expect(page).to have_link(title: 'Metrics', href: project_metrics_dashboard_path(project))
- expect(page).to have_link(title: 'Alerts', href: project_alert_management_index_path(project))
- expect(page).to have_link(title: 'Incidents', href: project_incidents_path(project))
- expect(page).to have_link(title: 'Environments', href: project_environments_path(project))
- expect(page).to have_link(title: 'Error Tracking', href: project_error_tracking_index_path(project))
- expect(page).to have_link(title: 'Product Analytics', href: project_product_analytics_path(project))
- expect(page).to have_link(title: 'Logs', href: project_logs_path(project))
-
- expect(page).not_to have_link(title: 'Serverless', href: project_serverless_functions_path(project))
- expect(page).not_to have_link(title: 'Kubernetes', href: project_clusters_path(project))
- end
-
- it_behaves_like 'shows Operations menu based on the access level'
- end
-
- context 'user has maintainer role' do
- let(:role) { :maintainer }
-
- it 'has the correct `Operations` menu items' do
- expect(page).to have_link(title: 'Metrics', href: project_metrics_dashboard_path(project))
- expect(page).to have_link(title: 'Alerts', href: project_alert_management_index_path(project))
- expect(page).to have_link(title: 'Incidents', href: project_incidents_path(project))
- expect(page).to have_link(title: 'Environments', href: project_environments_path(project))
- expect(page).to have_link(title: 'Error Tracking', href: project_error_tracking_index_path(project))
- expect(page).to have_link(title: 'Product Analytics', href: project_product_analytics_path(project))
- expect(page).to have_link(title: 'Serverless', href: project_serverless_functions_path(project))
- expect(page).to have_link(title: 'Logs', href: project_logs_path(project))
- expect(page).to have_link(title: 'Kubernetes', href: project_clusters_path(project))
- end
-
- it_behaves_like 'shows Operations menu based on the access level'
- end
-end