summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/quick_actions/issuable/time_tracking_quick_action_shared_examples.rb
blob: 18304951e41b6ac9ceae190dc5cdcdfff3d2330d (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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# frozen_string_literal: true

RSpec.shared_examples 'issuable time tracker' do |issuable_type|
  let_it_be(:time_tracker_selector) { '[data-testid="time-tracker"]' }

  before do
    project.add_maintainer(maintainer)
    gitlab_sign_in(maintainer)
    visit public_send("project_#{issuable_type}_path", project, issuable)
    wait_for_all_requests
  end

  after do
    wait_for_requests
  end

  def open_time_tracking_report
    page.within time_tracker_selector do
      click_link 'Time tracking report'

      wait_for_requests
    end
  end

  it 'renders the sidebar component empty state' do
    page.within '[data-testid="noTrackingPane"]' do
      expect(page).to have_content 'No estimate or time spent'
    end
  end

  it 'updates the sidebar component when estimate is added' do
    submit_time('/estimate 3w 1d 1h')

    wait_for_requests
    page.within '[data-testid="estimateOnlyPane"]' do
      expect(page).to have_content '3w 1d 1h'
    end
  end

  it 'updates the sidebar component when spent is added' do
    submit_time('/spend 3w 1d 1h')

    wait_for_requests
    page.within '[data-testid="spentOnlyPane"]' do
      expect(page).to have_content '3w 1d 1h'
    end
  end

  it 'shows the comparison when estimate and spent are added' do
    submit_time('/estimate 3w 1d 1h')
    submit_time('/spend 3w 1d 1h')

    wait_for_requests
    page.within '[data-testid="timeTrackingComparisonPane"]' do
      expect(page).to have_content '3w 1d 1h'
    end
  end

  it 'updates the sidebar component when estimate is removed' do
    submit_time('/estimate 3w 1d 1h')
    submit_time('/remove_estimate')

    page.within time_tracker_selector do
      expect(page).to have_content 'No estimate or time spent'
    end
  end

  it 'updates the sidebar component when spent is removed' do
    submit_time('/spend 3w 1d 1h')
    submit_time('/remove_time_spent')

    page.within time_tracker_selector do
      expect(page).to have_content 'No estimate or time spent'
    end
  end

  it 'shows the help state when icon is clicked' do
    page.within time_tracker_selector do
      find('[data-testid="helpButton"]').click
      expect(page).to have_content 'Track time with quick actions'
      expect(page).to have_content 'Learn more'
    end
  end

  it 'shows the time tracking report when link is clicked' do
    submit_time('/estimate 1w')
    submit_time('/spend 1d')

    wait_for_requests

    open_time_tracking_report

    page.within '#time-tracking-report' do
      expect(find('tbody')).to have_content maintainer.name
      expect(find('tbody')).to have_content '1d'
    end
  end

  it 'removes time log when delete is clicked in time tracking report' do
    submit_time('/estimate 1w')
    submit_time('/spend 1d')
    submit_time('/spend 3d')

    wait_for_requests

    open_time_tracking_report

    page.within '#time-tracking-report tbody tr:nth-child(2)' do
      click_button test_id: 'deleteButton'

      wait_for_requests
    end

    # Assert that 2nd row was removed
    expect(all('#time-tracking-report tbody tr').length).to eq(1)
    expect(find('#time-tracking-report tbody')).not_to have_content('3d')

    # Assert that summary line was updated
    expect(find('#time-tracking-report tfoot')).to have_content('1d', exact: true)

    # Assert that the time tracking widget was reactively updated
    page.within '[data-testid="timeTrackingComparisonPane"]' do
      expect(page).to have_content '1d'
    end
  end

  it 'hides the help state when close icon is clicked' do
    page.within time_tracker_selector do
      find('[data-testid="helpButton"]').click
      find('[data-testid="closeHelpButton"]').click

      expect(page).not_to have_content 'Track time with quick actions'
      expect(page).not_to have_content 'Learn more'
    end
  end

  it 'displays the correct help url' do
    page.within time_tracker_selector do
      find('[data-testid="helpButton"]').click

      expect(find_link('Learn more')[:href]).to have_content('/help/user/project/time_tracking.md')
    end
  end
end

def submit_time(quick_action)
  fill_in 'note[note]', with: quick_action
  find('[data-testid="comment-button"]').click
  wait_for_requests
end