2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-19 13:52:37 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe FollowingAccountsController do
|
|
|
|
render_views
|
2017-04-28 15:12:37 +02:00
|
|
|
|
2023-06-14 16:44:37 +02:00
|
|
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
|
|
|
let(:followee_bob) { Fabricate(:account, username: 'bob') }
|
|
|
|
let(:followee_chris) { Fabricate(:account, username: 'chris') }
|
2017-04-19 13:52:37 +02:00
|
|
|
|
|
|
|
describe 'GET #index' do
|
2023-06-14 16:44:37 +02:00
|
|
|
let!(:follow_of_bob) { alice.follow!(followee_bob) }
|
|
|
|
let!(:follow_of_chris) { alice.follow!(followee_chris) }
|
2017-05-23 13:12:19 +02:00
|
|
|
|
2018-06-14 03:49:17 +02:00
|
|
|
context 'when format is html' do
|
|
|
|
subject(:response) { get :index, params: { account_username: alice.username, format: :html } }
|
2017-04-19 13:52:37 +02:00
|
|
|
|
2020-11-08 00:28:39 +01:00
|
|
|
context 'when account is permanently suspended' do
|
|
|
|
before do
|
|
|
|
alice.suspend!
|
|
|
|
alice.deletion_request.destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http gone' do
|
|
|
|
expect(response).to have_http_status(410)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when account is temporarily suspended' do
|
|
|
|
before do
|
|
|
|
alice.suspend!
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http forbidden' do
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
end
|
|
|
|
end
|
2018-06-14 03:49:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when format is json' do
|
2023-04-26 17:25:07 +02:00
|
|
|
subject(:body) { response.parsed_body }
|
2018-06-14 03:49:17 +02:00
|
|
|
|
2023-05-04 05:48:35 +02:00
|
|
|
let(:response) { get :index, params: { account_username: alice.username, page: page, format: :json } }
|
|
|
|
|
2018-06-14 03:49:17 +02:00
|
|
|
context 'with page' do
|
|
|
|
let(:page) { 1 }
|
|
|
|
|
|
|
|
it 'returns followers' do
|
|
|
|
expect(response).to have_http_status(200)
|
2023-12-21 10:28:41 +01:00
|
|
|
expect(body_as_json)
|
|
|
|
.to include(
|
|
|
|
orderedItems: contain_exactly(
|
|
|
|
include(follow_of_bob.target_account.username),
|
|
|
|
include(follow_of_chris.target_account.username)
|
|
|
|
)
|
|
|
|
)
|
2018-06-14 03:49:17 +02:00
|
|
|
expect(body['totalItems']).to eq 2
|
|
|
|
expect(body['partOf']).to be_present
|
|
|
|
end
|
2020-11-08 00:28:39 +01:00
|
|
|
|
|
|
|
context 'when account is permanently suspended' do
|
|
|
|
before do
|
|
|
|
alice.suspend!
|
|
|
|
alice.deletion_request.destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http gone' do
|
|
|
|
expect(response).to have_http_status(410)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when account is temporarily suspended' do
|
|
|
|
before do
|
|
|
|
alice.suspend!
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http forbidden' do
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
end
|
|
|
|
end
|
2018-06-14 03:49:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'without page' do
|
|
|
|
let(:page) { nil }
|
|
|
|
|
|
|
|
it 'returns followers' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
expect(body['totalItems']).to eq 2
|
|
|
|
expect(body['partOf']).to be_blank
|
|
|
|
end
|
2020-11-08 00:28:39 +01:00
|
|
|
|
2021-06-21 20:14:47 +02:00
|
|
|
context 'when account hides their network' do
|
|
|
|
before do
|
2022-03-07 09:36:47 +01:00
|
|
|
alice.update(hide_collections: true)
|
2021-06-21 20:14:47 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns followers count' do
|
|
|
|
expect(body['totalItems']).to eq 2
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not return items' do
|
|
|
|
expect(body['items']).to be_blank
|
|
|
|
expect(body['orderedItems']).to be_blank
|
|
|
|
expect(body['first']).to be_blank
|
|
|
|
expect(body['last']).to be_blank
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-08 00:28:39 +01:00
|
|
|
context 'when account is permanently suspended' do
|
|
|
|
before do
|
|
|
|
alice.suspend!
|
|
|
|
alice.deletion_request.destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http gone' do
|
|
|
|
expect(response).to have_http_status(410)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when account is temporarily suspended' do
|
|
|
|
before do
|
|
|
|
alice.suspend!
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http forbidden' do
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
end
|
|
|
|
end
|
2018-06-14 03:49:17 +02:00
|
|
|
end
|
2017-04-19 13:52:37 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|