闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
858 B

  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. RSpec.describe Api::V1::ReportsController, type: :controller do
  4. render_views
  5. let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
  6. let(:token) { double acceptable?: true, resource_owner_id: user.id }
  7. before do
  8. allow(controller).to receive(:doorkeeper_token) { token }
  9. end
  10. describe 'GET #index' do
  11. it 'returns http success' do
  12. get :index
  13. expect(response).to have_http_status(:success)
  14. end
  15. end
  16. describe 'POST #create' do
  17. it 'creates a report' do
  18. status = Fabricate(:status)
  19. post :create, params: { status_ids: [status.id], account_id: status.account.id, comment: 'reasons' }
  20. expect(status.reload.account.targeted_reports).not_to be_empty
  21. expect(response).to have_http_status(:success)
  22. end
  23. end
  24. end