gitlab-org--gitlab-foss/spec/controllers/help_controller_spec.rb

67 lines
1.7 KiB
Ruby
Raw Normal View History

2015-04-15 16:45:31 +00:00
require 'spec_helper'
describe HelpController do
let(:user) { create(:user) }
before do
sign_in(user)
end
describe 'GET #show' do
context 'for Markdown formats' do
context 'when requested file exists' do
before do
2016-07-11 22:11:33 +00:00
get :show, path: 'ssh/README', format: :md
2015-04-15 16:45:31 +00:00
end
it 'assigns to @markdown' do
expect(assigns[:markdown]).not_to be_empty
end
it 'renders HTML' do
expect(response).to render_template('show.html.haml')
expect(response.content_type).to eq 'text/html'
end
end
context 'when requested file is missing' do
it 'renders not found' do
2016-07-11 22:11:33 +00:00
get :show, path: 'foo/bar', format: :md
2015-04-15 16:45:31 +00:00
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-06-23 05:24:39 +00:00
get :show,
2016-07-11 22:11:33 +00:00
path: 'workflow/protected_branches/protected_branches1',
2015-06-23 05:24:39 +00:00
format: :png
2015-04-15 16:45:31 +00:00
expect(response).to be_success
expect(response.content_type).to eq 'image/png'
expect(response.headers['Content-Disposition']).to match(/^inline;/)
end
end
context 'when requested file is missing' do
it 'renders not found' do
2015-06-23 05:24:39 +00:00
get :show,
2016-07-11 22:11:33 +00:00
path: 'foo/bar',
2015-06-23 05:24:39 +00:00
format: :png
2015-04-15 16:45:31 +00:00
expect(response).to be_not_found
end
end
end
context 'for other formats' do
it 'always renders not found' do
2015-06-23 05:24:39 +00:00
get :show,
2016-07-11 22:11:33 +00:00
path: 'ssh/README',
2015-06-23 05:24:39 +00:00
format: :foo
2015-04-15 16:45:31 +00:00
expect(response).to be_not_found
end
end
end
end