2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe ApplicationHelper do
|
2023-03-04 22:38:38 +05:30
|
|
|
include Devise::Test::ControllerHelpers
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
describe 'current_controller?' do
|
2018-12-05 23:21:45 +05:30
|
|
|
before do
|
2015-09-11 14:41:01 +05:30
|
|
|
stub_controller_name('foo')
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
it 'returns true when controller matches argument' do
|
|
|
|
expect(helper.current_controller?(:foo)).to be_truthy
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
it 'returns false when controller does not match argument' do
|
2018-12-05 23:21:45 +05:30
|
|
|
expect(helper.current_controller?(:bar)).to be_falsey
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'takes any number of arguments' do
|
2018-12-05 23:21:45 +05:30
|
|
|
expect(helper.current_controller?(:baz, :bar)).to be_falsey
|
|
|
|
expect(helper.current_controller?(:baz, :bar, :foo)).to be_truthy
|
|
|
|
end
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
context 'when namespaced' do
|
|
|
|
before do
|
|
|
|
stub_controller_path('bar/foo')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true when controller matches argument' do
|
|
|
|
expect(helper.current_controller?(:foo)).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true when controller and namespace matches argument in path notation' do
|
|
|
|
expect(helper.current_controller?('bar/foo')).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false when namespace doesnt match' do
|
|
|
|
expect(helper.current_controller?('foo/foo')).to be_falsey
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
def stub_controller_name(value)
|
|
|
|
allow(helper.controller).to receive(:controller_name).and_return(value)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
def stub_controller_path(value)
|
|
|
|
allow(helper.controller).to receive(:controller_path).and_return(value)
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe 'current_action?' do
|
2018-12-05 23:21:45 +05:30
|
|
|
before do
|
2015-09-11 14:41:01 +05:30
|
|
|
stub_action_name('foo')
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
it 'returns true when action matches' do
|
|
|
|
expect(helper.current_action?(:foo)).to be_truthy
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
it 'returns false when action does not match' do
|
2018-12-05 23:21:45 +05:30
|
|
|
expect(helper.current_action?(:bar)).to be_falsey
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
it 'takes any number of arguments' do
|
2018-12-05 23:21:45 +05:30
|
|
|
expect(helper.current_action?(:baz, :bar)).to be_falsey
|
|
|
|
expect(helper.current_action?(:baz, :bar, :foo)).to be_truthy
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
def stub_action_name(value)
|
|
|
|
allow(helper).to receive(:action_name).and_return(value)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
describe '#admin_section?' do
|
|
|
|
context 'when controller is under the admin namespace' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:controller).and_return(Admin::UsersController.new)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true' do
|
|
|
|
expect(helper.admin_section?).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when controller is not under the admin namespace' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:controller).and_return(UsersController.new)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true' do
|
|
|
|
expect(helper.admin_section?).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
describe 'simple_sanitize' do
|
2014-09-02 18:07:02 +05:30
|
|
|
let(:a_tag) { '<a href="#">Foo</a>' }
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
it 'allows the a tag' do
|
2015-09-11 14:41:01 +05:30
|
|
|
expect(helper.simple_sanitize(a_tag)).to eq(a_tag)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
it 'allows the span tag' do
|
2014-09-02 18:07:02 +05:30
|
|
|
input = '<span class="foo">Bar</span>'
|
2015-09-11 14:41:01 +05:30
|
|
|
expect(helper.simple_sanitize(input)).to eq(input)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
it 'disallows other tags' do
|
2014-09-02 18:07:02 +05:30
|
|
|
input = "<strike><b>#{a_tag}</b></strike>"
|
2015-09-11 14:41:01 +05:30
|
|
|
expect(helper.simple_sanitize(input)).to eq(a_tag)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
describe 'time_ago_with_tooltip' do
|
2020-05-24 23:13:21 +05:30
|
|
|
around do |example|
|
|
|
|
Time.use_zone('UTC') { example.run }
|
|
|
|
end
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
def element(**arguments)
|
2017-08-17 22:00:37 +05:30
|
|
|
@time = Time.zone.parse('2015-07-02 08:23')
|
2021-02-22 17:27:13 +05:30
|
|
|
element = helper.time_ago_with_tooltip(@time, **arguments)
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
|
|
Nokogiri::HTML::DocumentFragment.parse(element).first_element_child
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a time element' do
|
|
|
|
expect(element.name).to eq 'time'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes the date string' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(element.text).to eq @time.strftime("%b %d, %Y")
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a datetime attribute' do
|
2016-01-14 18:37:52 +05:30
|
|
|
expect(element.attr('datetime')).to eq '2015-07-02T08:23:00Z'
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
it 'has a formatted title attribute' do
|
2016-01-14 18:37:52 +05:30
|
|
|
expect(element.attr('title')).to eq 'Jul 2, 2015 8:23am'
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
it 'includes a default js-timeago class' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(element.attr('class')).to eq 'js-timeago'
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
it 'accepts a custom html_class' do
|
2018-12-05 23:21:45 +05:30
|
|
|
expect(element(html_class: 'custom_class').attr('class')).to eq 'js-timeago custom_class'
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
it 'accepts a custom tooltip placement' do
|
|
|
|
expect(element(placement: 'bottom').attr('data-placement')).to eq 'bottom'
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
it 'converts to Time' do
|
|
|
|
expect { helper.time_ago_with_tooltip(Date.today) }.not_to raise_error
|
|
|
|
end
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
it 'add class for the short format' do
|
2016-09-13 17:45:13 +05:30
|
|
|
timeago_element = element(short_format: 'short')
|
2018-12-05 23:21:45 +05:30
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
expect(timeago_element.attr('class')).to eq 'js-short-timeago'
|
|
|
|
expect(timeago_element.next_element).to eq nil
|
|
|
|
end
|
2023-03-17 16:20:25 +05:30
|
|
|
|
|
|
|
it 'returns blank if time is nil' do
|
|
|
|
el = helper.time_ago_with_tooltip(nil)
|
|
|
|
|
|
|
|
expect(el).to eq('')
|
|
|
|
expect(el.html_safe).to eq('')
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
describe '#active_when' do
|
|
|
|
it { expect(helper.active_when(true)).to eq('active') }
|
|
|
|
it { expect(helper.active_when(false)).to eq(nil) }
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
unless Gitlab.jh?
|
|
|
|
describe '#promo_host' do
|
|
|
|
subject { helper.promo_host }
|
2020-10-24 23:57:45 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
it 'returns the url' do
|
|
|
|
is_expected.to eq('about.gitlab.com')
|
|
|
|
end
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#promo_url' do
|
|
|
|
subject { helper.promo_url }
|
|
|
|
|
|
|
|
it 'returns the url' do
|
2021-04-29 21:17:54 +05:30
|
|
|
is_expected.to eq("https://#{helper.promo_host}")
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'changes if promo_host changes' do
|
|
|
|
allow(helper).to receive(:promo_host).and_return('foobar.baz')
|
|
|
|
|
|
|
|
is_expected.to eq('https://foobar.baz')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-08-27 11:52:29 +05:30
|
|
|
describe '#community_forum' do
|
|
|
|
subject { helper.community_forum }
|
|
|
|
|
|
|
|
it 'returns the url' do
|
|
|
|
is_expected.to eq("https://forum.gitlab.com")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
describe '#support_url' do
|
|
|
|
context 'when alternate support url is specified' do
|
2023-04-23 21:23:45 +05:30
|
|
|
let(:alternate_url) { 'http://company.example.com/get-help' }
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
it 'returns the alternate support url' do
|
2017-09-10 17:25:29 +05:30
|
|
|
stub_application_setting(help_page_support_url: alternate_url)
|
|
|
|
|
|
|
|
expect(helper.support_url).to eq(alternate_url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when alternate support url is not specified' do
|
|
|
|
it 'builds the support url from the promo_url' do
|
2023-04-23 21:23:45 +05:30
|
|
|
expect(helper.support_url).to eq(helper.promo_url + '/get-help/')
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
describe '#instance_review_permitted?' do
|
2023-03-17 16:20:25 +05:30
|
|
|
shared_examples 'returns expected result depending on instance setting' do |instance_setting, expected_result|
|
|
|
|
before do
|
|
|
|
allow(::Gitlab::CurrentSettings).to receive(:instance_review_permitted?).and_return(instance_setting)
|
|
|
|
allow(helper).to receive(:current_user).and_return(current_user)
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2023-03-17 16:20:25 +05:30
|
|
|
it { is_expected.to be(expected_result) }
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
subject { helper.instance_review_permitted? }
|
|
|
|
|
2023-03-17 16:20:25 +05:30
|
|
|
context 'as admin' do
|
|
|
|
let_it_be(:current_user) { build(:user, :admin) }
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2023-03-17 16:20:25 +05:30
|
|
|
context 'when admin mode setting is disabled', :do_not_mock_admin_mode_setting do
|
|
|
|
it_behaves_like 'returns expected result depending on instance setting', true, true
|
|
|
|
it_behaves_like 'returns expected result depending on instance setting', false, false
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when admin mode setting is enabled' do
|
|
|
|
context 'when in admin mode', :enable_admin_mode do
|
|
|
|
it_behaves_like 'returns expected result depending on instance setting', true, true
|
|
|
|
it_behaves_like 'returns expected result depending on instance setting', false, false
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when not in admin mode' do
|
|
|
|
it_behaves_like 'returns expected result depending on instance setting', true, false
|
|
|
|
it_behaves_like 'returns expected result depending on instance setting', false, false
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
|
|
|
end
|
2023-03-17 16:20:25 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'as normal user' do
|
|
|
|
let_it_be(:current_user) { build(:user) }
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2023-03-17 16:20:25 +05:30
|
|
|
it_behaves_like 'returns expected result depending on instance setting', true, false
|
|
|
|
it_behaves_like 'returns expected result depending on instance setting', false, false
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
describe '#locale_path' do
|
|
|
|
it 'returns the locale path with an `_`' do
|
|
|
|
Gitlab::I18n.with_locale('pt-BR') do
|
|
|
|
expect(helper.locale_path).to include('assets/locale/pt_BR/app')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-10-15 14:42:47 +05:30
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
describe '#client_class_list' do
|
2023-01-13 00:05:48 +05:30
|
|
|
context 'when browser or platform are unknown' do
|
|
|
|
it 'returns string containing CSS classes representing fallbacks' do
|
|
|
|
class_list = helper.client_class_list
|
|
|
|
expect(class_list).to eq('gl-browser-generic gl-platform-other')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when browser and platform are known' do
|
|
|
|
before do
|
|
|
|
allow(helper.controller).to receive(:browser).and_return(::Browser.new('Google Chrome/Linux'))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns string containing CSS classes representing them' do
|
|
|
|
class_list = helper.client_class_list
|
|
|
|
expect(class_list).to eq('gl-browser-chrome gl-platform-linux')
|
|
|
|
end
|
2019-03-02 22:35:43 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#client_js_flags' do
|
2023-01-13 00:05:48 +05:30
|
|
|
context 'when browser or platform are unknown' do
|
|
|
|
it 'returns map containing JS flags representing falllbacks' do
|
|
|
|
flags_list = helper.client_js_flags
|
|
|
|
expect(flags_list[:isGeneric]).to eq(true)
|
|
|
|
expect(flags_list[:isOther]).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when browser and platform are known' do
|
|
|
|
before do
|
|
|
|
allow(helper.controller).to receive(:browser).and_return(::Browser.new('Google Chrome/Linux'))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns map containing JS flags representing client browser and platform' do
|
|
|
|
flags_list = helper.client_js_flags
|
|
|
|
expect(flags_list[:isChrome]).to eq(true)
|
|
|
|
expect(flags_list[:isLinux]).to eq(true)
|
|
|
|
end
|
2019-03-02 22:35:43 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
describe '#page_startup_api_calls' do
|
|
|
|
it 'returns map containing JS Page Startup Calls' do
|
|
|
|
helper.add_page_startup_api_call("testURL")
|
|
|
|
|
|
|
|
startup_calls = helper.page_startup_api_calls
|
|
|
|
|
|
|
|
expect(startup_calls["testURL"]).to eq({})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
describe '#autocomplete_data_sources' do
|
2021-06-08 01:23:25 +05:30
|
|
|
context 'group' do
|
|
|
|
let(:group) { create(:group) }
|
|
|
|
let(:noteable_type) { Issue }
|
|
|
|
|
|
|
|
it 'returns paths for autocomplete_sources_controller' do
|
|
|
|
sources = helper.autocomplete_data_sources(group, noteable_type)
|
|
|
|
expect(sources.keys).to include(:members, :issues, :mergeRequests, :labels, :milestones, :commands)
|
|
|
|
sources.keys.each do |key|
|
|
|
|
expect(sources[key]).not_to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'project' do
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:noteable_type) { Issue }
|
2018-12-05 23:21:45 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
it 'returns paths for autocomplete_sources_controller' do
|
|
|
|
sources = helper.autocomplete_data_sources(project, noteable_type)
|
2022-04-04 11:22:00 +05:30
|
|
|
expect(sources.keys).to match_array([:members, :issues, :mergeRequests, :labels, :milestones, :commands, :snippets, :contacts])
|
2021-06-08 01:23:25 +05:30
|
|
|
sources.keys.each do |key|
|
|
|
|
expect(sources[key]).not_to be_nil
|
|
|
|
end
|
2018-10-15 14:42:47 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
|
|
|
describe '#external_storage_url_or_path' do
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
|
|
|
|
context 'when external storage is disabled' do
|
|
|
|
it 'returns the passed path' do
|
|
|
|
expect(helper.external_storage_url_or_path('/foo/bar', project)).to eq('/foo/bar')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
context 'when @snippet is set' do
|
|
|
|
it 'returns the passed path' do
|
|
|
|
snippet = create(:snippet)
|
|
|
|
assign(:snippet, snippet)
|
|
|
|
|
|
|
|
expect(helper.external_storage_url_or_path('/foo/bar', project)).to eq('/foo/bar')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
context 'when external storage is enabled' do
|
|
|
|
let(:user) { create(:user, static_object_token: 'hunter1') }
|
|
|
|
|
|
|
|
before do
|
2021-04-29 21:17:54 +05:30
|
|
|
stub_application_setting(static_objects_external_storage_url: 'https://cdn.gitlab.com')
|
2019-12-04 20:38:33 +05:30
|
|
|
allow(helper).to receive(:current_user).and_return(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the external storage URL prepended to the path' do
|
|
|
|
expect(helper.external_storage_url_or_path('/foo/bar', project)).to eq("https://cdn.gitlab.com/foo/bar?token=#{user.static_object_token}")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'preserves the path query parameters' do
|
|
|
|
url = helper.external_storage_url_or_path('/foo/bar?unicode=1', project)
|
|
|
|
|
|
|
|
expect(url).to eq("https://cdn.gitlab.com/foo/bar?token=#{user.static_object_token}&unicode=1")
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when project is public' do
|
|
|
|
let(:project) { create(:project, :public) }
|
|
|
|
|
|
|
|
it 'returns does not append a token parameter' do
|
|
|
|
expect(helper.external_storage_url_or_path('/foo/bar', project)).to eq('https://cdn.gitlab.com/foo/bar')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
describe '#body_data' do
|
|
|
|
context 'when @project is not set' do
|
|
|
|
it 'does not include project data in the body data elements' do
|
|
|
|
expect(helper.body_data).to eq(
|
|
|
|
{
|
|
|
|
page: 'application',
|
|
|
|
page_type_id: nil,
|
|
|
|
find_file: nil,
|
2020-06-23 00:09:42 +05:30
|
|
|
group: nil
|
2020-01-01 13:55:28 +05:30
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when @group is set' do
|
|
|
|
it 'sets group in the body data elements' do
|
|
|
|
group = create(:group)
|
|
|
|
|
|
|
|
assign(:group, group)
|
|
|
|
|
|
|
|
expect(helper.body_data).to eq(
|
|
|
|
{
|
|
|
|
page: 'application',
|
|
|
|
page_type_id: nil,
|
|
|
|
find_file: nil,
|
|
|
|
group: group.path
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when @project is set' do
|
2020-05-01 12:34:13 +05:30
|
|
|
let_it_be(:project) { create(:project, :repository) }
|
|
|
|
let_it_be(:user) { create(:user) }
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2020-05-01 12:34:13 +05:30
|
|
|
before do
|
2020-01-01 13:55:28 +05:30
|
|
|
assign(:project, project)
|
2020-05-01 12:34:13 +05:30
|
|
|
allow(helper).to receive(:current_user).and_return(nil)
|
|
|
|
end
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2020-05-01 12:34:13 +05:30
|
|
|
it 'includes all possible body data elements and associates the project elements with project' do
|
2023-03-04 22:38:38 +05:30
|
|
|
expect(helper).to receive(:can?).with(nil, :read_code, project)
|
2020-01-01 13:55:28 +05:30
|
|
|
expect(helper.body_data).to eq(
|
|
|
|
{
|
|
|
|
page: 'application',
|
|
|
|
page_type_id: nil,
|
|
|
|
find_file: nil,
|
2020-06-23 00:09:42 +05:30
|
|
|
group: nil,
|
2020-01-01 13:55:28 +05:30
|
|
|
project_id: project.id,
|
2023-07-09 08:55:56 +05:30
|
|
|
project: project.path,
|
2020-01-01 13:55:28 +05:30
|
|
|
namespace_id: project.namespace.id
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
context 'when @project is owned by a group' do
|
|
|
|
let_it_be(:project) { create(:project, :repository, group: create(:group)) }
|
|
|
|
|
|
|
|
it 'includes all possible body data elements and associates the project elements with project' do
|
2023-03-04 22:38:38 +05:30
|
|
|
expect(helper).to receive(:can?).with(nil, :read_code, project)
|
2020-06-23 00:09:42 +05:30
|
|
|
expect(helper.body_data).to eq(
|
|
|
|
{
|
|
|
|
page: 'application',
|
|
|
|
page_type_id: nil,
|
|
|
|
find_file: nil,
|
|
|
|
group: project.group.name,
|
|
|
|
project_id: project.id,
|
2023-07-09 08:55:56 +05:30
|
|
|
project: project.path,
|
2020-06-23 00:09:42 +05:30
|
|
|
namespace_id: project.namespace.id
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
context 'when controller is issues' do
|
|
|
|
before do
|
|
|
|
stub_controller_method(:controller_path, 'projects:issues')
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when params[:id] is present and the issue exsits and action_name is show' do
|
|
|
|
it 'sets all project and id elements correctly related to the issue' do
|
2020-05-01 12:34:13 +05:30
|
|
|
issue = create(:issue, project: project)
|
2020-01-01 13:55:28 +05:30
|
|
|
stub_controller_method(:action_name, 'show')
|
|
|
|
stub_controller_method(:params, { id: issue.id })
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
expect(helper).to receive(:can?).with(nil, :read_code, project).and_return(false)
|
2020-01-01 13:55:28 +05:30
|
|
|
expect(helper.body_data).to eq(
|
|
|
|
{
|
|
|
|
page: 'projects:issues:show',
|
|
|
|
page_type_id: issue.id,
|
|
|
|
find_file: nil,
|
2020-06-23 00:09:42 +05:30
|
|
|
group: nil,
|
2020-01-01 13:55:28 +05:30
|
|
|
project_id: issue.project.id,
|
2023-07-09 08:55:56 +05:30
|
|
|
project: issue.project.path,
|
2020-01-01 13:55:28 +05:30
|
|
|
namespace_id: issue.project.namespace.id
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-05-01 12:34:13 +05:30
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
describe 'find_file attribute' do
|
|
|
|
subject { helper.body_data[:find_file] }
|
|
|
|
|
|
|
|
before do
|
2020-05-01 12:34:13 +05:30
|
|
|
allow(helper).to receive(:current_user).and_return(user)
|
2023-03-04 22:38:38 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the project has no repository' do
|
|
|
|
before do
|
|
|
|
allow(project).to receive(:empty_repo?).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
2020-05-01 12:34:13 +05:30
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
context 'when user cannot read_code for the project' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:can?).with(user, :read_code, project).and_return(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when current_user has read_code permission' do
|
|
|
|
it 'returns find_file with the default branch' do
|
|
|
|
expect(helper).to receive(:can?).with(user, :read_code, project).and_return(true)
|
|
|
|
expect(subject).to end_with(project.default_branch)
|
|
|
|
end
|
2020-05-01 12:34:13 +05:30
|
|
|
end
|
|
|
|
end
|
2020-01-01 13:55:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def stub_controller_method(method_name, value)
|
|
|
|
allow(helper.controller).to receive(method_name).and_return(value)
|
|
|
|
end
|
|
|
|
end
|
2021-10-27 15:23:28 +05:30
|
|
|
|
2023-04-23 21:23:45 +05:30
|
|
|
describe '#profile_social_links' do
|
|
|
|
context 'when discord is set' do
|
|
|
|
let_it_be(:user) { build(:user) }
|
|
|
|
let(:discord) { discord_url(user) }
|
|
|
|
|
|
|
|
it 'returns an empty string if discord is not set' do
|
|
|
|
expect(discord).to eq('')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns discord url when discord id is set' do
|
|
|
|
user.discord = '1234567890123456789'
|
|
|
|
|
|
|
|
expect(discord).to eq('https://discord.com/users/1234567890123456789')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
describe '#gitlab_ui_form_for' do
|
|
|
|
let_it_be(:user) { build(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:users_path).and_return('/root')
|
|
|
|
allow(helper).to receive(:form_for).and_call_original
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds custom form builder to options and calls `form_for`' do
|
|
|
|
options = { html: { class: 'foo-bar' } }
|
|
|
|
expected_options = options.merge({ builder: ::Gitlab::FormBuilders::GitlabUiFormBuilder, url: '/root' })
|
|
|
|
|
|
|
|
expect do |b|
|
|
|
|
helper.gitlab_ui_form_for(user, options, &b)
|
|
|
|
end.to yield_with_args(::Gitlab::FormBuilders::GitlabUiFormBuilder)
|
|
|
|
expect(helper).to have_received(:form_for).with(user, expected_options)
|
|
|
|
end
|
|
|
|
end
|
2022-03-02 08:16:31 +05:30
|
|
|
|
2022-11-25 23:54:43 +05:30
|
|
|
describe '#gitlab_ui_form_with' do
|
|
|
|
let_it_be(:user) { build(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:users_path).and_return('/root')
|
|
|
|
allow(helper).to receive(:form_with).and_call_original
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds custom form builder to options and calls `form_with`' do
|
|
|
|
options = { model: user, html: { class: 'foo-bar' } }
|
|
|
|
expected_options = options.merge({ builder: ::Gitlab::FormBuilders::GitlabUiFormBuilder })
|
|
|
|
|
|
|
|
expect do |b|
|
|
|
|
helper.gitlab_ui_form_with(**options, &b)
|
|
|
|
end.to yield_with_args(::Gitlab::FormBuilders::GitlabUiFormBuilder)
|
|
|
|
expect(helper).to have_received(:form_with).with(expected_options)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
describe '#page_class' do
|
2023-01-13 00:05:48 +05:30
|
|
|
subject(:page_class) do
|
|
|
|
helper.page_class.flatten
|
|
|
|
end
|
2022-03-02 08:16:31 +05:30
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
before do
|
|
|
|
allow(helper).to receive(:current_user).and_return(nil)
|
2022-03-02 08:16:31 +05:30
|
|
|
end
|
2023-01-13 00:05:48 +05:30
|
|
|
|
|
|
|
it { is_expected.not_to include('logged-out-marketing-header') }
|
2022-03-02 08:16:31 +05:30
|
|
|
end
|
2022-05-07 20:08:51 +05:30
|
|
|
|
|
|
|
describe '#dispensable_render' do
|
|
|
|
context 'when an error occurs in the template to be rendered' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:render).and_raise
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls `track_and_raise_for_dev_exception`' do
|
|
|
|
expect(Gitlab::ErrorTracking).to receive(:track_and_raise_for_dev_exception)
|
|
|
|
helper.dispensable_render
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for development environment' do
|
|
|
|
before do
|
|
|
|
stub_rails_env('development')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error' do
|
|
|
|
expect { helper.dispensable_render }.to raise_error(StandardError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for production environments' do
|
|
|
|
before do
|
|
|
|
stub_rails_env('production')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil' do
|
|
|
|
expect(helper.dispensable_render).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when no error occurs in the template to be rendered' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:render).and_return('foo')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not track or raise and returns the rendered content' do
|
|
|
|
expect(Gitlab::ErrorTracking).not_to receive(:track_and_raise_for_dev_exception)
|
|
|
|
expect(helper.dispensable_render).to eq('foo')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#dispensable_render_if_exists' do
|
|
|
|
context 'when an error occurs in the template to be rendered' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:render_if_exists).and_raise
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls `track_and_raise_for_dev_exception`' do
|
|
|
|
expect(Gitlab::ErrorTracking).to receive(:track_and_raise_for_dev_exception)
|
|
|
|
helper.dispensable_render_if_exists
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for development environment' do
|
|
|
|
before do
|
|
|
|
stub_rails_env('development')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error' do
|
|
|
|
expect { helper.dispensable_render_if_exists }.to raise_error(StandardError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for production environments' do
|
|
|
|
before do
|
|
|
|
stub_rails_env('production')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil' do
|
|
|
|
expect(helper.dispensable_render_if_exists).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when no error occurs in the template to be rendered' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:render_if_exists).and_return('foo')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not track or raise' do
|
|
|
|
expect(Gitlab::ErrorTracking).not_to receive(:track_and_raise_for_dev_exception)
|
|
|
|
expect(helper.dispensable_render_if_exists).to eq('foo')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2023-03-04 22:38:38 +05:30
|
|
|
|
|
|
|
describe 'stylesheet_link_tag_defer' do
|
2023-06-20 00:43:36 +05:30
|
|
|
it 'uses print stylesheet when feature flag disabled' do
|
|
|
|
stub_feature_flags(remove_startup_css: false)
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
expect(helper.stylesheet_link_tag_defer('test')).to eq( '<link rel="stylesheet" media="print" href="/stylesheets/test.css" />')
|
|
|
|
end
|
|
|
|
|
2023-07-09 08:55:56 +05:30
|
|
|
it 'uses regular stylesheet when feature flag enabled' do
|
2023-06-20 00:43:36 +05:30
|
|
|
stub_feature_flags(remove_startup_css: true)
|
|
|
|
|
2023-07-09 08:55:56 +05:30
|
|
|
expect(helper.stylesheet_link_tag_defer('test')).to eq( '<link rel="stylesheet" media="all" href="/stylesheets/test.css" />')
|
2023-06-20 00:43:36 +05:30
|
|
|
end
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
it 'uses regular stylesheet when no_startup_css param present' do
|
|
|
|
allow(helper.controller).to receive(:params).and_return({ no_startup_css: '' })
|
|
|
|
|
2023-07-09 08:55:56 +05:30
|
|
|
expect(helper.stylesheet_link_tag_defer('test')).to eq( '<link rel="stylesheet" media="all" href="/stylesheets/test.css" />')
|
2023-03-04 22:38:38 +05:30
|
|
|
end
|
|
|
|
end
|
2023-06-20 00:43:36 +05:30
|
|
|
|
|
|
|
describe 'sign_in_with_redirect?' do
|
|
|
|
context 'when on the sign-in page that redirects afterwards' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:current_page?).and_return(true)
|
|
|
|
session[:user_return_to] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true' do
|
|
|
|
expect(helper.sign_in_with_redirect?).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when on a non sign-in page' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:current_page?).and_return(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false' do
|
|
|
|
expect(helper.sign_in_with_redirect?).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2023-07-09 08:55:56 +05:30
|
|
|
|
|
|
|
describe 'collapsed_super_sidebar?' do
|
|
|
|
context 'when @force_desktop_expanded_sidebar is true' do
|
|
|
|
before do
|
|
|
|
helper.instance_variable_set(:@force_desktop_expanded_sidebar, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false' do
|
|
|
|
expect(helper.collapsed_super_sidebar?).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not use the cookie value' do
|
|
|
|
expect(helper).not_to receive(:cookies)
|
|
|
|
helper.collapsed_super_sidebar?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when @force_desktop_expanded_sidebar is not set (default)' do
|
|
|
|
context 'when super_sidebar_collapsed cookie is true' do
|
|
|
|
before do
|
|
|
|
helper.request.cookies['super_sidebar_collapsed'] = 'true'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true' do
|
|
|
|
expect(helper.collapsed_super_sidebar?).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when super_sidebar_collapsed cookie is false' do
|
|
|
|
before do
|
|
|
|
helper.request.cookies['super_sidebar_collapsed'] = 'false'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false' do
|
|
|
|
expect(helper.collapsed_super_sidebar?).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|