summaryrefslogtreecommitdiff
path: root/spec/controllers/projects/incidents_controller_spec.rb
blob: 1b47f9f6abfe775751cfb245b271e1dddae6be3c (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::IncidentsController do
  let_it_be_with_refind(:project) { create(:project) }
  let_it_be(:developer) { create(:user) }
  let_it_be(:guest) { create(:user) }
  let_it_be(:anonymous) { nil }

  before_all do
    project.add_guest(guest)
    project.add_developer(developer)
  end

  before do
    sign_in(user) if user
  end

  subject { make_request }

  shared_examples 'not found' do
    include_examples 'returning response status', :not_found
  end

  shared_examples 'login required' do
    it 'redirects to the login page' do
      subject

      expect(response).to redirect_to(new_user_session_path)
    end
  end

  describe 'GET #index' do
    def make_request
      get :index, params: project_params
    end

    let(:user) { developer }

    it 'shows the page' do
      subject

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

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

      it_behaves_like 'login required'
    end

    context 'when user is a guest' do
      let(:user) { guest }

      it 'shows the page' do
        subject

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

  describe 'GET #show' do
    def make_request
      get :show, params: project_params(id: resource)
    end

    let_it_be(:resource) { create(:incident, project: project) }
    let(:user) { developer }

    it 'renders incident page' do
      subject

      expect(response).to have_gitlab_http_status(:ok)
      expect(response).to render_template(:show)

      expect(assigns(:incident)).to be_present
      expect(assigns(:incident).author.association(:status)).to be_loaded
      expect(assigns(:issue)).to be_present
      expect(assigns(:noteable)).to eq(assigns(:incident))
    end

    context 'with feature flag disabled' do
      before do
        stub_feature_flags(issues_incident_details: false)
      end

      it_behaves_like 'not found'
    end

    context 'with non existing id' do
      let(:resource) { non_existing_record_id }

      it_behaves_like 'not found'
    end

    context 'for issue' do
      let_it_be(:resource) { create(:issue, project: project) }

      it_behaves_like 'not found'
    end

    context 'when user is a guest' do
      let(:user) { guest }

      it 'shows the page' do
        subject

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

    context 'when unauthorized' do
      let(:user) { anonymous }

      it_behaves_like 'login required'
    end
  end

  private

  def project_params(opts = {})
    opts.reverse_merge(namespace_id: project.namespace, project_id: project)
  end
end