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

76 lines
1.8 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
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-08-24 12:49:21 +05:30
get :show, path: 'ssh/README', format: :md
2015-04-26 12:48:37 +05:30
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-08-24 12:49:21 +05:30
get :show, 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,
2016-08-24 12:49:21 +05:30
path: 'user/project/img/labels_filter',
2015-09-11 14:41:01 +05:30
format: :png
2015-04-26 12:48:37 +05:30
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-09-11 14:41:01 +05:30
get :show,
2016-08-24 12:49:21 +05:30
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,
2016-08-24 12:49:21 +05:30
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
describe 'GET #ui' do
context 'for UI Development Kit' do
it 'renders found' do
get :ui
expect(response).to have_http_status(200)
end
end
end
2015-04-26 12:48:37 +05:30
end