2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-31 21:36:24 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.describe 'API V1 Accounts FollowingAccounts' do
|
2022-01-28 00:46:42 +01:00
|
|
|
let(:user) { Fabricate(:user) }
|
2024-01-19 10:32:41 +01:00
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
|
|
|
|
let(:scopes) { 'read:accounts' }
|
|
|
|
let(:headers) { { 'Authorization' => "Bearer #{token.token}" } }
|
2019-12-31 00:55:32 +01:00
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
let(:alice) { Fabricate(:account) }
|
|
|
|
let(:bob) { Fabricate(:account) }
|
2017-05-31 21:36:24 +02:00
|
|
|
|
|
|
|
before do
|
2019-12-31 00:55:32 +01:00
|
|
|
account.follow!(alice)
|
|
|
|
account.follow!(bob)
|
2017-05-31 21:36:24 +02:00
|
|
|
end
|
|
|
|
|
2024-01-19 10:32:41 +01:00
|
|
|
describe 'GET /api/v1/accounts/:account_id/following' do
|
2023-10-13 14:42:09 +02:00
|
|
|
it 'returns accounts followed by the given account', :aggregate_failures do
|
2024-01-19 10:32:41 +01:00
|
|
|
get "/api/v1/accounts/#{account.id}/following", params: { limit: 2 }, headers: headers
|
2017-05-31 21:36:24 +02:00
|
|
|
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2024-09-20 15:13:04 +02:00
|
|
|
expect(response.content_type)
|
|
|
|
.to start_with('application/json')
|
2024-09-06 11:58:46 +02:00
|
|
|
expect(response.parsed_body.size).to eq 2
|
|
|
|
expect([response.parsed_body[0][:id], response.parsed_body[1][:id]]).to contain_exactly(alice.id.to_s, bob.id.to_s)
|
2019-12-31 00:55:32 +01:00
|
|
|
end
|
|
|
|
|
2023-10-13 14:42:09 +02:00
|
|
|
it 'does not return blocked users', :aggregate_failures do
|
2019-12-31 00:55:32 +01:00
|
|
|
user.account.block!(bob)
|
2024-01-19 10:32:41 +01:00
|
|
|
get "/api/v1/accounts/#{account.id}/following", params: { limit: 2 }, headers: headers
|
2019-12-31 00:55:32 +01:00
|
|
|
|
2023-10-13 14:42:09 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2024-09-20 15:13:04 +02:00
|
|
|
expect(response.content_type)
|
|
|
|
.to start_with('application/json')
|
2024-09-06 11:58:46 +02:00
|
|
|
expect(response.parsed_body.size).to eq 1
|
|
|
|
expect(response.parsed_body[0][:id]).to eq alice.id.to_s
|
2019-12-31 00:55:32 +01:00
|
|
|
end
|
2020-05-08 20:36:34 +02:00
|
|
|
|
|
|
|
context 'when requesting user is blocked' do
|
|
|
|
before do
|
|
|
|
account.block!(user.account)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'hides results' do
|
2024-01-19 10:32:41 +01:00
|
|
|
get "/api/v1/accounts/#{account.id}/following", params: { limit: 2 }, headers: headers
|
2024-09-06 11:58:46 +02:00
|
|
|
expect(response.parsed_body.size).to eq 0
|
2020-05-08 20:36:34 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when requesting user is the account owner' do
|
2022-01-28 00:46:42 +01:00
|
|
|
let(:user) { account.user }
|
2020-05-08 20:36:34 +02:00
|
|
|
|
|
|
|
it 'returns all accounts, including muted accounts' do
|
2022-01-28 00:46:42 +01:00
|
|
|
account.mute!(bob)
|
2024-01-19 10:32:41 +01:00
|
|
|
get "/api/v1/accounts/#{account.id}/following", params: { limit: 2 }, headers: headers
|
2020-05-08 20:36:34 +02:00
|
|
|
|
2024-09-06 11:58:46 +02:00
|
|
|
expect(response.parsed_body.size).to eq 2
|
|
|
|
expect([response.parsed_body[0][:id], response.parsed_body[1][:id]]).to contain_exactly(alice.id.to_s, bob.id.to_s)
|
2020-05-08 20:36:34 +02:00
|
|
|
end
|
|
|
|
end
|
2017-05-31 21:36:24 +02:00
|
|
|
end
|
|
|
|
end
|