2017-05-31 21:36:24 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Api::V1::Accounts::FollowerAccountsController do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:accounts') }
|
2017-05-31 21:36:24 +02:00
|
|
|
|
|
|
|
before do
|
|
|
|
allow(controller).to receive(:doorkeeper_token) { token }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #index' do
|
2019-04-01 20:06:13 +02:00
|
|
|
let(:simon) { Fabricate(:account, username: 'simon') }
|
|
|
|
let(:lewis) { Fabricate(:account, username: 'lewis') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
simon.follow!(lewis)
|
|
|
|
end
|
|
|
|
|
2017-05-31 21:36:24 +02:00
|
|
|
it 'returns http success' do
|
2019-04-01 20:06:13 +02:00
|
|
|
get :index, params: { account_id: lewis.id, limit: 1 }
|
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-04-01 20:06:13 +02:00
|
|
|
|
|
|
|
it 'returns JSON with correct data' do
|
|
|
|
get :index, params: { account_id: lewis.id, limit: 1 }
|
|
|
|
|
|
|
|
json = body_as_json
|
|
|
|
|
|
|
|
expect(json).to be_a Enumerable
|
|
|
|
expect(json.first[:username]).to eq 'simon'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not return accounts blocking you' do
|
|
|
|
simon.block!(user.account)
|
|
|
|
get :index, params: { account_id: lewis.id, limit: 1 }
|
|
|
|
|
|
|
|
json = body_as_json
|
|
|
|
|
|
|
|
expect(json).to be_a Enumerable
|
|
|
|
expect(json.size).to eq 0
|
|
|
|
end
|
2017-05-31 21:36:24 +02:00
|
|
|
end
|
|
|
|
end
|