summaryrefslogtreecommitdiff
path: root/spec/features/issues/filter_issues_spec.rb
blob: 7d6817420452738dd4763f8fe615f0505ed9a8c2 (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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
require 'rails_helper'

describe 'Filter issues', feature: true do
  include WaitForAjax

  let!(:group)     { create(:group) }
  let!(:project)   { create(:project) }
  let!(:user)      { create(:user)}
  let!(:user)      { create(:user) }
  let!(:user2)      { create(:user) }
  let!(:milestone) { create(:milestone, project: project) }
  let!(:label)     { create(:label, project: project) }
  let!(:wontfix)   { create(:label, project: project, title: "Won't fix") }

  let!(:bug_label) { create(:label, project: project, title: 'bug') }
  let!(:caps_sensitive_label) { create(:label, project: project, title: 'CAPS_sensitive') }
  let!(:milestone) { create(:milestone, title: "8", project: project) }

  def input_filtered_search(search_term)
    filtered_search = find('.filtered-search')
    filtered_search.set(search_term)
    filtered_search.send_keys(:enter)
  end

  def expect_no_issues_list
    page.within '.issues-list' do
      expect(page).not_to have_selector('.issue')
    end
  end

  def expect_issues_list_count(open_count, closed_count = 0)
    all_count = open_count + closed_count

    expect(page).to have_issuable_counts(open: open_count, closed: closed_count, all: all_count)
    page.within '.issues-list' do
      expect(page).to have_selector('.issue', count: open_count)
    end
  end

  before do
    project.team << [user, :master]
    project.team << [user2, :master]
    group.add_developer(user)
    group.add_developer(user2)
    login_as(user)
    create(:issue, project: project)

    create(:issue, title: "Bug report 1", project: project)
    create(:issue, title: "Bug report 2", project: project)
    create(:issue, title: "issue with 'single quotes'", project: project)
    create(:issue, title: "issue with \"double quotes\"", project: project)
    create(:issue, title: "issue with !@\#{$%^&*()-+", project: project)
    create(:issue, title: "issue by assignee", project: project, milestone: milestone, author: user, assignee: user)
    create(:issue, title: "issue by assignee with searchTerm", project: project, milestone: milestone, author: user, assignee: user)

    issue = create(:issue,
      title: "Bug 2",
      project: project,
      milestone: milestone,
      author: user,
      assignee: user)
    issue.labels << bug_label

    issue_with_caps_label = create(:issue, 
      title: "issue by assignee with searchTerm and label", 
      project: project, 
      milestone: milestone, 
      author: user, 
      assignee: user)
    issue_with_caps_label.labels << caps_sensitive_label

    issue_with_everything = create(:issue, 
      title: "Bug report with everything you thought was possible", 
      project: project, 
      milestone: milestone, 
      author: user, 
      assignee: user)
    issue_with_everything.labels << bug_label
    issue_with_everything.labels << caps_sensitive_label

    visit namespace_project_issues_path(project.namespace, project)
  end

  describe 'filter issues by author' do
    context 'only author', js: true do
      it 'filters issues by searched author' do
        input_filtered_search("author:#{user.username}")
        expect_issues_list_count(5)
      end

      it 'filters issues by invalid author' do
        # YOLO
      end

      it 'filters issues by multiple authors' do
        # YOLO
      end
    end

    context 'author with other filters', js: true do
      it 'filters issues by searched author and text' do
        input_filtered_search("author:#{user.username} issue")
        expect_issues_list_count(3)
      end

      it 'filters issues by searched author, assignee and text' do
        input_filtered_search("author:#{user.username} assignee:#{user.username} issue")
        expect_issues_list_count(3)
      end

      it 'filters issues by searched author, assignee, label, and text' do
        input_filtered_search("author:#{user.username} assignee:#{user.username} label:#{caps_sensitive_label.title} issue")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched author, assignee, label, milestone and text' do
        input_filtered_search("author:#{user.username} assignee:#{user.username} label:#{caps_sensitive_label.title} milestone:#{milestone.title} issue")
        expect_issues_list_count(1)
      end
    end

    context 'sorting', js: true do
      # TODO
    end
  end

  describe 'filter issues by assignee' do
    context 'only assignee', js: true do
      it 'filters issues by searched assignee' do
        input_filtered_search("assignee:#{user.username}")
        expect_issues_list_count(5)
      end

      it 'filters issues by no assignee' do
        # TODO
      end

      it 'filters issues by invalid assignee' do
        # YOLO
      end

      it 'filters issues by multiple assignees' do
        # YOLO
      end
    end

    context 'assignee with other filters', js: true do
      it 'filters issues by searched assignee and text' do
        input_filtered_search("assignee:#{user.username} searchTerm")
        expect_issues_list_count(2)
      end

      it 'filters issues by searched assignee, author and text' do
        input_filtered_search("assignee:#{user.username} author:#{user.username} searchTerm")
        expect_issues_list_count(2)
      end

      it 'filters issues by searched assignee, author, label, text' do
        input_filtered_search("assignee:#{user.username} author:#{user.username} label:#{caps_sensitive_label.title} searchTerm")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched assignee, author, label, milestone and text' do
        input_filtered_search("assignee:#{user.username} author:#{user.username} label:#{caps_sensitive_label.title} milestone:#{milestone.title} searchTerm")
        expect_issues_list_count(1)
      end
    end

    context 'sorting', js: true do
      # TODO
    end
  end

  describe 'filter issues by label' do
    context 'only label', js: true do
      it 'filters issues by searched label' do
        input_filtered_search("label:#{bug_label.title}")
        expect_issues_list_count(2)
      end

      it 'filters issues by no label' do
        # TODO
      end

      it 'filters issues by invalid label' do
        # YOLO
      end

      it 'filters issues by multiple labels' do
        input_filtered_search("label:#{bug_label.title} label:#{caps_sensitive_label.title}")
        expect_issues_list_count(1)
      end
    end

    context 'label with other filters', js: true do
      it 'filters issues by searched label and text' do
        input_filtered_search("label:#{caps_sensitive_label.title} bug")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched label, author and text' do
        input_filtered_search("label:#{caps_sensitive_label.title} author:#{user.username} bug")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched label, author, assignee and text' do
        input_filtered_search("label:#{caps_sensitive_label.title} author:#{user.username} assignee:#{user.username} bug")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched label, author, assignee, milestone and text' do
        input_filtered_search("label:#{caps_sensitive_label.title} author:#{user.username} assignee:#{user.username} milestone:#{milestone.title} bug")
        expect_issues_list_count(1)
      end
    end

    context 'multiple labels with other filters', js: true do
      it 'filters issues by searched label, label2, and text' do
        input_filtered_search("label:#{bug_label.title} label:#{caps_sensitive_label.title} bug")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched label, label2, author and text' do
        input_filtered_search("label:#{bug_label.title} label:#{caps_sensitive_label.title} author:#{user.username} bug")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched label, label2, author, assignee and text' do
        input_filtered_search("label:#{bug_label.title} label:#{caps_sensitive_label.title} author:#{user.username} assignee:#{user.username} bug")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched label, label2, author, assignee, milestone and text' do
        input_filtered_search("label:#{bug_label.title} label:#{caps_sensitive_label.title} author:#{user.username} assignee:#{user.username} milestone:#{milestone.title} bug")
        expect_issues_list_count(1)
      end
    end

    it "selects and unselects `won't fix`" do
      find('.dropdown-menu-labels a', text: wontfix.title).click
      find('.dropdown-menu-labels a', text: wontfix.title).click

      find('.dropdown-menu-close-icon').click
      expect(page).not_to have_css('.filtered-labels')
    context 'sorting', js: true do
      # TODO
    end
  end

  describe 'filter issues by milestone' do
    context 'only milestone', js: true do
      it 'filters issues by searched milestone' do
        input_filtered_search("milestone:#{milestone.title}")
        expect_issues_list_count(5)
      end

      it 'filters issues by no milestone' do
        # TODO
      end

      it 'filters issues by upcoming milestones' do
        # TODO
      end

      it 'filters issues by invalid milestones' do
        # YOLO
      end

      it 'filters issues by multiple milestones' do
        # YOLO
      end
    end

    context 'milestone with other filters', js: true do
      it 'filters issues by searched milestone and text' do
      end

      it 'filters issues by searched milestone, author and text' do
      end

      it 'filters issues by searched milestone, author, assignee and text' do
      end

      it 'filters issues by searched milestone, author, assignee, label and text' do
      end
    end

    context 'sorting', js: true do
      # TODO
    end
  end

  describe 'filter issues by text' do
    context 'only text', js: true do
      it 'filters issues by searched text' do
        input_filtered_search('Bug')
        expect_issues_list_count(4)
      end

      it 'filters issues by multiple searched text' do
        input_filtered_search('Bug report')
        expect_issues_list_count(3)
      end

      it 'filters issues by case insensitive searched text' do
        input_filtered_search('bug report')
        expect_issues_list_count(3)
      end

      it 'filters issues by searched text containing single quotes' do
        input_filtered_search('\'single quotes\'')
        expect_issues_list_count(1)
      end

      it 'filters issues by searched text containing double quotes' do
        input_filtered_search('"double quotes"')
        expect_issues_list_count(1)
      end

      it 'filters issues by searched text containing special characters' do
        input_filtered_search('!@#{$%^&*()-+')
        expect_issues_list_count(1)
      end

      it 'does not show any issues' do
        input_filtered_search('testing')
        expect_no_issues_list()
      end
    end

    context 'searched text with other filters', js: true do
      it 'filters issues by searched text and author' do
        input_filtered_search("bug author:#{user.username}")
        expect_issues_list_count(2)
      end

      it 'filters issues by searched text, author and more text' do
        input_filtered_search("bug author:#{user.username} report")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched text, author and assignee' do
        input_filtered_search("bug author:#{user.username} assignee:#{user.username}")
        expect_issues_list_count(2)
      end

      it 'filters issues by searched text, author, more text and assignee' do
        input_filtered_search("bug author:#{user.username} report assignee:#{user.username}")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched text, author, more text, assignee and even more text' do
        input_filtered_search("bug author:#{user.username} report assignee:#{user.username} with")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched text, author, assignee and label' do
        input_filtered_search("bug author:#{user.username} assignee:#{user.username} label:#{bug_label.title}")
        expect_issues_list_count(2)
      end

      it 'filters issues by searched text, author, text, assignee, text, label and text' do
        input_filtered_search("bug author:#{user.username} report assignee:#{user.username} with label:#{bug_label.title} everything")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched text, author, assignee, label and milestone' do
        input_filtered_search("bug author:#{user.username} assignee:#{user.username} label:#{bug_label.title} milestone:#{milestone.title}")
        expect_issues_list_count(2)
      end

      it 'filters issues by searched text, author, text, assignee, text, label, text, milestone and text' do
        input_filtered_search("bug author:#{user.username} report assignee:#{user.username} with label:#{bug_label.title} everything milestone:#{milestone.title} you")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched text, author, assignee, multiple labels and milestone' do
        input_filtered_search("bug author:#{user.username} assignee:#{user.username} label:#{bug_label.title} label:#{caps_sensitive_label.title} milestone:#{milestone.title}")
        expect_issues_list_count(1)
      end

      it 'filters issues by searched text, author, text, assignee, text, label1, text, label2, text, milestone and text' do
        input_filtered_search("bug author:#{user.username} report assignee:#{user.username} with label:#{bug_label.title} everything label:#{caps_sensitive_label.title} you milestone:#{milestone.title} thought")
        expect_issues_list_count(1)
      end
    end

    context 'sorting', js: true do
      # TODO
    end
  end

  it 'updates atom feed link for project issues' do
    visit namespace_project_issues_path(project.namespace, project, milestone_title: '', assignee_id: user.id)
    link = find('.nav-controls a', text: 'Subscribe')
    params = CGI::parse(URI.parse(link[:href]).query)
    auto_discovery_link = find('link[type="application/atom+xml"]', visible: false)
    auto_discovery_params = CGI::parse(URI.parse(auto_discovery_link[:href]).query)
    expect(params).to include('private_token' => [user.private_token])
    expect(params).to include('milestone_title' => [''])
    expect(params).to include('assignee_id' => [user.id.to_s])
    expect(auto_discovery_params).to include('private_token' => [user.private_token])
    expect(auto_discovery_params).to include('milestone_title' => [''])
    expect(auto_discovery_params).to include('assignee_id' => [user.id.to_s])
  end

  it 'updates atom feed link for group issues' do
    visit issues_group_path(group, milestone_title: '', assignee_id: user.id)
    link = find('.nav-controls a', text: 'Subscribe')
    params = CGI::parse(URI.parse(link[:href]).query)
    auto_discovery_link = find('link[type="application/atom+xml"]', visible: false)
    auto_discovery_params = CGI::parse(URI.parse(auto_discovery_link[:href]).query)
    expect(params).to include('private_token' => [user.private_token])
    expect(params).to include('milestone_title' => [''])
    expect(params).to include('assignee_id' => [user.id.to_s])
    expect(auto_discovery_params).to include('private_token' => [user.private_token])
    expect(auto_discovery_params).to include('milestone_title' => [''])
    expect(auto_discovery_params).to include('assignee_id' => [user.id.to_s])
  end
end