mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-11 06:53:15 +00:00
51 lines
1.7 KiB
Ruby
51 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Fasp::AccountSearchWorker, feature: :fasp do
|
|
include ProviderRequestHelper
|
|
|
|
let(:provider) { Fabricate(:account_search_fasp) }
|
|
let(:account) { Fabricate(:account) }
|
|
let(:fetch_service) { instance_double(ActivityPub::FetchRemoteActorService, call: true) }
|
|
|
|
let!(:stubbed_request) do
|
|
path = '/account_search/v0/search?term=cats&limit=10'
|
|
stub_provider_request(provider,
|
|
method: :get,
|
|
path:,
|
|
response_body: [
|
|
'https://fedi.example.com/accounts/2',
|
|
'https://fedi.example.com/accounts/9',
|
|
])
|
|
end
|
|
|
|
before do
|
|
allow(ActivityPub::FetchRemoteActorService).to receive(:new).and_return(fetch_service)
|
|
end
|
|
|
|
it 'requests search results and fetches received account uris' do
|
|
described_class.new.perform('cats')
|
|
|
|
expect(stubbed_request).to have_been_made
|
|
expect(fetch_service).to have_received(:call).with('https://fedi.example.com/accounts/2')
|
|
expect(fetch_service).to have_received(:call).with('https://fedi.example.com/accounts/9')
|
|
end
|
|
|
|
it 'marks a running async refresh as finished' do
|
|
async_refresh = AsyncRefresh.create("fasp:account_search:#{Digest::MD5.base64digest('cats')}", count_results: true)
|
|
|
|
described_class.new.perform('cats')
|
|
|
|
expect(async_refresh.reload).to be_finished
|
|
end
|
|
|
|
it 'tracks the number of fetched accounts in the async refresh' do
|
|
async_refresh = AsyncRefresh.create("fasp:account_search:#{Digest::MD5.base64digest('cats')}", count_results: true)
|
|
|
|
described_class.new.perform('cats')
|
|
|
|
expect(async_refresh.reload.result_count).to eq 2
|
|
end
|
|
end
|