2018-12-14 12:49:58 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-01-15 20:06:32 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-06-29 00:13:10 -04:00
|
|
|
describe 'Help Pages' do
|
2016-11-25 12:26:24 -05:00
|
|
|
describe 'Get the main help page' do
|
2016-12-01 06:07:52 -05:00
|
|
|
shared_examples_for 'help page' do |prefix: ''|
|
2016-11-25 12:26:24 -05:00
|
|
|
it 'prefixes links correctly' do
|
2018-11-23 10:12:15 -05:00
|
|
|
expect(page).to have_selector(%(div.documentation-index > table tbody tr td a[href="#{prefix}/help/api/README.md"]))
|
2016-11-25 12:26:24 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without a trailing slash' do
|
|
|
|
before do
|
|
|
|
visit help_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'help page'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a trailing slash' do
|
|
|
|
before do
|
|
|
|
visit help_path + '/'
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'help page'
|
|
|
|
end
|
2016-12-01 06:07:52 -05:00
|
|
|
|
|
|
|
context 'with a relative installation' do
|
|
|
|
before do
|
|
|
|
stub_config_setting(relative_url_root: '/gitlab')
|
|
|
|
visit help_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'help page', prefix: '/gitlab'
|
|
|
|
end
|
2017-12-19 11:18:48 -05:00
|
|
|
|
|
|
|
context 'quick link shortcuts', :js do
|
|
|
|
before do
|
|
|
|
visit help_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'focuses search bar' do
|
|
|
|
find('.js-trigger-search-bar').click
|
|
|
|
|
|
|
|
expect(page).to have_selector('#search:focus')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'opens shortcuts help dialog' do
|
|
|
|
find('.js-trigger-shortcut').click
|
|
|
|
|
|
|
|
expect(page).to have_selector('#modal-shortcuts')
|
|
|
|
end
|
|
|
|
end
|
2016-11-25 12:26:24 -05:00
|
|
|
end
|
2017-01-12 09:00:06 -05:00
|
|
|
|
2018-12-14 12:49:58 -05:00
|
|
|
context 'in a production environment with version check enabled' do
|
2017-01-12 09:00:06 -05:00
|
|
|
before do
|
2017-12-15 05:23:11 -05:00
|
|
|
stub_application_setting(version_check_enabled: true)
|
2018-12-14 12:47:49 -05:00
|
|
|
|
|
|
|
allow(Rails.env).to receive(:production?).and_return(true)
|
|
|
|
allow(VersionCheck).to receive(:url).and_return('/version-check-url')
|
2017-01-12 09:00:06 -05:00
|
|
|
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(create(:user))
|
2017-01-12 09:00:06 -05:00
|
|
|
visit help_path
|
|
|
|
end
|
|
|
|
|
2017-06-08 05:55:07 -04:00
|
|
|
it 'has a version check image' do
|
2018-12-14 12:49:58 -05:00
|
|
|
# Check `data-src` due to lazy image loading
|
|
|
|
expect(find('.js-version-status-badge', visible: false)['data-src'])
|
|
|
|
.to end_with('/version-check-url')
|
2017-01-12 09:00:06 -05:00
|
|
|
end
|
|
|
|
end
|
2017-06-13 12:46:02 -04:00
|
|
|
|
|
|
|
describe 'when help page is customized' do
|
|
|
|
before do
|
2017-12-15 05:23:11 -05:00
|
|
|
stub_application_setting(help_page_hide_commercial_content: true,
|
|
|
|
help_page_text: 'My Custom Text',
|
|
|
|
help_page_support_url: 'http://example.com/help')
|
2017-06-13 12:46:02 -04:00
|
|
|
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(create(:user))
|
2017-06-13 12:46:02 -04:00
|
|
|
visit help_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should display custom help page text' do
|
|
|
|
expect(page).to have_text "My Custom Text"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should hide marketing content when enabled' do
|
|
|
|
expect(page).not_to have_link "Get a support subscription"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should use a custom support url' do
|
|
|
|
expect(page).to have_link "See our website for getting help", href: "http://example.com/help"
|
|
|
|
end
|
|
|
|
end
|
2015-01-15 20:06:32 -05:00
|
|
|
end
|