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