2016-12-29 20:12:32 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Api::V1::BlocksController, type: :controller do
|
|
|
|
render_views
|
|
|
|
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
|
|
|
|
let(:scopes) { 'read:blocks' }
|
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
|
2016-12-29 20:12:32 +01:00
|
|
|
|
2017-10-09 17:30:31 +02:00
|
|
|
before { allow(controller).to receive(:doorkeeper_token) { token } }
|
2016-12-29 20:12:32 +01:00
|
|
|
|
|
|
|
describe 'GET #index' do
|
2017-10-09 17:30:31 +02:00
|
|
|
it 'limits according to limit parameter' do
|
|
|
|
2.times.map { Fabricate(:block, account: user.account) }
|
2017-05-31 20:34:51 +02:00
|
|
|
get :index, params: { limit: 1 }
|
2017-10-09 17:30:31 +02:00
|
|
|
expect(body_as_json.size).to eq 1
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'queries blocks in range according to max_id' do
|
|
|
|
blocks = 2.times.map { Fabricate(:block, account: user.account) }
|
|
|
|
|
|
|
|
get :index, params: { max_id: blocks[1] }
|
|
|
|
|
|
|
|
expect(body_as_json.size).to eq 1
|
|
|
|
expect(body_as_json[0][:id]).to eq blocks[0].target_account_id.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'queries blocks in range according to since_id' do
|
|
|
|
blocks = 2.times.map { Fabricate(:block, account: user.account) }
|
2017-05-31 20:34:51 +02:00
|
|
|
|
2017-10-09 17:30:31 +02:00
|
|
|
get :index, params: { since_id: blocks[0] }
|
|
|
|
|
|
|
|
expect(body_as_json.size).to eq 1
|
|
|
|
expect(body_as_json[0][:id]).to eq blocks[1].target_account_id.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets pagination header for next path' do
|
|
|
|
blocks = 2.times.map { Fabricate(:block, account: user.account) }
|
|
|
|
get :index, params: { limit: 1, since_id: blocks[0] }
|
|
|
|
expect(response.headers['Link'].find_link(['rel', 'next']).href).to eq api_v1_blocks_url(limit: 1, max_id: blocks[1])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets pagination header for previous path' do
|
|
|
|
block = Fabricate(:block, account: user.account)
|
|
|
|
get :index
|
|
|
|
expect(response.headers['Link'].find_link(['rel', 'prev']).href).to eq api_v1_blocks_url(since_id: block)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
get :index
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2016-12-29 20:12:32 +01:00
|
|
|
end
|
2018-07-05 18:31:35 +02:00
|
|
|
|
|
|
|
context 'with wrong scopes' do
|
|
|
|
let(:scopes) { 'write:blocks' }
|
|
|
|
|
|
|
|
it 'returns http forbidden' do
|
|
|
|
get :index
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
end
|
|
|
|
end
|
2016-12-29 20:12:32 +01:00
|
|
|
end
|
|
|
|
end
|