summaryrefslogtreecommitdiff
path: root/spec/controllers/projects/boards_controller_spec.rb
blob: 75a6d39e82c1a84652e750d76dbdfe858e88d99b (plain)
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
38
39
40
41
42
43
require 'spec_helper'

describe Projects::BoardsController do
  let(:project) { create(:empty_project) }
  let(:user)    { create(:user) }

  before do
    project.team << [user, :master]
    sign_in(user)
  end

  describe 'GET show' do
    it 'creates a new board when project does not have one' do
      expect { read_board }.to change(Board, :count).by(1)
    end

    it 'renders HTML template' do
      read_board

      expect(response).to render_template :show
      expect(response.content_type).to eq 'text/html'
    end

    context 'with unauthorized user' do
      before do
        allow(Ability.abilities).to receive(:allowed?).with(user, :read_project, project).and_return(true)
        allow(Ability.abilities).to receive(:allowed?).with(user, :read_board, project).and_return(false)
      end

      it 'returns a successful 404 response' do
        read_board

        expect(response).to have_http_status(404)
      end
    end

    def read_board(format: :html)
      get :show, namespace_id: project.namespace.to_param,
                 project_id: project.to_param,
                 format: format
    end
  end
end