summaryrefslogtreecommitdiff
path: root/spec/controllers/projects/alert_management_controller_spec.rb
blob: 6a1952f949bd2e81e5ea6299017db3a967dbea3c (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::AlertManagementController do
  let_it_be(:project) { create(:project) }
  let_it_be(:role) { :developer }
  let_it_be(:user) { create(:user) }
  let_it_be(:id) { 1 }

  before do
    project.add_role(user, role)
    sign_in(user)
  end

  describe 'GET #index' do
    it 'shows the page' do
      get :index, params: { namespace_id: project.namespace, project_id: project }

      expect(response).to have_gitlab_http_status(:ok)
    end

    context 'when user is unauthorized' do
      let(:role) { :reporter }

      it 'shows 404' do
        get :index, params: { namespace_id: project.namespace, project_id: project }

        expect(response).to have_gitlab_http_status(:not_found)
      end
    end
  end

  describe 'GET #details' do
    it 'shows the page' do
      get :details, params: { namespace_id: project.namespace, project_id: project, id: id }

      expect(response).to have_gitlab_http_status(:ok)
    end

    context 'when user is unauthorized' do
      let(:role) { :reporter }

      it 'shows 404' do
        get :index, params: { namespace_id: project.namespace, project_id: project }

        expect(response).to have_gitlab_http_status(:not_found)
      end
    end
  end

  describe 'set_alert_id' do
    it 'sets alert id from the route' do
      get :details, params: { namespace_id: project.namespace, project_id: project, id: id }

      expect(assigns(:alert_id)).to eq(id.to_s)
    end
  end
end