debian-mirror-gitlab/spec/features/incidents/incident_details_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

142 lines
4.7 KiB
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-03-04 22:38:38 +05:30
RSpec.describe 'Incident details', :js, feature_category: :incident_management do
2023-04-23 21:23:45 +05:30
include MergeRequestDiffHelpers
2021-01-03 14:25:43 +05:30
let_it_be(:project) { create(:project) }
let_it_be(:developer) { create(:user) }
let_it_be(:incident) { create(:incident, project: project, author: developer, description: 'description') }
2022-08-13 15:12:31 +05:30
let_it_be(:issue) { create(:issue, project: project, author: developer, description: 'Issue description') }
2022-05-07 20:08:51 +05:30
let_it_be(:escalation_status) { create(:incident_management_issuable_escalation_status, issue: incident) }
2023-04-23 21:23:45 +05:30
let_it_be(:confidential_incident) do
create(:incident, confidential: true, project: project, author: developer, description: 'Confidential')
end
2021-01-03 14:25:43 +05:30
before_all do
project.add_developer(developer)
end
before do
sign_in(developer)
end
context 'when a developer+ displays the incident' do
2022-08-13 15:12:31 +05:30
before do
2023-04-23 21:23:45 +05:30
visit incident_project_issues_path(project, incident)
2022-08-13 15:12:31 +05:30
wait_for_requests
end
it 'shows correct elements on the page', :aggregate_failures do
# shows the incident
2021-01-03 14:25:43 +05:30
page.within('.issuable-details') do
2022-05-07 20:08:51 +05:30
expect(find('h1')).to have_content(incident.title)
2021-01-03 14:25:43 +05:30
end
2022-08-13 15:12:31 +05:30
# does not show design management
2021-01-03 14:25:43 +05:30
expect(page).not_to have_selector('.js-design-management')
2022-08-13 15:12:31 +05:30
# shows the incident tabs
2021-01-03 14:25:43 +05:30
page.within('.issuable-details') do
incident_tabs = find('[data-testid="incident-tabs"]')
2022-05-07 20:08:51 +05:30
expect(find('h1')).to have_content(incident.title)
2021-01-03 14:25:43 +05:30
expect(incident_tabs).to have_content('Summary')
expect(incident_tabs).to have_content(incident.description)
end
2022-08-13 15:12:31 +05:30
# shows the right sidebar mounted with type issue
2021-01-03 14:25:43 +05:30
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')
2021-03-08 18:12:59 +05:30
expect(sidebar).to have_selector('.milestone')
2022-05-07 20:08:51 +05:30
expect(sidebar).to have_selector('[data-testid="escalation_status_container"]')
end
end
2022-08-13 15:12:31 +05:30
describe 'escalation status' do
2022-05-07 20:08:51 +05:30
let(:sidebar) { page.find('.right-sidebar') }
let(:widget) { sidebar.find('[data-testid="escalation_status_container"]') }
let(:expected_dropdown_options) { escalation_status.class::STATUSES.keys.take(3).map { |key| key.to_s.titleize } }
2022-08-13 15:12:31 +05:30
it 'has an interactable escalation status widget', :aggregate_failures do
2022-05-07 20:08:51 +05:30
expect(current_status).to have_text(escalation_status.status_name.to_s.titleize)
# list the available statuses
widget.find('[data-testid="edit-button"]').click
expect(dropdown_options.map(&:text)).to eq(expected_dropdown_options)
expect(widget).not_to have_selector('#escalation-status-help')
# update the status
select_resolved(dropdown_options)
expect(current_status).to have_text('Resolved')
expect(escalation_status.reload).to be_resolved
end
private
def dropdown_options
widget.all('[data-testid="status-dropdown-item"]', count: 3)
end
def select_resolved(options)
options.last.click
wait_for_requests
end
def current_status
widget.find('[data-testid="collapsed-content"]')
2021-01-03 14:25:43 +05:30
end
end
end
2021-09-04 01:27:46 +05:30
2022-08-13 15:12:31 +05:30
it 'routes the user to the incident details page when the `issue_type` is set to incident' do
visit project_issue_path(project, issue)
wait_for_requests
project_path = "/#{project.full_path}"
click_button 'Edit title and description'
wait_for_requests
2021-09-04 01:27:46 +05:30
2022-08-13 15:12:31 +05:30
page.within('[data-testid="issuable-form"]') do
click_button 'Issue'
2023-04-23 21:23:45 +05:30
find('[data-testid="issue-type-list-item"]', text: 'Incident').click
2022-08-13 15:12:31 +05:30
click_button 'Save changes'
2021-09-04 01:27:46 +05:30
2022-08-13 15:12:31 +05:30
wait_for_requests
2021-09-04 01:27:46 +05:30
2022-08-13 15:12:31 +05:30
expect(page).to have_current_path("#{project_path}/-/issues/incident/#{issue.iid}")
2021-09-04 01:27:46 +05:30
end
end
2022-08-13 15:12:31 +05:30
it 'routes the user to the issue details page when the `issue_type` is set to issue' do
2023-04-23 21:23:45 +05:30
visit incident_project_issues_path(project, incident)
2022-08-13 15:12:31 +05:30
wait_for_requests
2021-09-04 01:27:46 +05:30
2022-08-13 15:12:31 +05:30
project_path = "/#{project.full_path}"
click_button 'Edit title and description'
wait_for_requests
2021-09-04 01:27:46 +05:30
2022-08-13 15:12:31 +05:30
page.within('[data-testid="issuable-form"]') do
click_button 'Incident'
2023-04-23 21:23:45 +05:30
find('[data-testid="issue-type-list-item"]', text: 'Issue').click
2022-08-13 15:12:31 +05:30
click_button 'Save changes'
2021-09-04 01:27:46 +05:30
2022-08-13 15:12:31 +05:30
wait_for_requests
expect(page).to have_current_path("#{project_path}/-/issues/#{incident.iid}")
2021-09-04 01:27:46 +05:30
end
end
2023-04-23 21:23:45 +05:30
it 'displays the confidential badge on the sticky header when the incident is confidential' do
visit incident_project_issues_path(project, confidential_incident)
wait_for_requests
sticky_header = find_by_scrolling('[data-testid=issue-sticky-header]')
expect(sticky_header.find('[data-testid=confidential]')).to be_present
end
2021-01-03 14:25:43 +05:30
end