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/views/layouts/nav/sidebar/_admin.html.haml_spec.rb')
-rw-r--r--spec/views/layouts/nav/sidebar/_admin.html.haml_spec.rb161
1 files changed, 0 insertions, 161 deletions
diff --git a/spec/views/layouts/nav/sidebar/_admin.html.haml_spec.rb b/spec/views/layouts/nav/sidebar/_admin.html.haml_spec.rb
deleted file mode 100644
index 3097598aaca..00000000000
--- a/spec/views/layouts/nav/sidebar/_admin.html.haml_spec.rb
+++ /dev/null
@@ -1,161 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe 'layouts/nav/sidebar/_admin', feature_category: :navigation do
- let(:user) { build(:admin) }
-
- before do
- allow(user).to receive(:can_admin_all_resources?).and_return(true)
- allow(view).to receive(:current_user).and_return(user)
- end
-
- shared_examples 'page has active tab' do |title|
- it "activates #{title} tab" do
- render
-
- expect(rendered).to have_selector('.nav-sidebar .sidebar-top-level-items > li.active', count: 1)
- expect(rendered).to have_css('.nav-sidebar .sidebar-top-level-items > li.active', text: title)
- end
- end
-
- shared_examples 'page has active sub tab' do |title|
- it "activates #{title} sub tab" do
- render
-
- expect(rendered).to have_css('.sidebar-sub-level-items > li.active', text: title)
- end
- end
-
- context 'on home page' do
- before do
- allow(controller).to receive(:controller_name).and_return('dashboard')
- end
-
- it_behaves_like 'page has active tab', 'Overview'
- end
-
- it_behaves_like 'has nav sidebar'
-
- context 'on projects' do
- before do
- allow(controller).to receive(:controller_name).and_return('admin/projects')
- allow(controller).to receive(:controller_path).and_return('admin/projects')
- end
-
- it_behaves_like 'page has active tab', 'Overview'
- it_behaves_like 'page has active sub tab', 'Projects'
- end
-
- context 'on groups' do
- before do
- allow(controller).to receive(:controller_name).and_return('groups')
- end
-
- it_behaves_like 'page has active tab', 'Overview'
- it_behaves_like 'page has active sub tab', 'Groups'
- end
-
- context 'on users' do
- before do
- allow(controller).to receive(:controller_name).and_return('users')
- end
-
- it_behaves_like 'page has active tab', 'Overview'
- it_behaves_like 'page has active sub tab', 'Users'
- end
-
- context 'on topics' do
- before do
- allow(controller).to receive(:controller_name).and_return('admin/topics')
- end
-
- it_behaves_like 'page has active tab', 'Overview'
- it_behaves_like 'page has active sub tab', 'Topics'
- end
-
- context 'on runners' do
- before do
- allow(controller).to receive(:controller_name).and_return('runners')
- end
-
- it_behaves_like 'page has active tab', 'CI/CD'
- it_behaves_like 'page has active sub tab', 'Runners'
- end
-
- context 'on jobs' do
- before do
- allow(controller).to receive(:controller_name).and_return('jobs')
- end
-
- it_behaves_like 'page has active tab', 'CI/CD'
- it_behaves_like 'page has active sub tab', 'Jobs'
- end
-
- context 'on messages' do
- before do
- allow(controller).to receive(:controller_name).and_return('broadcast_messages')
- end
-
- it_behaves_like 'page has active tab', 'Messages'
- end
-
- context 'on analytics' do
- before do
- allow(controller).to receive(:controller_name).and_return('dev_ops_report')
- end
-
- it_behaves_like 'page has active tab', 'Analytics'
- end
-
- context 'on hooks' do
- before do
- allow(controller).to receive(:controller_name).and_return('hooks')
- end
-
- it_behaves_like 'page has active tab', 'Hooks'
- end
-
- context 'on background jobs' do
- before do
- allow(controller).to receive(:controller_name).and_return('background_jobs')
- end
-
- it_behaves_like 'page has active tab', 'Monitoring'
- it_behaves_like 'page has active sub tab', 'Background Jobs'
- end
-
- context 'on settings' do
- let(:gitlab_com?) { false }
-
- before do
- allow(::Gitlab).to receive(:com?) { gitlab_com? }
-
- render
- end
-
- it 'includes General link' do
- expect(rendered).to have_link('General', href: general_admin_application_settings_path)
- end
-
- context 'when GitLab.com' do
- let(:gitlab_com?) { true }
-
- it 'does not include Integrations link' do
- expect(rendered).not_to have_link('Integrations', href: integrations_admin_application_settings_path)
- end
- end
-
- context 'when not GitLab.com' do
- it 'includes Integrations link' do
- expect(rendered).to have_link('Integrations', href: integrations_admin_application_settings_path)
- end
- end
-
- context 'when GitLab FOSS' do
- it 'does not include Templates link' do
- expect(rendered).not_to have_link('Templates', href: '/admin/application_settings/templates')
- end
- end
- end
-end