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

require 'spec_helper'

RSpec.describe 'Incident timeline events', :js do
  let_it_be(:project) { create(:project) }
  let_it_be(:developer) { create(:user) }
  let_it_be(:incident) { create(:incident, project: project) }

  before_all do
    project.add_developer(developer)
  end

  before do
    stub_feature_flags(incident_timeline: true)
    sign_in(developer)

    visit project_issues_incident_path(project, incident)
    wait_for_requests
    click_link 'Timeline'
  end

  context 'when add event is clicked' do
    it 'submits event data when save is clicked' do
      click_button 'Add new timeline event'

      expect(page).to have_selector('.common-note-form')

      fill_in 'Description', with: 'Event note goes here'
      fill_in 'timeline-input-hours', with: '07'
      fill_in 'timeline-input-minutes', with: '25'

      click_button 'Save'

      expect(page).to have_selector('.incident-timeline-events')

      page.within '.timeline-event-note' do
        expect(page).to have_content('Event note goes here')
        expect(page).to have_content('07:25')
      end
    end
  end

  context 'when delete event is clicked' do
    before do
      click_button 'Add new timeline event'
      fill_in 'Description', with: 'Event note to delete'
      click_button 'Save'
    end

    it 'shows the confirmation modal and deletes the event' do
      click_button 'More actions'

      page.within '.gl-new-dropdown-item-text-wrapper' do
        expect(page).to have_content('Delete')
        page.find('.gl-new-dropdown-item-text-primary', text: 'Delete').click
      end

      page.within '.modal' do
        expect(page).to have_content('Delete event')
      end

      click_button 'Delete event'

      wait_for_requests

      expect(page).to have_content('No timeline items have been added yet.')
    end
  end
end