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