123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- require 'rails_helper'
- describe FollowingAccountsController do
- render_views
- let(:alice) { Fabricate(:account, username: 'alice') }
- let(:followee0) { Fabricate(:account) }
- let(:followee1) { Fabricate(:account) }
- describe 'GET #index' do
- let!(:follow0) { alice.follow!(followee0) }
- let!(:follow1) { alice.follow!(followee1) }
- context 'when format is html' do
- subject(:response) { get :index, params: { account_username: alice.username, format: :html } }
- 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
- it 'assigns follows' do
- expect(response).to have_http_status(200)
- assigned = assigns(:follows).to_a
- expect(assigned.size).to eq 2
- expect(assigned[0]).to eq follow1
- expect(assigned[1]).to eq follow0
- end
- it 'does not assign blocked users' do
- user = Fabricate(:user)
- user.account.block!(followee0)
- sign_in(user)
- expect(response).to have_http_status(200)
- assigned = assigns(:follows).to_a
- expect(assigned.size).to eq 1
- expect(assigned[0]).to eq follow1
- end
- end
- context 'when format is json' do
- subject(:response) { get :index, params: { account_username: alice.username, page: page, format: :json } }
- subject(:body) { JSON.parse(response.body) }
- context 'with page' do
- let(:page) { 1 }
- it 'returns followers' do
- expect(response).to have_http_status(200)
- expect(body['totalItems']).to eq 2
- expect(body['partOf']).to be_present
- end
- 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
- 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
- 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
- end
- end
- end
- end
|