|
|
|
@ -12,7 +12,7 @@ describe Api::BaseController do
|
|
|
|
|
head 200
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def error
|
|
|
|
|
def failure
|
|
|
|
|
FakeService.new
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
@ -30,7 +30,7 @@ describe Api::BaseController do
|
|
|
|
|
|
|
|
|
|
it 'does not protect from forgery' do
|
|
|
|
|
ActionController::Base.allow_forgery_protection = true
|
|
|
|
|
post 'success'
|
|
|
|
|
post :success
|
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
@ -50,47 +50,55 @@ describe Api::BaseController do
|
|
|
|
|
|
|
|
|
|
it 'returns http forbidden for unconfirmed accounts' do
|
|
|
|
|
user.update(confirmed_at: nil)
|
|
|
|
|
post 'success'
|
|
|
|
|
post :success
|
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'returns http forbidden for pending accounts' do
|
|
|
|
|
user.update(approved: false)
|
|
|
|
|
post 'success'
|
|
|
|
|
post :success
|
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'returns http forbidden for disabled accounts' do
|
|
|
|
|
user.update(disabled: true)
|
|
|
|
|
post 'success'
|
|
|
|
|
post :success
|
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'returns http forbidden for suspended accounts' do
|
|
|
|
|
user.account.suspend!
|
|
|
|
|
post 'success'
|
|
|
|
|
post :success
|
|
|
|
|
expect(response).to have_http_status(403)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe 'error handling' do
|
|
|
|
|
before do
|
|
|
|
|
routes.draw { get 'error' => 'api/base#error' }
|
|
|
|
|
routes.draw { get 'failure' => 'api/base#failure' }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
ActiveRecord::RecordInvalid => 422,
|
|
|
|
|
Mastodon::ValidationError => 422,
|
|
|
|
|
ActiveRecord::RecordNotFound => 404,
|
|
|
|
|
Mastodon::UnexpectedResponseError => 503,
|
|
|
|
|
ActiveRecord::RecordNotUnique => 422,
|
|
|
|
|
Date::Error => 422,
|
|
|
|
|
HTTP::Error => 503,
|
|
|
|
|
OpenSSL::SSL::SSLError => 503,
|
|
|
|
|
Mastodon::InvalidParameterError => 400,
|
|
|
|
|
Mastodon::NotPermittedError => 403,
|
|
|
|
|
Mastodon::RaceConditionError => 503,
|
|
|
|
|
Mastodon::RateLimitExceededError => 429,
|
|
|
|
|
Mastodon::UnexpectedResponseError => 503,
|
|
|
|
|
Mastodon::ValidationError => 422,
|
|
|
|
|
OpenSSL::SSL::SSLError => 503,
|
|
|
|
|
Seahorse::Client::NetworkingError => 503,
|
|
|
|
|
Stoplight::Error::RedLight => 503,
|
|
|
|
|
}.each do |error, code|
|
|
|
|
|
it "Handles error class of #{error}" do
|
|
|
|
|
allow(FakeService).to receive(:new).and_raise(error)
|
|
|
|
|
|
|
|
|
|
get 'error'
|
|
|
|
|
get :failure
|
|
|
|
|
|
|
|
|
|
expect(response).to have_http_status(code)
|
|
|
|
|
expect(FakeService).to have_received(:new)
|
|
|
|
|
end
|
|
|
|
|