2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
describe NavHelper, :do_not_mock_admin_mode do
|
2018-03-27 19:54:05 +05:30
|
|
|
describe '#header_links' do
|
2019-12-21 20:55:43 +05:30
|
|
|
include_context 'custom session'
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
before do
|
2019-12-21 20:55:43 +05:30
|
|
|
allow(helper).to receive(:session).and_return(session)
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the user is logged in' do
|
2019-12-21 20:55:43 +05:30
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:current_user_mode) { Gitlab::Auth::CurrentUserMode.new(user) }
|
2018-03-27 19:54:05 +05:30
|
|
|
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:current_user).and_return(user)
|
2019-12-21 20:55:43 +05:30
|
|
|
allow(helper).to receive(:current_user_mode).and_return(current_user_mode)
|
2018-03-27 19:54:05 +05:30
|
|
|
allow(helper).to receive(:can?) { true }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has all the expected links by default' do
|
|
|
|
menu_items = [:user_dropdown, :search, :issues, :merge_requests, :todos]
|
|
|
|
|
|
|
|
expect(helper.header_links).to contain_exactly(*menu_items)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the impersonation link while impersonating' do
|
|
|
|
expect(helper).to receive(:session) { { impersonator_id: 1 } }
|
|
|
|
|
|
|
|
expect(helper.header_links).to include(:admin_impersonation)
|
|
|
|
end
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
context 'as admin' do
|
|
|
|
let(:user) { create(:user, :admin) }
|
|
|
|
|
|
|
|
context 'feature flag :user_mode_in_session is enabled' do
|
|
|
|
it 'does not contain the admin mode link by default' do
|
|
|
|
expect(helper.header_links).not_to include(:admin_mode)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with admin mode enabled' do
|
|
|
|
before do
|
2020-01-01 13:55:28 +05:30
|
|
|
current_user_mode.request_admin_mode!
|
2019-12-21 20:55:43 +05:30
|
|
|
current_user_mode.enable_admin_mode!(password: user.password)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains the admin mode link' do
|
|
|
|
expect(helper.header_links).to include(:admin_mode)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'feature flag :user_mode_in_session is disabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(user_mode_in_session: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not contain the admin mode link' do
|
|
|
|
expect(helper.header_links).not_to include(:admin_mode)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with admin mode enabled' do
|
|
|
|
before do
|
2020-01-01 13:55:28 +05:30
|
|
|
current_user_mode.request_admin_mode!
|
2019-12-21 20:55:43 +05:30
|
|
|
current_user_mode.enable_admin_mode!(password: user.password)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has no effect on header links' do
|
|
|
|
expect(helper.header_links).not_to include(:admin_mode)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
context 'when the user cannot read cross project' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:can?).with(user, :read_cross_project) { false }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not contain cross project elements when the user cannot read cross project' do
|
|
|
|
expect(helper.header_links).not_to include(:issues, :merge_requests, :todos, :search)
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
it 'shows the search box when the user cannot read cross project and they are visiting a project' do
|
2018-03-27 19:54:05 +05:30
|
|
|
helper.instance_variable_set(:@project, create(:project))
|
|
|
|
|
|
|
|
expect(helper.header_links).to include(:search)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
context 'when the user is not logged in' do
|
|
|
|
let(:current_user_mode) { Gitlab::Auth::CurrentUserMode.new(nil) }
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
before do
|
|
|
|
allow(helper).to receive(:current_user).and_return(nil)
|
|
|
|
allow(helper).to receive(:current_user_mode).and_return(current_user_mode)
|
|
|
|
allow(helper).to receive(:can?).with(nil, :read_cross_project) { true }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns only the sign in and search when the user is not logged in' do
|
|
|
|
expect(helper.header_links).to contain_exactly(:sign_in, :search)
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
end
|
2019-09-04 21:01:54 +05:30
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
describe '.admin_monitoring_nav_links' do
|
2019-09-04 21:01:54 +05:30
|
|
|
subject { helper.admin_monitoring_nav_links }
|
|
|
|
|
|
|
|
it { is_expected.to all(be_a(String)) }
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
describe '.group_issues_sub_menu_items' do
|
2019-09-04 21:01:54 +05:30
|
|
|
subject { helper.group_issues_sub_menu_items }
|
|
|
|
|
|
|
|
it { is_expected.to all(be_a(String)) }
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|