2016-03-07 12:42:33 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2016-09-27 16:58:23 +02:00
|
|
|
RSpec.describe Api::V1::StatusesController, type: :controller do
|
2016-09-05 01:26:08 +02:00
|
|
|
render_views
|
|
|
|
|
2022-01-28 00:46:42 +01:00
|
|
|
let(:user) { Fabricate(:user) }
|
2017-01-15 14:01:33 +01:00
|
|
|
let(:app) { Fabricate(:application, name: 'Test app', website: 'http://testapp.com') }
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, application: app, scopes: scopes) }
|
2016-03-20 13:03:06 +01:00
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
context 'with an oauth token' do
|
|
|
|
before do
|
|
|
|
allow(controller).to receive(:doorkeeper_token) { token }
|
|
|
|
end
|
2016-03-20 13:03:06 +01:00
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
describe 'GET #show' do
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:scopes) { 'read:statuses' }
|
2017-04-18 21:58:57 +02:00
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
2016-03-20 13:03:06 +01:00
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
it 'returns http success' do
|
|
|
|
get :show, params: { id: status.id }
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-18 21:58:57 +02:00
|
|
|
end
|
2016-03-20 13:03:06 +01:00
|
|
|
end
|
2016-03-07 12:42:33 +01:00
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
describe 'GET #context' do
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:scopes) { 'read:statuses' }
|
2017-04-18 21:58:57 +02:00
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
2016-09-16 00:27:09 +02:00
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
before do
|
|
|
|
Fabricate(:status, account: user.account, thread: status)
|
|
|
|
end
|
2016-09-16 00:27:09 +02:00
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
it 'returns http success' do
|
|
|
|
get :context, params: { id: status.id }
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-18 21:58:57 +02:00
|
|
|
end
|
2016-09-16 00:27:09 +02:00
|
|
|
end
|
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
describe 'POST #create' do
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:scopes) { 'write:statuses' }
|
|
|
|
|
2020-03-08 15:17:39 +01:00
|
|
|
context do
|
|
|
|
before do
|
|
|
|
post :create, params: { status: 'Hello world' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns rate limit headers' do
|
|
|
|
expect(response.headers['X-RateLimit-Limit']).to eq RateLimiter::FAMILIES[:statuses][:limit].to_s
|
|
|
|
expect(response.headers['X-RateLimit-Remaining']).to eq (RateLimiter::FAMILIES[:statuses][:limit] - 1).to_s
|
|
|
|
end
|
2017-04-18 21:58:57 +02:00
|
|
|
end
|
2016-09-05 01:26:08 +02:00
|
|
|
|
2020-03-08 15:17:39 +01:00
|
|
|
context 'with missing parameters' do
|
|
|
|
before do
|
|
|
|
post :create, params: {}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http unprocessable entity' do
|
|
|
|
expect(response).to have_http_status(422)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns rate limit headers' do
|
|
|
|
expect(response.headers['X-RateLimit-Limit']).to eq RateLimiter::FAMILIES[:statuses][:limit].to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when exceeding rate limit' do
|
|
|
|
before do
|
|
|
|
rate_limiter = RateLimiter.new(user.account, family: :statuses)
|
|
|
|
300.times { rate_limiter.record! }
|
|
|
|
post :create, params: { status: 'Hello world' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http too many requests' do
|
|
|
|
expect(response).to have_http_status(429)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns rate limit headers' do
|
|
|
|
expect(response.headers['X-RateLimit-Limit']).to eq RateLimiter::FAMILIES[:statuses][:limit].to_s
|
|
|
|
expect(response.headers['X-RateLimit-Remaining']).to eq '0'
|
|
|
|
end
|
2017-04-18 21:58:57 +02:00
|
|
|
end
|
2016-09-05 01:26:08 +02:00
|
|
|
end
|
2016-03-19 12:13:47 +01:00
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
describe 'DELETE #destroy' do
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:scopes) { 'write:statuses' }
|
2017-04-18 21:58:57 +02:00
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
2016-09-26 23:55:21 +02:00
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
before do
|
|
|
|
post :destroy, params: { id: status.id }
|
|
|
|
end
|
2016-09-26 23:55:21 +02:00
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
it 'returns http success' do
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-18 21:58:57 +02:00
|
|
|
end
|
2016-09-26 23:55:21 +02:00
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
it 'removes the status' do
|
|
|
|
expect(Status.find_by(id: status.id)).to be nil
|
|
|
|
end
|
2016-09-26 23:55:21 +02:00
|
|
|
end
|
2022-02-10 00:15:30 +01:00
|
|
|
|
|
|
|
describe 'PUT #update' do
|
|
|
|
let(:scopes) { 'write:statuses' }
|
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
put :update, params: { id: status.id, status: 'I am updated' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates the status' do
|
|
|
|
expect(status.reload.text).to eq 'I am updated'
|
|
|
|
end
|
|
|
|
end
|
2017-04-18 21:58:57 +02:00
|
|
|
end
|
2016-09-26 23:55:21 +02:00
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
context 'without an oauth token' do
|
|
|
|
before do
|
|
|
|
allow(controller).to receive(:doorkeeper_token) { nil }
|
2016-09-26 23:55:21 +02:00
|
|
|
end
|
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
context 'with a private status' do
|
|
|
|
let(:status) { Fabricate(:status, account: user.account, visibility: :private) }
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2022-03-06 22:51:40 +01:00
|
|
|
it 'returns http unauthorized' do
|
2017-04-18 21:58:57 +02:00
|
|
|
get :show, params: { id: status.id }
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(404)
|
2017-04-18 21:58:57 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #context' do
|
|
|
|
before do
|
|
|
|
Fabricate(:status, account: user.account, thread: status)
|
|
|
|
end
|
|
|
|
|
2022-03-06 22:51:40 +01:00
|
|
|
it 'returns http unauthorized' do
|
2017-04-18 21:58:57 +02:00
|
|
|
get :context, params: { id: status.id }
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(404)
|
2017-04-18 21:58:57 +02:00
|
|
|
end
|
|
|
|
end
|
2016-09-26 23:55:21 +02:00
|
|
|
end
|
|
|
|
|
2017-04-18 21:58:57 +02:00
|
|
|
context 'with a public status' do
|
|
|
|
let(:status) { Fabricate(:status, account: user.account, visibility: :public) }
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
|
|
|
it 'returns http success' do
|
|
|
|
get :show, params: { id: status.id }
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-18 21:58:57 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #context' do
|
|
|
|
before do
|
|
|
|
Fabricate(:status, account: user.account, thread: status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
get :context, params: { id: status.id }
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-18 21:58:57 +02:00
|
|
|
end
|
|
|
|
end
|
2016-09-26 23:55:21 +02:00
|
|
|
end
|
|
|
|
end
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|