2020-01-29 10:08:59 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe 'Project navbar' do
|
2020-03-19 11:09:41 -04:00
|
|
|
include NavbarStructureHelper
|
2020-04-10 08:09:36 -04:00
|
|
|
include WaitForRequests
|
2020-01-29 10:08:59 -05:00
|
|
|
|
2020-03-19 11:09:41 -04:00
|
|
|
include_context 'project navbar structure'
|
2020-01-29 10:08:59 -05:00
|
|
|
|
2020-03-19 11:09:41 -04:00
|
|
|
let_it_be(:project) { create(:project, :repository) }
|
2020-02-21 04:09:01 -05:00
|
|
|
|
2022-01-24 19:11:49 -05:00
|
|
|
let(:user) { project.first_owner }
|
2020-07-21 08:09:30 -04:00
|
|
|
|
2021-05-14 05:10:24 -04:00
|
|
|
before do
|
2020-02-21 04:09:01 -05:00
|
|
|
sign_in(user)
|
2020-01-29 10:08:59 -05:00
|
|
|
|
2021-06-22 15:11:50 -04:00
|
|
|
stub_config(registry: { enabled: false })
|
2022-03-10 16:08:21 -05:00
|
|
|
stub_feature_flags(harbor_registry_integration: false)
|
2022-04-29 05:09:48 -04:00
|
|
|
insert_package_nav(_('Deployments'))
|
2021-06-22 15:11:50 -04:00
|
|
|
insert_infrastructure_registry_nav
|
2021-09-29 14:12:42 -04:00
|
|
|
insert_infrastructure_google_cloud_nav
|
2021-06-22 15:11:50 -04:00
|
|
|
end
|
2021-05-26 08:10:41 -04:00
|
|
|
|
2021-06-22 15:11:50 -04:00
|
|
|
it_behaves_like 'verified navigation bar' do
|
2020-02-21 04:09:01 -05:00
|
|
|
before do
|
2021-06-22 15:11:50 -04:00
|
|
|
visit project_path(project)
|
2020-01-29 10:08:59 -05:00
|
|
|
end
|
2021-06-22 15:11:50 -04:00
|
|
|
end
|
2020-02-21 04:09:01 -05:00
|
|
|
|
2021-06-22 15:11:50 -04:00
|
|
|
context 'when value stream is available' do
|
|
|
|
before do
|
|
|
|
visit project_path(project)
|
2020-04-10 08:09:36 -04:00
|
|
|
end
|
|
|
|
|
2021-06-22 15:11:50 -04:00
|
|
|
it 'redirects to value stream when Analytics item is clicked' do
|
|
|
|
page.within('.sidebar-top-level-items') do
|
|
|
|
find('.shortcuts-analytics').click
|
2020-04-10 08:09:36 -04:00
|
|
|
end
|
|
|
|
|
2021-06-22 15:11:50 -04:00
|
|
|
wait_for_requests
|
2020-04-10 08:09:36 -04:00
|
|
|
|
2021-06-22 15:11:50 -04:00
|
|
|
expect(page).to have_current_path(project_cycle_analytics_path(project))
|
2020-05-11 08:10:28 -04:00
|
|
|
end
|
|
|
|
end
|
2021-04-27 11:09:52 -04:00
|
|
|
|
2021-06-22 15:11:50 -04:00
|
|
|
context 'when pages are available' do
|
|
|
|
before do
|
|
|
|
stub_config(pages: { enabled: true })
|
2021-05-18 11:10:46 -04:00
|
|
|
|
2021-06-22 15:11:50 -04:00
|
|
|
insert_after_sub_nav_item(
|
2022-09-05 20:12:24 -04:00
|
|
|
_('Packages and registries'),
|
2021-06-22 15:11:50 -04:00
|
|
|
within: _('Settings'),
|
|
|
|
new_sub_nav_item_name: _('Pages')
|
|
|
|
)
|
2021-05-05 14:10:31 -04:00
|
|
|
|
2021-06-22 15:11:50 -04:00
|
|
|
visit project_path(project)
|
2021-05-07 14:10:21 -04:00
|
|
|
end
|
|
|
|
|
2021-06-22 15:11:50 -04:00
|
|
|
it_behaves_like 'verified navigation bar'
|
|
|
|
end
|
2021-05-18 11:10:46 -04:00
|
|
|
|
2022-07-19 14:09:21 -04:00
|
|
|
context 'when package registry is available' do
|
|
|
|
before do
|
|
|
|
stub_config(packages: { enabled: true })
|
|
|
|
|
|
|
|
visit project_path(project)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'verified navigation bar'
|
|
|
|
end
|
|
|
|
|
2021-06-22 15:11:50 -04:00
|
|
|
context 'when container registry is available' do
|
2021-04-27 11:09:52 -04:00
|
|
|
before do
|
|
|
|
stub_config(registry: { enabled: true })
|
2021-06-22 15:11:50 -04:00
|
|
|
|
2021-04-27 11:09:52 -04:00
|
|
|
insert_container_nav
|
|
|
|
|
|
|
|
visit project_path(project)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'verified navigation bar'
|
|
|
|
end
|
2022-03-10 16:08:21 -05:00
|
|
|
|
|
|
|
context 'when harbor registry is available' do
|
2022-09-01 14:09:55 -04:00
|
|
|
let_it_be(:harbor_integration) { create(:harbor_integration, project: project) }
|
|
|
|
|
2022-03-10 16:08:21 -05:00
|
|
|
before do
|
|
|
|
stub_feature_flags(harbor_registry_integration: true)
|
|
|
|
|
|
|
|
insert_harbor_registry_nav(_('Infrastructure Registry'))
|
|
|
|
|
|
|
|
visit project_path(project)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'verified navigation bar'
|
|
|
|
end
|
2020-01-29 10:08:59 -05:00
|
|
|
end
|