debian-mirror-gitlab/spec/controllers/help_controller_spec.rb

258 lines
7 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2015-04-26 12:48:37 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe HelpController do
2021-01-03 14:25:43 +05:30
include StubVersion
2015-04-26 12:48:37 +05:30
let(:user) { create(:user) }
2021-03-11 19:13:27 +05:30
shared_examples 'documentation pages local render' do
it 'renders HTML' do
aggregate_failures do
is_expected.to render_template('show.html.haml')
expect(response.media_type).to eq 'text/html'
end
end
end
shared_examples 'documentation pages redirect' do |documentation_base_url|
let(:gitlab_version) { '13.4.0-ee' }
before do
stub_version(gitlab_version, 'ignored_revision_value')
end
it 'redirects user to custom documentation url with a specified version' do
is_expected.to redirect_to("#{documentation_base_url}/13.4/ee/#{path}.html")
end
context 'when it is a pre-release' do
let(:gitlab_version) { '13.4.0-pre' }
it 'redirects user to custom documentation url without a version' do
is_expected.to redirect_to("#{documentation_base_url}/ee/#{path}.html")
end
end
context 'when feature flag is disabled' do
before do
stub_feature_flags(help_page_documentation_redirect: false)
end
it_behaves_like 'documentation pages local render'
end
end
2015-04-26 12:48:37 +05:30
before do
sign_in(user)
end
2017-08-17 22:00:37 +05:30
describe 'GET #index' do
context 'with absolute url' do
it 'keeps the URL absolute' do
stub_readme("[API](/api/README.md)")
get :index
expect(assigns[:help_index]).to eq '[API](/api/README.md)'
end
end
context 'with relative url' do
it 'prefixes it with /help/' do
stub_readme("[API](api/README.md)")
get :index
expect(assigns[:help_index]).to eq '[API](/help/api/README.md)'
end
end
context 'when url is an external link' do
it 'does not change it' do
stub_readme("[external](https://some.external.link)")
get :index
expect(assigns[:help_index]).to eq '[external](https://some.external.link)'
end
end
2019-07-07 11:18:12 +05:30
context 'when relative url with external on same line' do
it 'prefix it with /help/' do
stub_readme("[API](api/README.md) [external](https://some.external.link)")
get :index
expect(assigns[:help_index]).to eq '[API](/help/api/README.md) [external](https://some.external.link)'
end
end
context 'when relative url with http:// in query' do
it 'prefix it with /help/' do
stub_readme("[API](api/README.md?go=https://example.com/)")
get :index
expect(assigns[:help_index]).to eq '[API](/help/api/README.md?go=https://example.com/)'
end
end
context 'when mailto URL' do
it 'do not change it' do
stub_readme("[report bug](mailto:bugs@example.com)")
get :index
expect(assigns[:help_index]).to eq '[report bug](mailto:bugs@example.com)'
end
end
context 'when protocol-relative link' do
it 'do not change it' do
stub_readme("[protocol-relative](//example.com)")
get :index
expect(assigns[:help_index]).to eq '[protocol-relative](//example.com)'
end
end
2020-04-22 19:07:51 +05:30
context 'restricted visibility set to public' do
before do
sign_out(user)
stub_application_setting(restricted_visibility_levels: [Gitlab::VisibilityLevel::PUBLIC])
end
it 'redirects to sign_in path' do
get :index
expect(response).to redirect_to(new_user_session_path)
end
end
2017-08-17 22:00:37 +05:30
end
2015-04-26 12:48:37 +05:30
describe 'GET #show' do
context 'for Markdown formats' do
2021-03-11 19:13:27 +05:30
subject { get :show, params: { path: path }, format: :md }
let(:path) { 'ssh/README' }
2015-04-26 12:48:37 +05:30
context 'when requested file exists' do
before do
2021-02-22 17:27:13 +05:30
expect_file_read(File.join(Rails.root, 'doc/ssh/README.md'), content: fixture_file('blockquote_fence_after.md'))
2021-03-11 19:13:27 +05:30
subject
2015-04-26 12:48:37 +05:30
end
it 'assigns to @markdown' do
expect(assigns[:markdown]).not_to be_empty
end
2021-03-11 19:13:27 +05:30
it_behaves_like 'documentation pages local render'
2021-01-03 14:25:43 +05:30
end
2021-03-11 19:13:27 +05:30
context 'when a custom help_page_documentation_url is set in database' do
2021-01-03 14:25:43 +05:30
before do
2021-03-11 19:13:27 +05:30
stub_application_setting(help_page_documentation_base_url: 'https://in-db.gitlab.com')
2021-01-03 14:25:43 +05:30
end
2021-03-11 19:13:27 +05:30
it_behaves_like 'documentation pages redirect', 'https://in-db.gitlab.com'
end
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
context 'when a custom help_page_documentation_url is set in configuration file' do
let(:host) { 'https://in-yaml.gitlab.com' }
let(:docs_enabled) { true }
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
before do
allow(Settings).to receive(:gitlab_docs) { double(enabled: docs_enabled, host: host) }
2021-01-03 14:25:43 +05:30
end
2021-03-11 19:13:27 +05:30
it_behaves_like 'documentation pages redirect', 'https://in-yaml.gitlab.com'
context 'when gitlab_docs is disabled' do
let(:docs_enabled) { false }
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
it_behaves_like 'documentation pages local render'
2021-01-03 14:25:43 +05:30
end
2021-03-11 19:13:27 +05:30
context 'when host is missing' do
let(:host) { nil }
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
it_behaves_like 'documentation pages local render'
end
end
context 'when help_page_documentation_url is set in both db and configuration file' do
before do
stub_application_setting(help_page_documentation_base_url: 'https://in-db.gitlab.com')
allow(Settings).to receive(:gitlab_docs) { double(enabled: true, host: 'https://in-yaml.gitlab.com') }
2021-01-03 14:25:43 +05:30
end
2021-03-11 19:13:27 +05:30
it_behaves_like 'documentation pages redirect', 'https://in-yaml.gitlab.com'
end
context 'when help_page_documentation_url has a trailing slash' do
before do
allow(Settings).to receive(:gitlab_docs) { double(enabled: true, host: 'https://in-yaml.gitlab.com/') }
2015-04-26 12:48:37 +05:30
end
2021-03-11 19:13:27 +05:30
it_behaves_like 'documentation pages redirect', 'https://in-yaml.gitlab.com'
2015-04-26 12:48:37 +05:30
end
context 'when requested file is missing' do
it 'renders not found' do
2019-02-15 15:39:39 +05:30
get :show, params: { path: 'foo/bar' }, format: :md
2015-04-26 12:48:37 +05:30
expect(response).to be_not_found
end
end
end
context 'for image formats' do
context 'when requested file exists' do
it 'renders the raw file' do
2015-09-11 14:41:01 +05:30
get :show,
2019-02-15 15:39:39 +05:30
params: {
2020-03-13 15:44:24 +05:30
path: 'user/img/markdown_logo'
2019-02-15 15:39:39 +05:30
},
2015-09-11 14:41:01 +05:30
format: :png
2021-01-03 14:25:43 +05:30
aggregate_failures do
expect(response).to be_successful
expect(response.media_type).to eq 'image/png'
expect(response.headers['Content-Disposition']).to match(/^inline;/)
end
2015-04-26 12:48:37 +05:30
end
end
context 'when requested file is missing' do
it 'renders not found' do
2015-09-11 14:41:01 +05:30
get :show,
2019-02-15 15:39:39 +05:30
params: {
path: 'foo/bar'
},
2015-09-11 14:41:01 +05:30
format: :png
2015-04-26 12:48:37 +05:30
expect(response).to be_not_found
end
end
end
context 'for other formats' do
it 'always renders not found' do
2015-09-11 14:41:01 +05:30
get :show,
2019-02-15 15:39:39 +05:30
params: {
path: 'ssh/README'
},
2015-09-11 14:41:01 +05:30
format: :foo
2015-04-26 12:48:37 +05:30
expect(response).to be_not_found
end
end
end
2016-08-24 12:49:21 +05:30
2017-08-17 22:00:37 +05:30
def stub_readme(content)
2021-02-22 17:27:13 +05:30
expect_file_read(Rails.root.join('doc', 'README.md'), content: content)
2017-08-17 22:00:37 +05:30
end
2015-04-26 12:48:37 +05:30
end