Welcome to mirror list, hosted at ThFree Co, Russian Federation.

work_item_children_spec.rb « work_items « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10a1bf7541e569611fc1261fba21f0cc8e6ed51a (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Work item children', :js do
  let_it_be(:group) { create(:group) }
  let_it_be(:project) { create(:project, :public, namespace: group) }
  let_it_be(:user) { create(:user) }
  let_it_be(:issue) { create(:issue, project: project) }

  context 'for signed in user' do
    before do
      project.add_developer(user)

      sign_in(user)

      stub_feature_flags(work_items: true)

      visit project_issue_path(project, issue)

      wait_for_requests
    end

    it 'are not displayed when issue does not have work item children', :aggregate_failures do
      page.within('[data-testid="work-item-links"]') do
        expect(find('[data-testid="links-empty"]')).to have_content(_('No tasks are currently assigned.'))
        expect(page).not_to have_selector('[data-testid="add-links-form"]')
        expect(page).not_to have_selector('[data-testid="links-child"]')
      end
    end

    it 'toggles widget body', :aggregate_failures do
      page.within('[data-testid="work-item-links"]') do
        expect(page).to have_selector('[data-testid="links-body"]')

        click_button 'Collapse tasks'

        expect(page).not_to have_selector('[data-testid="links-body"]')

        click_button 'Expand tasks'

        expect(page).to have_selector('[data-testid="links-body"]')
      end
    end

    it 'toggles form', :aggregate_failures do
      page.within('[data-testid="work-item-links"]') do
        expect(page).not_to have_selector('[data-testid="add-links-form"]')

        click_button 'Add'
        click_button 'New task'

        expect(page).to have_selector('[data-testid="add-links-form"]')

        click_button 'Cancel'

        expect(page).not_to have_selector('[data-testid="add-links-form"]')
      end
    end

    it 'adds a new child task', :aggregate_failures do
      page.within('[data-testid="work-item-links"]') do
        click_button 'Add'
        click_button 'New task'

        expect(page).to have_button('Create task', disabled: true)
        fill_in 'Add a title', with: 'Task 1'

        expect(page).to have_button('Create task', disabled: false)

        click_button 'Create task'

        wait_for_all_requests

        expect(find('[data-testid="links-child"]')).to have_content('Task 1')
      end
    end

    it 'removes a child task and undoing', :aggregate_failures do
      page.within('[data-testid="work-item-links"]') do
        click_button 'Add'
        click_button 'New task'
        fill_in 'Add a title', with: 'Task 1'
        click_button 'Create task'
        wait_for_all_requests

        expect(find('[data-testid="links-child"]')).to have_content('Task 1')
        expect(find('[data-testid="children-count"]')).to have_content('1')

        find('[data-testid="links-menu"]').click
        click_button 'Remove'

        wait_for_all_requests

        expect(page).not_to have_content('Task 1')
        expect(find('[data-testid="children-count"]')).to have_content('0')
      end

      page.within('.gl-toast') do
        expect(find('.toast-body')).to have_content(_('Child removed'))
        find('.b-toaster a', text: 'Undo').click
      end

      wait_for_all_requests

      page.within('[data-testid="work-item-links"]') do
        expect(find('[data-testid="links-child"]')).to have_content('Task 1')
        expect(find('[data-testid="children-count"]')).to have_content('1')
      end
    end

    context 'with existing task' do
      let_it_be(:task) { create(:work_item, :task, project: project) }

      it 'adds an existing child task', :aggregate_failures do
        page.within('[data-testid="work-item-links"]') do
          click_button 'Add'
          click_button 'Existing task'

          expect(page).to have_button('Add task', disabled: true)
          find('[data-testid="work-item-token-select-input"]').set(task.title)
          wait_for_all_requests
          click_button task.title

          expect(page).to have_button('Add task', disabled: false)

          click_button 'Add task'

          wait_for_all_requests

          expect(find('[data-testid="links-child"]')).to have_content(task.title)
        end
      end
    end
  end
end