Add tests for following accounts controller (#7800)
This commit is contained in:
parent
0338da1699
commit
ad8814232f
1 changed files with 36 additions and 9 deletions
|
@ -8,18 +8,45 @@ describe FollowingAccountsController do
|
||||||
let(:followee1) { Fabricate(:account) }
|
let(:followee1) { Fabricate(:account) }
|
||||||
|
|
||||||
describe 'GET #index' do
|
describe 'GET #index' do
|
||||||
it 'assigns followees' do
|
let!(:follow0) { alice.follow!(followee0) }
|
||||||
follow0 = alice.follow!(followee0)
|
let!(:follow1) { alice.follow!(followee1) }
|
||||||
follow1 = alice.follow!(followee1)
|
|
||||||
|
|
||||||
get :index, params: { account_username: alice.username }
|
context 'when format is html' do
|
||||||
|
subject(:response) { get :index, params: { account_username: alice.username, format: :html } }
|
||||||
|
|
||||||
assigned = assigns(:follows).to_a
|
it 'assigns follows' do
|
||||||
expect(assigned.size).to eq 2
|
expect(response).to have_http_status(200)
|
||||||
expect(assigned[0]).to eq follow1
|
|
||||||
expect(assigned[1]).to eq follow0
|
|
||||||
|
|
||||||
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
|
||||||
|
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
|
||||||
|
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
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue