2018-12-14 12:49:58 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-01-15 20:06:32 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe 'Help Pages' do
|
2016-11-25 12:26:24 -05:00
|
|
|
describe 'Get the main help page' do
|
2020-05-06 05:10:02 -04:00
|
|
|
before do
|
|
|
|
allow(File).to receive(:read).and_call_original
|
|
|
|
allow(File).to receive(:read).with(Rails.root.join('doc', 'README.md')).and_return(fixture_file('sample_doc.md'))
|
2016-12-01 06:07:52 -05:00
|
|
|
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
|
|
|
|
2019-09-03 21:57:25 -04:00
|
|
|
stub_rails_env('production')
|
2018-12-14 12:47:49 -05:00
|
|
|
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
|
|
|
|
|
2019-04-05 04:43:27 -04:00
|
|
|
it 'displays custom help page text' do
|
2017-06-13 12:46:02 -04:00
|
|
|
expect(page).to have_text "My Custom Text"
|
|
|
|
end
|
|
|
|
|
2019-04-05 04:43:27 -04:00
|
|
|
it 'hides marketing content when enabled' do
|
2017-06-13 12:46:02 -04:00
|
|
|
expect(page).not_to have_link "Get a support subscription"
|
|
|
|
end
|
|
|
|
|
2019-04-05 04:43:27 -04:00
|
|
|
it 'uses a custom support url' do
|
2017-06-13 12:46:02 -04:00
|
|
|
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
|