2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe SearchController, '(JavaScript fixtures)', type: :controller do
|
2018-03-17 18:26:18 +05:30
|
|
|
include JavaScriptFixturesHelpers
|
|
|
|
|
|
|
|
render_views
|
|
|
|
|
|
|
|
before(:all) do
|
|
|
|
clean_frontend_fixtures('search/')
|
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
it 'search/show.html' do
|
2018-03-17 18:26:18 +05:30
|
|
|
get :show
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
expect(response).to be_successful
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2020-04-22 19:07:51 +05:30
|
|
|
|
|
|
|
context 'search within a project' do
|
|
|
|
let(:namespace) { create(:namespace, name: 'frontend-fixtures') }
|
|
|
|
let(:project) { create(:project, :public, :repository, namespace: namespace, path: 'search-project') }
|
|
|
|
|
|
|
|
it 'search/blob_search_result.html' do
|
|
|
|
get :show, params: {
|
|
|
|
search: 'Send',
|
|
|
|
project_id: project.id,
|
|
|
|
scope: :blobs
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to be_successful
|
|
|
|
end
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|