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

describe 'Dropdown hint', :js, :feature do
  include FilteredSearchHelpers

  let!(:project) { create(:empty_project) }
  let!(:user) { create(:user) }
  let(:filtered_search) { find('.filtered-search') }
  let(:js_dropdown_hint) { '#js-dropdown-hint' }

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

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

    visit namespace_project_issues_path(project.namespace, project)
  end

  describe 'behavior' do
    before do
      expect(page).to have_css(js_dropdown_hint, visible: false)
      filtered_search.click
    end

    it 'opens when the search bar is first focused' do
      expect(page).to have_css(js_dropdown_hint, visible: true)
    end

    it 'closes when the search bar is unfocused' do
      find('body').click

      expect(page).to have_css(js_dropdown_hint, visible: false)
    end
  end

  describe 'filtering' do
    it 'does not filter `Press Enter or click to search`' do
      filtered_search.set('randomtext')

      hint_dropdown = find(js_dropdown_hint)

      expect(hint_dropdown).to have_content('Press Enter or click to search')
      expect(hint_dropdown).to have_selector('.filter-dropdown .filter-dropdown-item', count: 0)
    end

    it 'filters with text' do
      filtered_search.set('a')

      expect(find(js_dropdown_hint)).to have_selector('.filter-dropdown .filter-dropdown-item', count: 3)
    end
  end

  describe 'selecting from dropdown with no input' do
    before do
      filtered_search.click
    end

    it 'opens the author dropdown when you click on author' do
      click_hint('author')

      expect(page).to have_css(js_dropdown_hint, visible: false)
      expect(page).to have_css('#js-dropdown-author', visible: true)
      expect_tokens([{ name: 'author' }])
      expect_filtered_search_input_empty
    end

    it 'opens the assignee dropdown when you click on assignee' do
      click_hint('assignee')

      expect(page).to have_css(js_dropdown_hint, visible: false)
      expect(page).to have_css('#js-dropdown-assignee', visible: true)
      expect_tokens([{ name: 'assignee' }])
      expect_filtered_search_input_empty
    end

    it 'opens the milestone dropdown when you click on milestone' do
      click_hint('milestone')

      expect(page).to have_css(js_dropdown_hint, visible: false)
      expect(page).to have_css('#js-dropdown-milestone', visible: true)
      expect_tokens([{ name: 'milestone' }])
      expect_filtered_search_input_empty
    end

    it 'opens the label dropdown when you click on label' do
      click_hint('label')

      expect(page).to have_css(js_dropdown_hint, visible: false)
      expect(page).to have_css('#js-dropdown-label', visible: true)
      expect_tokens([{ name: 'label' }])
      expect_filtered_search_input_empty
    end
  end

  describe 'selecting from dropdown with some input' do
    it 'opens the author dropdown when you click on author' do
      filtered_search.set('auth')
      click_hint('author')

      expect(page).to have_css(js_dropdown_hint, visible: false)
      expect(page).to have_css('#js-dropdown-author', visible: true)
      expect_tokens([{ name: 'author' }])
      expect_filtered_search_input_empty
    end

    it 'opens the assignee dropdown when you click on assignee' do
      filtered_search.set('assign')
      click_hint('assignee')

      expect(page).to have_css(js_dropdown_hint, visible: false)
      expect(page).to have_css('#js-dropdown-assignee', visible: true)
      expect_tokens([{ name: 'assignee' }])
      expect_filtered_search_input_empty
    end

    it 'opens the milestone dropdown when you click on milestone' do
      filtered_search.set('mile')
      click_hint('milestone')

      expect(page).to have_css(js_dropdown_hint, visible: false)
      expect(page).to have_css('#js-dropdown-milestone', visible: true)
      expect_tokens([{ name: 'milestone' }])
      expect_filtered_search_input_empty
    end

    it 'opens the label dropdown when you click on label' do
      filtered_search.set('lab')
      click_hint('label')

      expect(page).to have_css(js_dropdown_hint, visible: false)
      expect(page).to have_css('#js-dropdown-label', visible: true)
      expect_tokens([{ name: 'label' }])
      expect_filtered_search_input_empty
    end
  end

  describe 'reselecting from dropdown' do
    it 'reuses existing author text' do
      filtered_search.send_keys('author:')
      filtered_search.send_keys(:backspace)
      click_hint('author')

      expect_tokens([{ name: 'author' }])
      expect_filtered_search_input_empty
    end

    it 'reuses existing assignee text' do
      filtered_search.send_keys('assignee:')
      filtered_search.send_keys(:backspace)
      click_hint('assignee')

      expect_tokens([{ name: 'assignee' }])
      expect_filtered_search_input_empty
    end

    it 'reuses existing milestone text' do
      filtered_search.send_keys('milestone:')
      filtered_search.send_keys(:backspace)
      click_hint('milestone')

      expect_tokens([{ name: 'milestone' }])
      expect_filtered_search_input_empty
    end

    it 'reuses existing label text' do
      filtered_search.send_keys('label:')
      filtered_search.send_keys(:backspace)
      click_hint('label')

      expect_tokens([{ name: 'label' }])
      expect_filtered_search_input_empty
    end
  end
end