2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-07 13:36:58 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
describe 'Global search' do
|
2016-11-07 13:36:58 -05:00
|
|
|
let(:user) { create(:user) }
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project, namespace: user.namespace) }
|
2016-11-07 13:36:58 -05:00
|
|
|
|
|
|
|
before do
|
2018-07-11 10:36:08 -04:00
|
|
|
project.add_maintainer(user)
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2019-07-29 05:58:58 -04:00
|
|
|
|
|
|
|
visit dashboard_projects_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'increases usage ping searches counter' do
|
|
|
|
expect(Gitlab::UsageDataCounters::SearchCounter).to receive(:increment_navbar_searches_count)
|
|
|
|
|
2019-08-30 05:49:14 -04:00
|
|
|
submit_search('foobar')
|
2016-11-07 13:36:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'I search through the issues and I see pagination' do
|
|
|
|
before do
|
2019-11-13 22:06:25 -05:00
|
|
|
allow_next_instance_of(Gitlab::SearchResults) do |instance|
|
|
|
|
allow(instance).to receive(:per_page).and_return(1)
|
|
|
|
end
|
2016-11-07 13:36:58 -05:00
|
|
|
create_list(:issue, 2, project: project, title: 'initial')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has a pagination" do
|
2019-08-30 05:49:14 -04:00
|
|
|
submit_search('initial')
|
|
|
|
select_search_scope('Issues')
|
2016-11-07 13:36:58 -05:00
|
|
|
|
2018-01-23 06:03:15 -05:00
|
|
|
expect(page).to have_selector('.gl-pagination .next')
|
2016-11-07 13:36:58 -05:00
|
|
|
end
|
|
|
|
end
|
2019-05-24 15:20:05 -04:00
|
|
|
|
|
|
|
it 'closes the dropdown on blur', :js do
|
|
|
|
fill_in 'search', with: "a"
|
|
|
|
dropdown = find('.js-dashboard-search-options')
|
|
|
|
|
|
|
|
expect(dropdown[:class]).to include 'show'
|
|
|
|
|
|
|
|
find('#search').send_keys(:backspace)
|
|
|
|
find('body').click
|
|
|
|
|
|
|
|
expect(dropdown[:class]).not_to include 'show'
|
|
|
|
end
|
2016-11-07 13:36:58 -05:00
|
|
|
end
|