2017-05-05 11:26:04 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 01:12:25 -04:00
|
|
|
RSpec.describe SearchService do
|
2017-05-05 11:26:04 -04:00
|
|
|
subject { described_class.new }
|
|
|
|
|
|
|
|
describe '#call' do
|
|
|
|
describe 'with a blank query' do
|
|
|
|
it 'returns empty results without searching' do
|
|
|
|
allow(AccountSearchService).to receive(:new)
|
|
|
|
allow(Tag).to receive(:search_for)
|
2019-04-06 22:59:13 -04:00
|
|
|
results = subject.call('', nil, 10)
|
2017-05-05 11:26:04 -04:00
|
|
|
|
|
|
|
expect(results).to eq(empty_results)
|
2023-02-19 20:33:27 -05:00
|
|
|
expect(AccountSearchService).to_not have_received(:new)
|
|
|
|
expect(Tag).to_not have_received(:search_for)
|
2017-05-05 11:26:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with an url query' do
|
2023-11-08 10:42:30 -05:00
|
|
|
let(:query) { 'http://test.host/query' }
|
2017-05-05 11:26:04 -04:00
|
|
|
|
2023-05-03 23:49:08 -04:00
|
|
|
context 'when it does not find anything' do
|
2017-05-05 11:26:04 -04:00
|
|
|
it 'returns the empty results' do
|
2023-06-22 08:55:22 -04:00
|
|
|
service = instance_double(ResolveURLService, call: nil)
|
2018-01-22 08:24:22 -05:00
|
|
|
allow(ResolveURLService).to receive(:new).and_return(service)
|
2023-11-08 10:42:30 -05:00
|
|
|
results = subject.call(query, nil, 10, resolve: true)
|
2017-05-05 11:26:04 -04:00
|
|
|
|
2023-11-08 10:42:30 -05:00
|
|
|
expect(service).to have_received(:call).with(query, on_behalf_of: nil)
|
2017-05-05 11:26:04 -04:00
|
|
|
expect(results).to eq empty_results
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-03 23:49:08 -04:00
|
|
|
context 'when it finds an account' do
|
2017-05-05 11:26:04 -04:00
|
|
|
it 'includes the account in the results' do
|
2019-04-06 22:59:13 -04:00
|
|
|
account = Account.new
|
2023-06-22 08:55:22 -04:00
|
|
|
service = instance_double(ResolveURLService, call: account)
|
2018-01-22 08:24:22 -05:00
|
|
|
allow(ResolveURLService).to receive(:new).and_return(service)
|
2017-05-05 11:26:04 -04:00
|
|
|
|
2023-11-08 10:42:30 -05:00
|
|
|
results = subject.call(query, nil, 10, resolve: true)
|
|
|
|
expect(service).to have_received(:call).with(query, on_behalf_of: nil)
|
2017-05-05 11:26:04 -04:00
|
|
|
expect(results).to eq empty_results.merge(accounts: [account])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-03 23:49:08 -04:00
|
|
|
context 'when it finds a status' do
|
2017-05-05 11:26:04 -04:00
|
|
|
it 'includes the status in the results' do
|
2019-04-06 22:59:13 -04:00
|
|
|
status = Status.new
|
2023-06-22 08:55:22 -04:00
|
|
|
service = instance_double(ResolveURLService, call: status)
|
2018-01-22 08:24:22 -05:00
|
|
|
allow(ResolveURLService).to receive(:new).and_return(service)
|
2017-05-05 11:26:04 -04:00
|
|
|
|
2023-11-08 10:42:30 -05:00
|
|
|
results = subject.call(query, nil, 10, resolve: true)
|
|
|
|
expect(service).to have_received(:call).with(query, on_behalf_of: nil)
|
2017-05-05 11:26:04 -04:00
|
|
|
expect(results).to eq empty_results.merge(statuses: [status])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with a non-url query' do
|
2023-05-03 23:49:08 -04:00
|
|
|
context 'when it matches an account' do
|
2017-05-05 11:26:04 -04:00
|
|
|
it 'includes the account in the results' do
|
|
|
|
query = 'username'
|
2019-04-06 22:59:13 -04:00
|
|
|
account = Account.new
|
2023-06-22 08:55:22 -04:00
|
|
|
service = instance_double(AccountSearchService, call: [account])
|
2017-05-05 11:26:04 -04:00
|
|
|
allow(AccountSearchService).to receive(:new).and_return(service)
|
|
|
|
|
2019-04-06 22:59:13 -04:00
|
|
|
results = subject.call(query, nil, 10)
|
2023-07-10 14:58:13 -04:00
|
|
|
expect(service).to have_received(:call).with(query, nil, limit: 10, offset: 0, resolve: false, start_with_hashtag: false, use_searchable_text: true, following: false)
|
2017-05-05 11:26:04 -04:00
|
|
|
expect(results).to eq empty_results.merge(accounts: [account])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-03 23:49:08 -04:00
|
|
|
context 'when it matches a tag' do
|
2017-05-05 11:26:04 -04:00
|
|
|
it 'includes the tag in the results' do
|
|
|
|
query = '#tag'
|
|
|
|
tag = Tag.new
|
2023-03-02 09:55:37 -05:00
|
|
|
allow(Tag).to receive(:search_for).with('tag', 10, 0, { exclude_unreviewed: nil }).and_return([tag])
|
2017-05-05 11:26:04 -04:00
|
|
|
|
2019-04-06 22:59:13 -04:00
|
|
|
results = subject.call(query, nil, 10)
|
2019-09-27 19:02:21 -04:00
|
|
|
expect(Tag).to have_received(:search_for).with('tag', 10, 0, exclude_unreviewed: nil)
|
2017-05-05 11:26:04 -04:00
|
|
|
expect(results).to eq empty_results.merge(hashtags: [tag])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def empty_results
|
|
|
|
{ accounts: [], hashtags: [], statuses: [] }
|
|
|
|
end
|
|
|
|
end
|