debian-mirror-gitlab/spec/features/projects/navbar_spec.rb

80 lines
1.7 KiB
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Project navbar' do
2020-04-22 19:07:51 +05:30
include NavbarStructureHelper
include WaitForRequests
2020-03-13 15:44:24 +05:30
2020-04-22 19:07:51 +05:30
include_context 'project navbar structure'
2020-03-13 15:44:24 +05:30
2020-04-22 19:07:51 +05:30
let_it_be(:project) { create(:project, :repository) }
2020-04-08 14:13:33 +05:30
2022-04-04 11:22:00 +05:30
let(:user) { project.first_owner }
2020-10-24 23:57:45 +05:30
2021-06-08 01:23:25 +05:30
before do
2020-04-08 14:13:33 +05:30
sign_in(user)
2021-09-30 23:02:18 +05:30
stub_config(registry: { enabled: false })
insert_package_nav(_('Infrastructure'))
insert_infrastructure_registry_nav
2021-11-18 22:05:49 +05:30
insert_infrastructure_google_cloud_nav
2021-09-30 23:02:18 +05:30
end
2021-09-04 01:27:46 +05:30
2021-09-30 23:02:18 +05:30
it_behaves_like 'verified navigation bar' do
2020-04-08 14:13:33 +05:30
before do
2021-09-30 23:02:18 +05:30
visit project_path(project)
2020-03-13 15:44:24 +05:30
end
2021-09-30 23:02:18 +05:30
end
2020-04-08 14:13:33 +05:30
2021-09-30 23:02:18 +05:30
context 'when value stream is available' do
before do
visit project_path(project)
2020-04-22 19:07:51 +05:30
end
2020-04-08 14:13:33 +05:30
2021-09-30 23:02:18 +05:30
it 'redirects to value stream when Analytics item is clicked' do
page.within('.sidebar-top-level-items') do
find('.shortcuts-analytics').click
2020-04-08 14:13:33 +05:30
end
2021-09-30 23:02:18 +05:30
wait_for_requests
2020-04-22 19:07:51 +05:30
2021-09-30 23:02:18 +05:30
expect(page).to have_current_path(project_cycle_analytics_path(project))
2021-06-08 01:23:25 +05:30
end
2020-04-08 14:13:33 +05:30
end
2020-05-24 23:13:21 +05:30
2021-09-30 23:02:18 +05:30
context 'when pages are available' do
before do
stub_config(pages: { enabled: true })
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
insert_after_sub_nav_item(
_('Monitor'),
within: _('Settings'),
new_sub_nav_item_name: _('Pages')
)
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
visit project_path(project)
2021-06-08 01:23:25 +05:30
end
2021-09-30 23:02:18 +05:30
it_behaves_like 'verified navigation bar'
end
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
context 'when container registry is available' do
2020-05-24 23:13:21 +05:30
before do
stub_config(registry: { enabled: true })
2021-09-30 23:02:18 +05:30
2021-04-29 21:17:54 +05:30
insert_container_nav
2020-10-24 23:57:45 +05:30
2021-06-08 01:23:25 +05:30
insert_after_sub_nav_item(
_('Monitor'),
within: _('Settings'),
new_sub_nav_item_name: _('Packages & Registries')
)
2020-05-24 23:13:21 +05:30
visit project_path(project)
end
it_behaves_like 'verified navigation bar'
end
2020-03-13 15:44:24 +05:30
end