108 lines
3.0 KiB
Ruby
108 lines
3.0 KiB
Ruby
require 'rails_helper'
|
|
|
|
describe SearchController do
|
|
|
|
context "integration" do
|
|
|
|
before do
|
|
SearchIndexer.enable
|
|
end
|
|
|
|
it "can search correctly" do
|
|
my_post = Fabricate(:post, raw: 'this is my really awesome post')
|
|
xhr :get, :query, term: 'awesome', include_blurb: true
|
|
|
|
expect(response).to be_success
|
|
data = JSON.parse(response.body)
|
|
expect(data['posts'][0]['id']).to eq(my_post.id)
|
|
expect(data['posts'][0]['blurb']).to eq('this is my really awesome post')
|
|
expect(data['topics'][0]['id']).to eq(my_post.topic_id)
|
|
end
|
|
end
|
|
|
|
|
|
let(:search_context) { {type: 'user', id: 'eviltrout'} }
|
|
|
|
context "basics" do
|
|
let(:guardian) { Guardian.new }
|
|
let(:search) { mock() }
|
|
|
|
before do
|
|
Guardian.stubs(:new).returns(guardian)
|
|
end
|
|
|
|
it 'performs the query' do
|
|
Search.expects(:new).with('test', guardian: guardian).returns(search)
|
|
search.expects(:execute)
|
|
|
|
xhr :get, :query, term: 'test'
|
|
end
|
|
|
|
it 'performs the query with a filter' do
|
|
Search.expects(:new).with('test', guardian: guardian, type_filter: 'topic').returns(search)
|
|
search.expects(:execute)
|
|
|
|
xhr :get, :query, term: 'test', type_filter: 'topic'
|
|
end
|
|
|
|
it "performs the query and returns results including blurbs" do
|
|
Search.expects(:new).with('test', guardian: guardian, include_blurbs: true).returns(search)
|
|
search.expects(:execute)
|
|
|
|
xhr :get, :query, term: 'test', include_blurbs: 'true'
|
|
end
|
|
|
|
it 'performs the query with a filter and passes through search_for_id' do
|
|
Search.expects(:new).with('test', guardian: guardian, search_for_id: true, type_filter: 'topic').returns(search)
|
|
search.expects(:execute)
|
|
|
|
xhr :get, :query, term: 'test', type_filter: 'topic', search_for_id: true
|
|
end
|
|
end
|
|
|
|
|
|
context "search context" do
|
|
|
|
it "raises an error with an invalid context type" do
|
|
expect {
|
|
xhr :get, :query, term: 'test', search_context: {type: 'security', id: 'hole'}
|
|
}.to raise_error(Discourse::InvalidParameters)
|
|
end
|
|
|
|
it "raises an error with a missing id" do
|
|
expect {
|
|
xhr :get, :query, term: 'test', search_context: {type: 'user'}
|
|
}.to raise_error(Discourse::InvalidParameters)
|
|
end
|
|
|
|
context "with a user" do
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
it "raises an error if the user can't see the context" do
|
|
Guardian.any_instance.expects(:can_see?).with(user).returns(false)
|
|
xhr :get, :query, term: 'test', search_context: {type: 'user', id: user.username}
|
|
expect(response).not_to be_success
|
|
end
|
|
|
|
|
|
it 'performs the query with a search context' do
|
|
guardian = Guardian.new
|
|
Guardian.stubs(:new).returns(guardian)
|
|
|
|
search = mock()
|
|
Search.expects(:new).with('test', guardian: guardian, search_context: user).returns(search)
|
|
search.expects(:execute)
|
|
|
|
xhr :get, :query, term: 'test', search_context: {type: 'user', id: user.username}
|
|
end
|
|
|
|
end
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|