2019-09-30 08:06:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-10-20 01:05:20 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe SearchHelper do
|
|
|
|
# Override simple_sanitize for our testing purposes
|
|
|
|
def simple_sanitize(str)
|
|
|
|
str
|
|
|
|
end
|
|
|
|
|
2019-08-30 05:49:14 -04:00
|
|
|
describe 'search_autocomplete_opts' do
|
2013-10-20 01:05:20 -04:00
|
|
|
context "with no current user" do
|
2013-12-14 08:43:48 -05:00
|
|
|
before do
|
|
|
|
allow(self).to receive(:current_user).and_return(nil)
|
|
|
|
end
|
2013-10-20 01:05:20 -04:00
|
|
|
|
2019-04-05 04:43:27 -04:00
|
|
|
it "returns nil" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(search_autocomplete_opts("q")).to be_nil
|
2013-10-20 01:05:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-03 01:49:19 -04:00
|
|
|
context "with a standard user" do
|
2019-01-16 07:09:29 -05:00
|
|
|
let(:user) { create(:user) }
|
2013-10-20 01:05:20 -04:00
|
|
|
|
|
|
|
before do
|
2013-12-14 08:43:48 -05:00
|
|
|
allow(self).to receive(:current_user).and_return(user)
|
2013-10-20 01:05:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "includes Help sections" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(search_autocomplete_opts("hel").size).to eq(9)
|
2013-10-20 01:05:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "includes default sections" do
|
2017-09-03 01:49:19 -04:00
|
|
|
expect(search_autocomplete_opts("dash").size).to eq(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not include admin sections" do
|
|
|
|
expect(search_autocomplete_opts("admin").size).to eq(0)
|
2013-10-20 01:05:20 -04:00
|
|
|
end
|
|
|
|
|
2016-09-07 07:40:14 -04:00
|
|
|
it "does not allow regular expression in search term" do
|
|
|
|
expect(search_autocomplete_opts("(webhooks|api)").size).to eq(0)
|
|
|
|
end
|
|
|
|
|
2013-10-20 01:05:20 -04:00
|
|
|
it "includes the user's groups" do
|
|
|
|
create(:group).add_owner(user)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(search_autocomplete_opts("gro").size).to eq(1)
|
2013-10-20 01:05:20 -04:00
|
|
|
end
|
|
|
|
|
2017-01-27 08:52:50 -05:00
|
|
|
it "includes nested group" do
|
|
|
|
create(:group, :nested, name: 'foo').add_owner(user)
|
|
|
|
expect(search_autocomplete_opts('foo').size).to eq(1)
|
|
|
|
end
|
|
|
|
|
2013-10-20 01:05:20 -04:00
|
|
|
it "includes the user's projects" do
|
2017-08-02 15:55:11 -04:00
|
|
|
project = create(:project, namespace: create(:namespace, owner: user))
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(search_autocomplete_opts(project.name).size).to eq(1)
|
2013-10-20 01:05:20 -04:00
|
|
|
end
|
|
|
|
|
2018-07-17 01:48:39 -04:00
|
|
|
it "includes the required project attrs" do
|
|
|
|
project = create(:project, namespace: create(:namespace, owner: user))
|
|
|
|
result = search_autocomplete_opts(project.name).first
|
|
|
|
|
|
|
|
expect(result.keys).to match_array(%i[category id value label url avatar_url])
|
|
|
|
end
|
|
|
|
|
|
|
|
it "includes the required group attrs" do
|
|
|
|
create(:group).add_owner(user)
|
|
|
|
result = search_autocomplete_opts("gro").first
|
|
|
|
|
|
|
|
expect(result.keys).to match_array(%i[category id label url avatar_url])
|
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "does not include the public group" do
|
2015-12-28 06:32:18 -05:00
|
|
|
group = create(:group)
|
2016-02-04 11:00:32 -05:00
|
|
|
expect(search_autocomplete_opts(group.name).size).to eq(0)
|
2015-11-05 05:38:00 -05:00
|
|
|
end
|
|
|
|
|
2013-10-20 01:05:20 -04:00
|
|
|
context "with a current project" do
|
2017-01-25 17:10:32 -05:00
|
|
|
before do
|
|
|
|
@project = create(:project, :repository)
|
|
|
|
end
|
2013-10-20 01:05:20 -04:00
|
|
|
|
|
|
|
it "includes project-specific sections" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(search_autocomplete_opts("Files").size).to eq(1)
|
|
|
|
expect(search_autocomplete_opts("Commits").size).to eq(1)
|
2013-10-20 01:05:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-09-03 01:49:19 -04:00
|
|
|
|
|
|
|
context 'with an admin user' do
|
|
|
|
let(:admin) { create(:admin) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(self).to receive(:current_user).and_return(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "includes admin sections" do
|
|
|
|
expect(search_autocomplete_opts("admin").size).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
2013-10-20 01:05:20 -04:00
|
|
|
end
|
2017-08-02 05:27:24 -04:00
|
|
|
|
2019-08-30 05:49:14 -04:00
|
|
|
describe 'search_entries_info' do
|
|
|
|
using RSpec::Parameterized::TableSyntax
|
|
|
|
|
|
|
|
where(:scope, :label) do
|
2019-09-19 05:06:27 -04:00
|
|
|
'blobs' | 'code result'
|
2019-08-30 05:49:14 -04:00
|
|
|
'commits' | 'commit'
|
|
|
|
'issues' | 'issue'
|
|
|
|
'merge_requests' | 'merge request'
|
|
|
|
'milestones' | 'milestone'
|
2019-09-19 05:06:27 -04:00
|
|
|
'notes' | 'comment'
|
2019-08-30 05:49:14 -04:00
|
|
|
'projects' | 'project'
|
2019-09-19 05:06:27 -04:00
|
|
|
'snippet_blobs' | 'snippet result'
|
2019-08-30 05:49:14 -04:00
|
|
|
'snippet_titles' | 'snippet'
|
|
|
|
'users' | 'user'
|
2019-09-19 05:06:27 -04:00
|
|
|
'wiki_blobs' | 'wiki result'
|
2019-08-30 05:49:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
with_them do
|
|
|
|
it 'uses the correct singular label' do
|
|
|
|
collection = Kaminari.paginate_array([:foo]).page(1).per(10)
|
|
|
|
|
|
|
|
expect(search_entries_info(collection, scope, 'foo')).to eq("Showing 1 #{label} for \"foo\"")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'uses the correct plural label' do
|
|
|
|
collection = Kaminari.paginate_array([:foo] * 23).page(1).per(10)
|
|
|
|
|
|
|
|
expect(search_entries_info(collection, scope, 'foo')).to eq("Showing 1 - 10 of 23 #{label.pluralize} for \"foo\"")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error for unrecognized scopes' do
|
|
|
|
expect do
|
|
|
|
collection = Kaminari.paginate_array([:foo]).page(1).per(10)
|
|
|
|
search_entries_info(collection, 'unknown', 'foo')
|
|
|
|
end.to raise_error(RuntimeError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-19 05:06:27 -04:00
|
|
|
describe 'search_entries_empty_message' do
|
|
|
|
it 'returns the formatted entry message' do
|
2019-10-09 08:06:13 -04:00
|
|
|
message = search_entries_empty_message('projects', '<h1>foo</h1>')
|
2019-09-19 05:06:27 -04:00
|
|
|
|
2019-10-09 08:06:13 -04:00
|
|
|
expect(message).to eq("We couldn't find any projects matching <code><h1>foo</h1></code>")
|
2019-09-19 05:06:27 -04:00
|
|
|
expect(message).to be_html_safe
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-02 05:27:24 -04:00
|
|
|
describe 'search_filter_input_options' do
|
|
|
|
context 'project' do
|
|
|
|
before do
|
|
|
|
@project = create(:project, :repository)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes id with type' do
|
|
|
|
expect(search_filter_input_options('type')[:id]).to eq('filtered-search-type')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes project-id' do
|
|
|
|
expect(search_filter_input_options('')[:data]['project-id']).to eq(@project.id)
|
|
|
|
end
|
|
|
|
|
2019-06-13 19:39:39 -04:00
|
|
|
it 'includes project endpoints' do
|
2019-06-24 07:42:33 -04:00
|
|
|
expect(search_filter_input_options('')[:data]['runner-tags-endpoint']).to eq(tag_list_admin_runners_path)
|
2019-06-13 19:39:39 -04:00
|
|
|
expect(search_filter_input_options('')[:data]['labels-endpoint']).to eq(project_labels_path(@project))
|
|
|
|
expect(search_filter_input_options('')[:data]['milestones-endpoint']).to eq(project_milestones_path(@project))
|
2019-10-28 17:06:24 -04:00
|
|
|
expect(search_filter_input_options('')[:data]['releases-endpoint']).to eq(project_releases_path(@project))
|
2017-08-02 05:27:24 -04:00
|
|
|
end
|
2017-11-20 02:49:13 -05:00
|
|
|
|
|
|
|
it 'includes autocomplete=off flag' do
|
|
|
|
expect(search_filter_input_options('')[:autocomplete]).to eq('off')
|
|
|
|
end
|
2017-08-02 05:27:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'group' do
|
|
|
|
before do
|
|
|
|
@group = create(:group, name: 'group')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not includes project-id' do
|
|
|
|
expect(search_filter_input_options('')[:data]['project-id']).to eq(nil)
|
|
|
|
end
|
|
|
|
|
2019-06-13 19:39:39 -04:00
|
|
|
it 'includes group endpoints' do
|
2019-06-24 07:42:33 -04:00
|
|
|
expect(search_filter_input_options('')[:data]['runner-tags-endpoint']).to eq(tag_list_admin_runners_path)
|
2019-06-13 19:39:39 -04:00
|
|
|
expect(search_filter_input_options('')[:data]['labels-endpoint']).to eq(group_labels_path(@group))
|
|
|
|
expect(search_filter_input_options('')[:data]['milestones-endpoint']).to eq(group_milestones_path(@group))
|
2017-08-02 05:27:24 -04:00
|
|
|
end
|
|
|
|
end
|
2018-11-07 00:25:08 -05:00
|
|
|
|
|
|
|
context 'dashboard' do
|
|
|
|
it 'does not include group-id and project-id' do
|
|
|
|
expect(search_filter_input_options('')[:data]['project-id']).to eq(nil)
|
|
|
|
expect(search_filter_input_options('')[:data]['group-id']).to eq(nil)
|
|
|
|
end
|
|
|
|
|
2019-06-13 19:39:39 -04:00
|
|
|
it 'includes dashboard endpoints' do
|
2019-06-24 07:42:33 -04:00
|
|
|
expect(search_filter_input_options('')[:data]['runner-tags-endpoint']).to eq(tag_list_admin_runners_path)
|
2019-06-13 19:39:39 -04:00
|
|
|
expect(search_filter_input_options('')[:data]['labels-endpoint']).to eq(dashboard_labels_path)
|
|
|
|
expect(search_filter_input_options('')[:data]['milestones-endpoint']).to eq(dashboard_milestones_path)
|
2018-11-07 00:25:08 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'search_history_storage_prefix' do
|
|
|
|
context 'project' do
|
|
|
|
it 'returns project full_path' do
|
|
|
|
@project = create(:project, :repository)
|
|
|
|
|
|
|
|
expect(search_history_storage_prefix).to eq(@project.full_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'group' do
|
|
|
|
it 'returns group full_path' do
|
|
|
|
@group = create(:group, :nested, name: 'group-name')
|
|
|
|
|
|
|
|
expect(search_history_storage_prefix).to eq(@group.full_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'dashboard' do
|
|
|
|
it 'returns dashboard' do
|
|
|
|
expect(search_history_storage_prefix).to eq("dashboard")
|
|
|
|
end
|
|
|
|
end
|
2017-08-02 05:27:24 -04:00
|
|
|
end
|
2019-07-15 13:59:57 -04:00
|
|
|
|
|
|
|
describe 'search_filter_link' do
|
|
|
|
it 'renders a search filter link for the current scope' do
|
|
|
|
@scope = 'projects'
|
|
|
|
@search_results = double
|
|
|
|
|
|
|
|
expect(@search_results).to receive(:formatted_count).with('projects').and_return('23')
|
|
|
|
|
|
|
|
link = search_filter_link('projects', 'Projects')
|
|
|
|
|
|
|
|
expect(link).to have_css('li.active')
|
|
|
|
expect(link).to have_link('Projects', href: search_path(scope: 'projects'))
|
|
|
|
expect(link).to have_css('span.badge.badge-pill:not(.js-search-count):not(.hidden):not([data-url])', text: '23')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders a search filter link for another scope' do
|
|
|
|
link = search_filter_link('projects', 'Projects')
|
|
|
|
count_path = search_count_path(scope: 'projects')
|
|
|
|
|
|
|
|
expect(link).to have_css('li:not([class="active"])')
|
|
|
|
expect(link).to have_link('Projects', href: search_path(scope: 'projects'))
|
|
|
|
expect(link).to have_css("span.badge.badge-pill.js-search-count.hidden[data-url='#{count_path}']", text: '')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'merges in the current search params and given params' do
|
|
|
|
expect(self).to receive(:params).and_return(
|
|
|
|
ActionController::Parameters.new(
|
|
|
|
search: 'hello',
|
|
|
|
scope: 'ignored',
|
|
|
|
other_param: 'ignored'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
link = search_filter_link('projects', 'Projects', search: { project_id: 23 })
|
|
|
|
|
|
|
|
expect(link).to have_link('Projects', href: search_path(scope: 'projects', search: 'hello', project_id: 23))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'assigns given data attributes on the list container' do
|
|
|
|
link = search_filter_link('projects', 'Projects', data: { foo: 'bar' })
|
|
|
|
|
|
|
|
expect(link).to have_css('li[data-foo="bar"]')
|
|
|
|
end
|
|
|
|
end
|
2019-10-28 14:06:15 -04:00
|
|
|
|
|
|
|
describe '#show_user_search_tab?' do
|
|
|
|
subject { show_user_search_tab? }
|
|
|
|
|
|
|
|
context 'when users_search feature is disabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(users_search: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when project search' do
|
|
|
|
before do
|
|
|
|
@project = :some_project
|
|
|
|
|
|
|
|
expect(self).to receive(:project_search_tabs?)
|
|
|
|
.with(:members)
|
|
|
|
.and_return(:value)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'delegates to project_search_tabs?' do
|
|
|
|
expect(subject).to eq(:value)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when not project search' do
|
|
|
|
context 'when current_user can read_users_list' do
|
|
|
|
before do
|
|
|
|
allow(self).to receive(:current_user).and_return(:the_current_user)
|
|
|
|
allow(self).to receive(:can?).with(:the_current_user, :read_users_list).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(true) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when current_user cannot read_users_list' do
|
|
|
|
before do
|
|
|
|
allow(self).to receive(:current_user).and_return(:the_current_user)
|
|
|
|
allow(self).to receive(:can?).with(:the_current_user, :read_users_list).and_return(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-10-20 01:05:20 -04:00
|
|
|
end
|