2017-05-31 21:36:24 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Api::V1::Accounts::FollowingAccountsController do
|
|
|
|
render_views
|
|
|
|
|
2022-01-28 00:46:42 +01:00
|
|
|
let(:user) { Fabricate(:user) }
|
2019-12-31 00:55:32 +01:00
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:accounts') }
|
|
|
|
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
|
|
|
allow(controller).to receive(:doorkeeper_token) { token }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #index' do
|
|
|
|
it 'returns http success' do
|
2019-12-31 00:55:32 +01:00
|
|
|
get :index, params: { account_id: account.id, limit: 2 }
|
2017-05-31 21:36:24 +02:00
|
|
|
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-05-31 21:36:24 +02:00
|
|
|
end
|
2019-12-31 00:55:32 +01:00
|
|
|
|
|
|
|
it 'returns accounts followed by the given account' do
|
|
|
|
get :index, params: { account_id: account.id, limit: 2 }
|
|
|
|
|
|
|
|
expect(body_as_json.size).to eq 2
|
|
|
|
expect([body_as_json[0][:id], body_as_json[1][:id]]).to match_array([alice.id.to_s, bob.id.to_s])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not return blocked users' do
|
|
|
|
user.account.block!(bob)
|
|
|
|
get :index, params: { account_id: account.id, limit: 2 }
|
|
|
|
|
|
|
|
expect(body_as_json.size).to eq 1
|
|
|
|
expect(body_as_json[0][:id]).to eq alice.id.to_s
|
|
|
|
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
|
|
|
|
get :index, params: { account_id: account.id, limit: 2 }
|
|
|
|
expect(body_as_json.size).to eq 0
|
|
|
|
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)
|
2020-05-08 20:36:34 +02:00
|
|
|
get :index, params: { account_id: account.id, limit: 2 }
|
|
|
|
|
|
|
|
expect(body_as_json.size).to eq 2
|
|
|
|
expect([body_as_json[0][:id], body_as_json[1][:id]]).to match_array([alice.id.to_s, bob.id.to_s])
|
|
|
|
end
|
|
|
|
end
|
2017-05-31 21:36:24 +02:00
|
|
|
end
|
|
|
|
end
|