2023-12-11 19:13:57 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 15:12:25 +10:00
|
|
|
RSpec.describe 'Suggestions API' do
|
2023-12-11 19:13:57 +11:00
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
|
|
|
|
let(:scopes) { 'read' }
|
|
|
|
let(:headers) { { 'Authorization' => "Bearer #{token.token}" } }
|
|
|
|
|
|
|
|
describe 'GET /api/v2/suggestions' do
|
2024-02-07 04:10:17 +11:00
|
|
|
let(:bob) { Fabricate(:account) }
|
|
|
|
let(:jeff) { Fabricate(:account) }
|
|
|
|
let(:params) { {} }
|
|
|
|
|
|
|
|
before do
|
|
|
|
Setting.bootstrap_timeline_accounts = [bob, jeff].map(&:acct).join(',')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the expected suggestions' do
|
2023-12-11 19:13:57 +11:00
|
|
|
get '/api/v2/suggestions', headers: headers
|
|
|
|
|
|
|
|
expect(response).to have_http_status(200)
|
2024-09-20 23:19:53 +10:00
|
|
|
expect(response.content_type)
|
|
|
|
.to start_with('application/json')
|
2024-02-07 04:10:17 +11:00
|
|
|
|
2024-09-06 19:58:46 +10:00
|
|
|
expect(response.parsed_body).to match_array(
|
2024-02-07 04:10:17 +11:00
|
|
|
[bob, jeff].map do |account|
|
|
|
|
hash_including({
|
|
|
|
source: 'staff',
|
|
|
|
sources: ['featured'],
|
|
|
|
account: hash_including({ id: account.id.to_s }),
|
|
|
|
})
|
|
|
|
end
|
|
|
|
)
|
2023-12-11 19:13:57 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|