Persist follow recommendations from FASP (#35218)

This commit is contained in:
David Roetzel 2025-06-30 15:39:36 +02:00 committed by GitHub
commit bae258925c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 151 additions and 8 deletions

View file

@ -0,0 +1,23 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe AccountSuggestions::FaspSource do
describe '#get', feature: :fasp do
subject { described_class.new }
let(:bob) { Fabricate(:account) }
let(:alice) { Fabricate(:account, domain: 'fedi.example.com') }
let(:eve) { Fabricate(:account, domain: 'fedi.example.com') }
before do
[alice, eve].each do |recommended_account|
Fasp::FollowRecommendation.create!(requesting_account: bob, recommended_account:)
end
end
it 'returns recommendations obtained by FASP' do
expect(subject.get(bob)).to contain_exactly([alice.id, :fasp], [eve.id, :fasp])
end
end
end