26e9efc011
Added usage ping counter when the user makes a search through the navbar search component.
49 lines
1.2 KiB
Ruby
49 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'Global search' do
|
|
let(:user) { create(:user) }
|
|
let(:project) { create(:project, namespace: user.namespace) }
|
|
|
|
before do
|
|
project.add_maintainer(user)
|
|
sign_in(user)
|
|
|
|
visit dashboard_projects_path
|
|
end
|
|
|
|
it 'increases usage ping searches counter' do
|
|
expect(Gitlab::UsageDataCounters::SearchCounter).to receive(:increment_navbar_searches_count)
|
|
|
|
fill_in "search", with: "foobar"
|
|
click_button "Go"
|
|
end
|
|
|
|
describe 'I search through the issues and I see pagination' do
|
|
before do
|
|
allow_any_instance_of(Gitlab::SearchResults).to receive(:per_page).and_return(1)
|
|
create_list(:issue, 2, project: project, title: 'initial')
|
|
end
|
|
|
|
it "has a pagination" do
|
|
fill_in "search", with: "initial"
|
|
click_button "Go"
|
|
|
|
select_filter("Issues")
|
|
expect(page).to have_selector('.gl-pagination .next')
|
|
end
|
|
end
|
|
|
|
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
|
|
end
|