debian-mirror-gitlab/spec/features/help_pages_spec.rb

80 lines
2.4 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe 'Help Pages' do
2017-08-17 22:00:37 +05:30
describe 'Get the main help page' do
shared_examples_for 'help page' do |prefix: ''|
it 'prefixes links correctly' do
expect(page).to have_selector(%(div.documentation-index > ul a[href="#{prefix}/help/api/README.md"]))
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
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
end
2017-09-10 17:25:29 +05:30
context 'in a production environment with version check enabled', :js do
2015-04-26 12:48:37 +05:30
before do
2017-08-17 22:00:37 +05:30
allow(Rails.env).to receive(:production?) { true }
2017-09-10 17:25:29 +05:30
allow_any_instance_of(ApplicationSetting).to receive(:version_check_enabled) { true }
2017-08-17 22:00:37 +05:30
allow_any_instance_of(VersionCheck).to receive(:url) { '/version-check-url' }
2017-09-10 17:25:29 +05:30
sign_in(create(:user))
2017-08-17 22:00:37 +05:30
visit help_path
end
2017-09-10 17:25:29 +05:30
it 'has a version check image' do
expect(find('.js-version-status-badge', visible: false)['src']).to end_with('/version-check-url')
2015-04-26 12:48:37 +05:30
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
it 'hides the version check image if the image request fails' do
# We use '--load-images=yes' with poltergeist so the image fails to load
expect(page).to have_selector('.js-version-status-badge', visible: false)
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
end
describe 'when help page is customized' do
before do
allow_any_instance_of(ApplicationSetting).to receive(:help_page_hide_commercial_content?) { true }
allow_any_instance_of(ApplicationSetting).to receive(:help_page_text) { "My Custom Text" }
allow_any_instance_of(ApplicationSetting).to receive(:help_page_support_url) { "http://example.com/help" }
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
sign_in(create(:user))
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
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
it 'should use a custom support url' do
expect(page).to have_link "See our website for getting help", href: "http://example.com/help"
2015-04-26 12:48:37 +05:30
end
end
end