2017-04-10 21:27:03 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-04-14 11:10:28 +02:00
|
|
|
describe Admin::ReportsController do
|
2017-04-28 01:21:38 +02:00
|
|
|
render_views
|
|
|
|
|
2017-04-14 11:10:28 +02:00
|
|
|
let(:user) { Fabricate(:user, admin: true) }
|
|
|
|
before do
|
|
|
|
sign_in user, scope: :user
|
|
|
|
end
|
|
|
|
|
2017-04-10 21:27:03 +02:00
|
|
|
describe 'GET #index' do
|
2017-04-14 11:10:28 +02:00
|
|
|
it 'returns http success with no filters' do
|
2017-05-29 18:12:34 +02:00
|
|
|
specified = Fabricate(:report, action_taken: false)
|
|
|
|
Fabricate(:report, action_taken: true)
|
|
|
|
|
2017-04-14 11:10:28 +02:00
|
|
|
get :index
|
|
|
|
|
2017-05-29 18:12:34 +02:00
|
|
|
reports = assigns(:reports).to_a
|
|
|
|
expect(reports.size).to eq 1
|
|
|
|
expect(reports[0]).to eq specified
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-10 21:27:03 +02:00
|
|
|
end
|
|
|
|
|
2017-04-14 11:10:28 +02:00
|
|
|
it 'returns http success with resolved filter' do
|
2017-05-29 18:12:34 +02:00
|
|
|
specified = Fabricate(:report, action_taken: true)
|
|
|
|
Fabricate(:report, action_taken: false)
|
|
|
|
|
2017-04-14 11:10:28 +02:00
|
|
|
get :index, params: { resolved: 1 }
|
|
|
|
|
2017-05-29 18:12:34 +02:00
|
|
|
reports = assigns(:reports).to_a
|
|
|
|
expect(reports.size).to eq 1
|
|
|
|
expect(reports[0]).to eq specified
|
|
|
|
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-14 11:10:28 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2017-05-29 18:12:34 +02:00
|
|
|
it 'renders report' do
|
2017-04-14 11:10:28 +02:00
|
|
|
report = Fabricate(:report)
|
|
|
|
|
|
|
|
get :show, params: { id: report }
|
2017-05-29 18:12:34 +02:00
|
|
|
|
|
|
|
expect(assigns(:report)).to eq report
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-10 21:27:03 +02:00
|
|
|
end
|
|
|
|
end
|
2017-04-14 11:10:28 +02:00
|
|
|
|
|
|
|
describe 'PUT #update' do
|
|
|
|
describe 'with an unknown outcome' do
|
|
|
|
it 'rejects the change' do
|
|
|
|
report = Fabricate(:report)
|
|
|
|
put :update, params: { id: report, outcome: 'unknown' }
|
|
|
|
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(404)
|
2017-04-14 11:10:28 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with an outcome of `resolve`' do
|
|
|
|
it 'resolves the report' do
|
|
|
|
report = Fabricate(:report)
|
|
|
|
|
|
|
|
put :update, params: { id: report, outcome: 'resolve' }
|
2018-04-02 22:04:14 +02:00
|
|
|
expect(response).to redirect_to(admin_reports_path)
|
2017-04-14 11:10:28 +02:00
|
|
|
report.reload
|
|
|
|
expect(report.action_taken_by_account).to eq user.account
|
|
|
|
expect(report.action_taken).to eq true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with an outsome of `silence`' do
|
|
|
|
it 'silences the reported account' do
|
|
|
|
report = Fabricate(:report)
|
|
|
|
|
|
|
|
put :update, params: { id: report, outcome: 'silence' }
|
2018-04-02 22:04:14 +02:00
|
|
|
expect(response).to redirect_to(admin_reports_path)
|
2017-04-14 11:10:28 +02:00
|
|
|
report.reload
|
|
|
|
expect(report.action_taken_by_account).to eq user.account
|
|
|
|
expect(report.action_taken).to eq true
|
|
|
|
expect(report.target_account).to be_silenced
|
|
|
|
end
|
|
|
|
end
|
2018-04-02 22:04:14 +02:00
|
|
|
|
|
|
|
describe 'with an outsome of `reopen`' do
|
|
|
|
it 'reopens the report' do
|
|
|
|
report = Fabricate(:report)
|
|
|
|
|
|
|
|
put :update, params: { id: report, outcome: 'reopen' }
|
|
|
|
expect(response).to redirect_to(admin_report_path(report))
|
|
|
|
report.reload
|
|
|
|
expect(report.action_taken_by_account).to eq nil
|
|
|
|
expect(report.action_taken).to eq false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with an outsome of `assign_to_self`' do
|
|
|
|
it 'reopens the report' do
|
|
|
|
report = Fabricate(:report)
|
|
|
|
|
|
|
|
put :update, params: { id: report, outcome: 'assign_to_self' }
|
|
|
|
expect(response).to redirect_to(admin_report_path(report))
|
|
|
|
report.reload
|
|
|
|
expect(report.assigned_account).to eq user.account
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with an outsome of `unassign`' do
|
|
|
|
it 'reopens the report' do
|
|
|
|
report = Fabricate(:report)
|
|
|
|
|
|
|
|
put :update, params: { id: report, outcome: 'unassign' }
|
|
|
|
expect(response).to redirect_to(admin_report_path(report))
|
|
|
|
report.reload
|
|
|
|
expect(report.assigned_account).to eq nil
|
|
|
|
end
|
|
|
|
end
|
2017-04-14 11:10:28 +02:00
|
|
|
end
|
2017-04-10 21:27:03 +02:00
|
|
|
end
|