summaryrefslogtreecommitdiff
path: root/spec/features/issues/filtered_search/dropdown_label_spec.rb
blob: d007e160b3e9359652300224d365bdbe36b0ca8c (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
require 'rails_helper'

describe 'Dropdown label', js: true, feature: true do
  include WaitForAjax

  let!(:project) { create(:empty_project) }
  let!(:user) { create(:user) }
  let!(:bug_label) { create(:label, project: project, title: 'bug') }
  let!(:uppercase_label) { create(:label, project: project, title: 'BUG') }
  let!(:two_words_label) { create(:label, project: project, title: 'High Priority') }
  let!(:wont_fix_label) { create(:label, project: project, title: 'Won"t Fix') }
  let!(:special_label) { create(:label, project: project, title: '!@#$%^+&*()')}
  let!(:long_label) { create(:label, project: project, title: 'this is a very long title this is a very long title this is a very long title this is a very long title this is a very long title')}
  let(:filtered_search) { find('.filtered-search') }
  let(:js_dropdown_label) { '#js-dropdown-label' }

  def send_keys_to_filtered_search(input)
    input.split("").each do |i|
      filtered_search.send_keys(i)
      sleep 3
      wait_for_ajax
      sleep 3
    end
  end

  def dropdown_label_size
    page.all('#js-dropdown-label .filter-dropdown .filter-dropdown-item').size
  end

  def click_label(text)
    find('#js-dropdown-label .filter-dropdown .filter-dropdown-item', text: text).click
  end

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

    visit namespace_project_issues_path(project.namespace, project)
  end

  describe 'behavior' do
    it 'opens when the search bar has label:' do
      filtered_search.set('label:')
      expect(page).to have_css(js_dropdown_label, visible: true)
    end

    it 'closes when the search bar is unfocused' do
      find('body').click()
      expect(page).to have_css(js_dropdown_label, visible: false)
    end

    it 'should show loading indicator when opened' do
      filtered_search.set('label:')
      expect(page).to have_css('#js-dropdown-label .filter-dropdown-loading', visible: true)
    end

    it 'should hide loading indicator when loaded' do
      send_keys_to_filtered_search('label:')
      expect(page).not_to have_css('#js-dropdown-label .filter-dropdown-loading')
    end

    it 'should load all the labels when opened' do
      send_keys_to_filtered_search('label:')
      expect(dropdown_label_size).to be > 0
    end
  end

  describe 'filtering' do
    before do
      filtered_search.set('label:')
    end

    it 'filters by name' do
      send_keys_to_filtered_search('b')
      expect(dropdown_label_size).to eq(2)
    end

    it 'filters by case insensitive name' do
      send_keys_to_filtered_search('B')
      expect(dropdown_label_size).to eq(2)
    end

    it 'filters by name with symbol' do
      send_keys_to_filtered_search('~bu')
      expect(dropdown_label_size).to eq(2)
    end

    it 'filters by case insensitive name with symbol' do
      send_keys_to_filtered_search('~BU')
      expect(dropdown_label_size).to eq(2)
    end

    it 'filters by multiple names using double quotes' do
      send_keys_to_filtered_search('"High P')
      expect(dropdown_label_size).to eq(1)
    end

    it 'filters by multiple names using single quotes' do
      send_keys_to_filtered_search('\'High P')
      expect(dropdown_label_size).to eq(1)
    end

    it 'filters by multiple names using single and double quotes' do
      send_keys_to_filtered_search('~"won`\'t f')
      expect(dropdown_label_size).to eq(1)
    end

    it 'filters by multiple names using double quotes with symbol' do
      send_keys_to_filtered_search('~"High P')
      expect(dropdown_label_size).to eq(1)
    end

    it 'filters by multiple names using single quotes with symbol' do
      send_keys_to_filtered_search('~\'High P')
      expect(dropdown_label_size).to eq(1)
    end

    it 'filters by special characters' do
      send_keys_to_filtered_search('^+')
      expect(dropdown_label_size).to eq(1)
    end

    it 'filters by special characters with symbol' do
      send_keys_to_filtered_search('~^+')
      expect(dropdown_label_size).to eq(1)
    end
  end

  describe 'selecting from dropdown' do
    before do
      filtered_search.set('label:')
    end

    it 'fills in the label name when the label has not been filled' do
      click_label(bug_label.title)
      expect(page).to have_css(js_dropdown_label, visible: false)
      expect(filtered_search.value).to eq("label:~#{bug_label.title}")
    end

    it 'fills in the label name when the label is partially filled' do
      send_keys_to_filtered_search('bu')
      click_label(bug_label.title)
      expect(page).to have_css(js_dropdown_label, visible: false)
      expect(filtered_search.value).to eq("label:~#{bug_label.title}")
    end

    it 'fills in the label name that contains multiple words' do
      click_label(two_words_label.title)
      expect(page).to have_css(js_dropdown_label, visible: false)
      expect(filtered_search.value).to eq("label:~\"#{two_words_label.title}\"")
    end

    it 'fills in the label name that contains multiple words and is very long' do
      click_label(long_label.title)
      expect(page).to have_css(js_dropdown_label, visible: false)
      expect(filtered_search.value).to eq("label:~\"#{long_label.title}\"")
    end

    it 'fills in the label name that contains double quotes' do
      click_label(wont_fix_label.title)
      expect(page).to have_css(js_dropdown_label, visible: false)
      expect(filtered_search.value).to eq("label:~'#{wont_fix_label.title}'")
    end

    it 'fills in the label name with the correct capitalization' do
      click_label(uppercase_label.title)
      expect(page).to have_css(js_dropdown_label, visible: false)
      expect(filtered_search.value).to eq("label:~#{uppercase_label.title}")
    end

    it 'fills in the label name with special characters' do
      click_label(special_label.title)
      expect(page).to have_css(js_dropdown_label, visible: false)
      expect(filtered_search.value).to eq("label:~#{special_label.title}")
    end

    it 'selects `no label`' do
      click_label('No Label')
      expect(page).to have_css(js_dropdown_label, visible: false)
      expect(filtered_search.value).to eq("label:none")
    end
  end

  describe 'input has existing content' do
    it 'opens label dropdown with existing search term' do
      filtered_search.set('searchTerm label:')
      expect(page).to have_css(js_dropdown_label, visible: true)
    end

    it 'opens label dropdown with existing author' do
      filtered_search.set('author:@person label:')
      expect(page).to have_css(js_dropdown_label, visible: true)
    end

    it 'opens label dropdown with existing assignee' do
      filtered_search.set('assignee:@person label:')
      expect(page).to have_css(js_dropdown_label, visible: true)
    end

    it 'opens label dropdown with existing label' do
      filtered_search.set('label:~urgent label:')
      expect(page).to have_css(js_dropdown_label, visible: true)
    end

    it 'opens label dropdown with existing milestone' do
      filtered_search.set('milestone:%v2.0 label:')
      expect(page).to have_css(js_dropdown_label, visible: true)
    end
  end
end