summaryrefslogtreecommitdiff
path: root/spec/features/incidents/incident_details_spec.rb
blob: b704a0515c866fe1e5215594a1ae03477995d993 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Incident details', :js do
  let_it_be(:project) { create(:project) }
  let_it_be(:developer) { create(:user) }
  let_it_be(:incident) { create(:incident, project: project, author: developer, description: 'description') }

  before_all do
    project.add_developer(developer)
  end

  before do
    sign_in(developer)

    visit project_issues_incident_path(project, incident)
    wait_for_requests
  end

  context 'when a developer+ displays the incident' do
    it 'shows the incident' do
      page.within('.issuable-details') do
        expect(find('h2')).to have_content(incident.title)
      end
    end

    it 'does not show design management' do
      expect(page).not_to have_selector('.js-design-management')
    end

    it 'shows the incident tabs' do
      page.within('.issuable-details') do
        incident_tabs = find('[data-testid="incident-tabs"]')

        expect(find('h2')).to have_content(incident.title)
        expect(incident_tabs).to have_content('Summary')
        expect(incident_tabs).to have_content(incident.description)
      end
    end

    it 'shows the right sidebar mounted with type issue' do
      page.within('.layout-page') do
        sidebar = find('.right-sidebar')

        expect(page).to have_selector('.right-sidebar[data-issuable-type="issue"]')
        expect(sidebar).to have_selector('.incident-severity')
        expect(sidebar).to have_selector('.milestone')
      end
    end
  end

  context 'when an incident `issue_type` is edited by a signed in user' do
    it 'routes the user to the incident details page when the `issue_type` is set to incident' do
      wait_for_requests
      project_path = "/#{project.full_path}"
      click_button 'Edit title and description'
      wait_for_requests

      page.within('[data-testid="issuable-form"]') do
        click_button 'Incident'
        click_button 'Issue'
        click_button 'Save changes'

        wait_for_requests

        expect(page).to have_current_path("#{project_path}/-/issues/#{incident.iid}")
      end
    end
  end

  context 'when incident details are edited by a signed in user' do
    it 'routes the user to the incident details page when the `issue_type` is set to incident' do
      wait_for_requests
      project_path = "/#{project.full_path}"
      click_button 'Edit title and description'
      wait_for_requests

      page.within('[data-testid="issuable-form"]') do
        click_button 'Incident'
        click_button 'Issue'
        click_button 'Save changes'

        wait_for_requests

        expect(page).to have_current_path("#{project_path}/-/issues/#{incident.iid}")
      end
    end
  end
end