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
|
|
|
|
|
2016-09-14 06:29:23 -04:00
|
|
|
describe 'parsing result' do
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:repository) { project.repository }
|
|
|
|
let(:results) { repository.search_files('feature', 'master') }
|
|
|
|
let(:search_result) { results.first }
|
|
|
|
|
|
|
|
subject { helper.parse_search_result(search_result) }
|
|
|
|
|
|
|
|
it "returns a valid OpenStruct object" do
|
|
|
|
is_expected.to be_an OpenStruct
|
|
|
|
expect(subject.filename).to eq('CHANGELOG')
|
|
|
|
expect(subject.basename).to eq('CHANGELOG')
|
|
|
|
expect(subject.ref).to eq('master')
|
2016-10-03 08:11:16 -04:00
|
|
|
expect(subject.startline).to eq(188)
|
2016-09-14 06:29:23 -04:00
|
|
|
expect(subject.data.lines[2]).to eq(" - Feature: Replace teams with group membership\n")
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when filename has extension" do
|
|
|
|
let(:search_result) { "master:CONTRIBUTE.md:5:- [Contribute to GitLab](#contribute-to-gitlab)\n" }
|
|
|
|
|
|
|
|
it { expect(subject.filename).to eq('CONTRIBUTE.md') }
|
|
|
|
it { expect(subject.basename).to eq('CONTRIBUTE') }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when file under directory" do
|
|
|
|
let(:search_result) { "master:a/b/c.md:5:a b c\n" }
|
|
|
|
|
|
|
|
it { expect(subject.filename).to eq('a/b/c.md') }
|
|
|
|
it { expect(subject.basename).to eq('a/b/c') }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-20 01:05:20 -04:00
|
|
|
describe 'search_autocomplete_source' do
|
|
|
|
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
|
|
|
|
|
|
|
it "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
|
|
|
|
|
|
|
|
context "with a user" do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
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
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(search_autocomplete_opts("adm").size).to eq(1)
|
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
|
|
|
|
|
|
|
|
it "includes the user's projects" do
|
2014-01-18 08:02:53 -05: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
|
|
|
|
|
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
|
2014-01-22 14:03:52 -05:00
|
|
|
before { @project = create(:project) }
|
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
|
|
|
|
end
|
|
|
|
end
|