BigW Consortium Gitlab

help_controller_spec.rb 1.75 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
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
          get :show, category: 'ssh', file: 'README', format: :md
        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
          get :show, category: 'foo', file: 'bar', format: :md
          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
38 39 40 41
          get :show,
              category: 'workflow/protected_branches',
              file: 'protected_branches1',
              format: :png
42 43 44 45 46 47 48 49
          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
50 51 52 53
          get :show,
              category: 'foo',
              file: 'bar',
              format: :png
54 55 56 57 58 59 60
          expect(response).to be_not_found
        end
      end
    end

    context 'for other formats' do
      it 'always renders not found' do
61 62 63 64
        get :show,
            category: 'ssh',
            file: 'README',
            format: :foo
65 66 67 68 69
        expect(response).to be_not_found
      end
    end
  end
end