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

new_issue_spec.rb « boards « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1fcea45c7ae1e83c61ff968a037c522ce0861a48 (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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Issue Boards new issue', :js, feature_category: :team_planning do
  let_it_be(:project)        { create(:project, :public) }
  let_it_be(:board)          { create(:board, project: project) }
  let_it_be(:backlog_list)   { create(:backlog_list, board: board) }
  let_it_be(:label)          { create(:label, project: project, name: 'Label 1') }
  let_it_be(:list)           { create(:list, board: board, label: label, position: 0) }
  let_it_be(:user)           { create(:user) }
  let_it_be(:existing_issue) { create(:issue, project: project, title: 'other issue', relative_position: 50) }

  let(:board_list_header) { first('[data-testid="board-list-header"]') }
  let(:project_select_dropdown) { find('[data-testid="project-select-dropdown"]') }

  before do
    stub_feature_flags(apollo_boards: false)
  end

  context 'authorized user' do
    before do
      project.add_maintainer(user)

      sign_in(user)

      visit project_board_path(project, board)

      wait_for_requests

      expect(page).to have_selector('.board', count: 3)
    end

    it 'displays new issue button' do
      dropdown = first("[data-testid='header-list-actions']")
      dropdown.click
      expect(first('.board')).to have_button('Create new issue', count: 1)
    end

    it 'does not display new issue button in closed list' do
      page.within('.board:nth-child(3)') do
        expect(page).not_to have_selector("[data-testid='header-list-actions']")
        expect(page).not_to have_button('Create new issue')
      end
    end

    it 'shows form when clicking button' do
      page.within(first('.board')) do
        dropdown = first("[data-testid='header-list-actions']")
        dropdown.click
        click_button 'Create new issue'

        expect(page).to have_selector('.board-new-issue-form')
      end
    end

    it 'hides form when clicking cancel' do
      page.within(first('.board')) do
        dropdown = first("[data-testid='header-list-actions']")
        dropdown.click
        click_button 'Create new issue'

        expect(page).to have_selector('.board-new-issue-form')

        click_button 'Cancel'

        expect(page).not_to have_selector('.board-new-issue-form')
      end
    end

    it 'creates new issue, places it on top of the list, and opens sidebar' do
      page.within(first('.board')) do
        dropdown = first("[data-testid='header-list-actions']")
        dropdown.click
        click_button 'Create new issue'
      end

      page.within(first('.board-new-issue-form')) do
        find('.form-control').set('bug')
        click_button 'Create issue'
      end

      wait_for_requests

      page.within(first('.board [data-testid="issue-count-badge"]')) do
        expect(page).to have_content('2')
      end

      page.within(first('.board-card')) do
        issue = project.issues.find_by_title('bug')

        expect(issue.relative_position).to be < existing_issue.relative_position

        expect(page).to have_content(issue.to_reference)
        expect(page).to have_link(issue.title, href: /#{issue_path(issue)}/)
      end

      expect(page).to have_selector('[data-testid="issue-boards-sidebar"]')
    end

    it 'successfuly loads labels to be added to newly created issue' do
      page.within(first('.board')) do
        dropdown = first("[data-testid='header-list-actions']")
        dropdown.click
        click_button 'Create new issue'
      end

      page.within(first('.board-new-issue-form')) do
        find('.form-control').set('new issue')
        click_button 'Create issue'
      end

      wait_for_requests

      page.within('[data-testid="sidebar-labels"]') do
        click_button 'Edit'

        wait_for_requests

        expect(page).to have_content 'Label 1'
      end
    end

    it 'allows creating an issue in newly created list' do
      click_button 'Create list'
      wait_for_all_requests

      click_button 'Select a label'
      find('label', text: label.title).click
      click_button 'Add to board'

      wait_for_all_requests

      page.within('.board:nth-child(2)') do
        dropdown = first("[data-testid='header-list-actions']")
        dropdown.click
        click_button('Create new issue')

        page.within(first('.board-new-issue-form')) do
          find('.form-control').set('new issue')
          click_button 'Create issue'
        end

        wait_for_all_requests

        page.within('.board-card') do
          expect(page).to have_content 'new issue'
        end
      end
    end
  end

  context 'unauthorized user' do
    before do
      visit project_board_path(project, board)
      wait_for_requests
    end

    it 'does not display new issue button in open list' do
      expect(page).not_to have_selector("[data-testid='header-list-actions']")
      expect(first('.board')).not_to have_button('Create new issue')
    end

    it 'does not display new issue button in label list' do
      page.within('.board:nth-child(2)') do
        expect(page).not_to have_selector("[data-testid='header-list-actions']")
        expect(page).not_to have_button('Create new issue')
      end
    end
  end

  context 'group boards' do
    let_it_be(:group) { create(:group, :public) }
    let_it_be(:project) { create(:project, namespace: group, name: "root project") }
    let_it_be(:subgroup) { create(:group, parent: group) }
    let_it_be(:subproject1) { create(:project, group: subgroup, name: "sub project1") }
    let_it_be(:subproject2) { create(:project, group: subgroup, name: "sub project2") }
    let_it_be(:group_board) { create(:board, group: group) }
    let_it_be(:project_label) { create(:label, project: project, name: 'label') }
    let_it_be(:list) { create(:list, board: group_board, label: project_label, position: 0) }

    context 'for unauthorized users' do
      before do
        visit group_board_path(group, group_board)
        wait_for_requests
      end

      context 'when backlog does not exist' do
        it 'does not display new issue button in label list' do
          page.within('.board.is-draggable') do
            expect(page).not_to have_selector("[data-testid='header-list-actions']")
            expect(page).not_to have_button('Create new issue')
          end
        end
      end

      context 'when backlog list already exists' do
        let_it_be(:backlog_list) { create(:backlog_list, board: group_board) }

        it 'does not display new issue button in open list' do
          expect(page).not_to have_selector("[data-testid='header-list-actions']")
          expect(first('.board')).not_to have_button('Create new issue')
        end

        it 'does not display new issue button in label list' do
          page.within('.board.is-draggable') do
            expect(page).not_to have_selector("[data-testid='header-list-actions']")
            expect(page).not_to have_button('Create new issue')
          end
        end
      end
    end

    context 'for authorized users' do
      before do
        project.add_reporter(user)
        subproject1.add_reporter(user)

        sign_in(user)
        visit group_board_path(group, group_board)
        wait_for_requests
      end

      context 'when backlog does not exist' do
        it 'display new issue button in label list' do
          dropdown = first("[data-testid='header-list-actions']")
          dropdown.click
          expect(board_list_header).to have_button('Create new issue')
        end
      end

      context 'project select dropdown' do
        let_it_be(:backlog_list) { create(:backlog_list, board: group_board) }

        before do
          page.within(board_list_header) do
            dropdown = first("[data-testid='header-list-actions']")
            dropdown.click
            click_button 'Create new issue'
          end

          project_select_dropdown.click

          wait_for_requests
        end

        it 'lists a project which is a direct descendant of the top-level group' do
          expect(project_select_dropdown).to have_selector("li", text: "root project")
        end

        it 'lists a project that belongs to a subgroup' do
          expect(project_select_dropdown).to have_selector("li", text: "sub project1")
        end

        it "does not list projects to which user doesn't have access" do
          expect(project_select_dropdown).not_to have_selector("li", text: "sub project2")
        end
      end
    end
  end
end