From 3e49ae159acbb703f005f5014772072cd90ef97b Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Wed, 28 Oct 2020 18:08:52 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- spec/frontend/fixtures/search.rb | 43 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'spec/frontend/fixtures/search.rb') diff --git a/spec/frontend/fixtures/search.rb b/spec/frontend/fixtures/search.rb index 40f613a9422..7819d0774a7 100644 --- a/spec/frontend/fixtures/search.rb +++ b/spec/frontend/fixtures/search.rb @@ -26,8 +26,51 @@ RSpec.describe SearchController, '(JavaScript fixtures)', type: :controller do context 'search within a project' do let(:namespace) { create(:namespace, name: 'frontend-fixtures') } let(:project) { create(:project, :public, :repository, namespace: namespace, path: 'search-project') } + let(:blobs) do + Kaminari.paginate_array([ + Gitlab::Search::FoundBlob.new( + path: 'CHANGELOG', + basename: 'CHANGELOG', + ref: 'master', + data: "hello\nworld\nfoo\nSend # this is the highligh\nbaz\nboo\nbat", + project: project, + project_id: project.id, + startline: 2), + Gitlab::Search::FoundBlob.new( + path: 'CONTRIBUTING', + basename: 'CONTRIBUTING', + ref: 'master', + data: "hello\nworld\nfoo\nSend # this is the highligh\nbaz\nboo\nbat", + project: project, + project_id: project.id, + startline: 2), + Gitlab::Search::FoundBlob.new( + path: 'README', + basename: 'README', + ref: 'master', + data: "foo\nSend # this is the highlight\nbaz\nboo\nbat", + project: project, + project_id: project.id, + startline: 2), + Gitlab::Search::FoundBlob.new( + path: 'test', + basename: 'test', + ref: 'master', + data: "foo\nSend # this is the highlight\nbaz\nboo\nbat", + project: project, + project_id: project.id, + startline: 2) + ], + total_count: 4, + limit: 4, + offset: 0) + end it 'search/blob_search_result.html' do + expect_next_instance_of(SearchService) do |search_service| + expect(search_service).to receive(:search_objects).and_return(blobs) + end + get :show, params: { search: 'Send', project_id: project.id, -- cgit v1.2.3