Browse Source

Add coverage for api/v1 controllers (#3155)

closed-social-glitch-2
Matt Jankowski 7 years ago
committed by Eugen Rochko
parent
commit
b6f6152e26
5 changed files with 113 additions and 0 deletions
  1. +8
    -0
      spec/controllers/api/v1/accounts_controller_spec.rb
  2. +22
    -0
      spec/controllers/api/v1/instances_controller_spec.rb
  3. +29
    -0
      spec/controllers/api/v1/notifications_controller_spec.rb
  4. +32
    -0
      spec/controllers/api/v1/reports_controller_spec.rb
  5. +22
    -0
      spec/controllers/api/v1/search_controller_spec.rb

+ 8
- 0
spec/controllers/api/v1/accounts_controller_spec.rb View File

@ -17,6 +17,14 @@ RSpec.describe Api::V1::AccountsController, type: :controller do
end
end
describe 'GET #search' do
it 'returns http success' do
get :search, params: { q: 'query' }
expect(response).to have_http_status(:success)
end
end
describe 'GET #verify_credentials' do
it 'returns http success' do
get :verify_credentials

+ 22
- 0
spec/controllers/api/v1/instances_controller_spec.rb View File

@ -0,0 +1,22 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Api::V1::InstancesController, type: :controller do
render_views
let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
let(:token) { double acceptable?: true, resource_owner_id: user.id }
before do
allow(controller).to receive(:doorkeeper_token) { token }
end
describe 'GET #show' do
it 'returns http success' do
get :show
expect(response).to have_http_status(:success)
end
end
end

+ 29
- 0
spec/controllers/api/v1/notifications_controller_spec.rb View File

@ -11,6 +11,35 @@ RSpec.describe Api::V1::NotificationsController, type: :controller do
allow(controller).to receive(:doorkeeper_token) { token }
end
describe 'GET #show' do
it 'returns http success' do
notification = Fabricate(:notification, account: user.account)
get :show, params: { id: notification.id }
expect(response).to have_http_status(:success)
end
end
describe 'POST #dismiss' do
it 'destroys the notification' do
notification = Fabricate(:notification, account: user.account)
post :dismiss, params: { id: notification.id }
expect(response).to have_http_status(:success)
expect { notification.reload }.to raise_error(ActiveRecord::RecordNotFound)
end
end
describe 'POST #clear' do
it 'clears notifications for the account' do
notification = Fabricate(:notification, account: user.account)
post :clear
expect(notification.account.reload.notifications).to be_empty
expect(response).to have_http_status(:success)
end
end
describe 'GET #index' do
before do
first_status = PostStatusService.new.call(user.account, 'Test')

+ 32
- 0
spec/controllers/api/v1/reports_controller_spec.rb View File

@ -0,0 +1,32 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Api::V1::ReportsController, type: :controller do
render_views
let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
let(:token) { double acceptable?: true, resource_owner_id: user.id }
before do
allow(controller).to receive(:doorkeeper_token) { token }
end
describe 'GET #index' do
it 'returns http success' do
get :index
expect(response).to have_http_status(:success)
end
end
describe 'POST #create' do
it 'creates a report' do
status = Fabricate(:status)
post :create, params: { status_ids: [status.id], account_id: status.account.id, comment: 'reasons' }
expect(status.reload.account.targeted_reports).not_to be_empty
expect(response).to have_http_status(:success)
end
end
end

+ 22
- 0
spec/controllers/api/v1/search_controller_spec.rb View File

@ -0,0 +1,22 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Api::V1::SearchController, type: :controller do
render_views
let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
let(:token) { double acceptable?: true, resource_owner_id: user.id }
before do
allow(controller).to receive(:doorkeeper_token) { token }
end
describe 'GET #index' do
it 'returns http success' do
get :index, params: { q: 'test' }
expect(response).to have_http_status(:success)
end
end
end

Loading…
Cancel
Save