2023-02-22 11:55:31 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-11 05:27:03 +10:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 15:12:25 +10:00
|
|
|
RSpec.describe Admin::ReportsController do
|
2017-04-28 09:21:38 +10:00
|
|
|
render_views
|
|
|
|
|
2022-07-05 10:41:40 +10:00
|
|
|
let(:user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
2023-02-19 09:10:19 +11:00
|
|
|
|
2017-04-14 19:10:28 +10:00
|
|
|
before do
|
|
|
|
sign_in user, scope: :user
|
|
|
|
end
|
|
|
|
|
2017-04-11 05:27:03 +10:00
|
|
|
describe 'GET #index' do
|
2017-04-14 19:10:28 +10:00
|
|
|
it 'returns http success with no filters' do
|
2024-09-04 01:23:16 +10:00
|
|
|
specified = Fabricate(:report, action_taken_at: nil, comment: 'First report')
|
|
|
|
other = Fabricate(:report, action_taken_at: Time.now.utc, comment: 'Second report')
|
2017-05-30 02:12:34 +10:00
|
|
|
|
2017-04-14 19:10:28 +10:00
|
|
|
get :index
|
|
|
|
|
2018-04-22 05:35:07 +10:00
|
|
|
expect(response).to have_http_status(200)
|
2024-09-04 01:23:16 +10:00
|
|
|
expect(response.body)
|
|
|
|
.to include(specified.comment)
|
|
|
|
.and not_include(other.comment)
|
2017-04-11 05:27:03 +10:00
|
|
|
end
|
|
|
|
|
2017-04-14 19:10:28 +10:00
|
|
|
it 'returns http success with resolved filter' do
|
2024-09-04 01:23:16 +10:00
|
|
|
specified = Fabricate(:report, action_taken_at: Time.now.utc, comment: 'First report')
|
|
|
|
other = Fabricate(:report, action_taken_at: nil, comment: 'Second report')
|
2017-05-30 02:12:34 +10:00
|
|
|
|
2022-01-17 19:41:33 +11:00
|
|
|
get :index, params: { resolved: '1' }
|
2017-04-14 19:10:28 +10:00
|
|
|
|
2018-04-22 05:35:07 +10:00
|
|
|
expect(response).to have_http_status(200)
|
2024-09-04 01:23:16 +10:00
|
|
|
expect(response.body)
|
|
|
|
.to include(specified.comment)
|
|
|
|
.and not_include(other.comment)
|
2017-04-14 19:10:28 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2017-05-30 02:12:34 +10:00
|
|
|
it 'renders report' do
|
2024-09-04 01:23:16 +10:00
|
|
|
report = Fabricate(:report, comment: 'A big problem')
|
2017-04-14 19:10:28 +10:00
|
|
|
|
|
|
|
get :show, params: { id: report }
|
2017-05-30 02:12:34 +10:00
|
|
|
|
2018-04-22 05:35:07 +10:00
|
|
|
expect(response).to have_http_status(200)
|
2024-09-04 01:23:16 +10:00
|
|
|
expect(response.body)
|
|
|
|
.to include(report.comment)
|
2017-04-11 05:27:03 +10:00
|
|
|
end
|
2024-09-07 00:58:36 +10:00
|
|
|
|
|
|
|
describe 'account moderation notes' do
|
|
|
|
let(:report) { Fabricate(:report) }
|
|
|
|
|
|
|
|
it 'includes moderation notes' do
|
|
|
|
note1 = Fabricate(:report_note, report: report)
|
|
|
|
note2 = Fabricate(:report_note, report: report)
|
|
|
|
|
|
|
|
get :show, params: { id: report }
|
|
|
|
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
|
|
|
|
report_notes = assigns(:report_notes).to_a
|
|
|
|
|
|
|
|
expect(report_notes.size).to be 2
|
|
|
|
expect(report_notes).to eq [note1, note2]
|
|
|
|
end
|
|
|
|
end
|
2017-04-11 05:27:03 +10:00
|
|
|
end
|
2017-04-14 19:10:28 +10:00
|
|
|
|
2020-03-21 13:08:09 +11:00
|
|
|
describe 'POST #resolve' do
|
|
|
|
it 'resolves the report' do
|
|
|
|
report = Fabricate(:report)
|
|
|
|
|
|
|
|
put :resolve, params: { id: report }
|
|
|
|
expect(response).to redirect_to(admin_reports_path)
|
|
|
|
report.reload
|
|
|
|
expect(report.action_taken_by_account).to eq user.account
|
2023-02-20 16:14:50 +11:00
|
|
|
expect(report.action_taken?).to be true
|
2024-02-06 22:34:11 +11:00
|
|
|
expect(last_action_log.target).to eq(report)
|
2020-03-21 13:08:09 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
describe 'POST #reopen' do
|
|
|
|
it 'reopens the report' do
|
2024-07-18 17:49:44 +10:00
|
|
|
report = Fabricate(:report, action_taken_at: 3.days.ago)
|
2018-04-03 06:04:14 +10:00
|
|
|
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
put :reopen, params: { id: report }
|
|
|
|
expect(response).to redirect_to(admin_report_path(report))
|
|
|
|
report.reload
|
2023-02-20 16:14:50 +11:00
|
|
|
expect(report.action_taken_by_account).to be_nil
|
|
|
|
expect(report.action_taken?).to be false
|
2024-02-06 22:34:11 +11:00
|
|
|
expect(last_action_log.target).to eq(report)
|
2018-04-03 06:04:14 +10:00
|
|
|
end
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
end
|
2018-04-03 06:04:14 +10:00
|
|
|
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
describe 'POST #assign_to_self' do
|
|
|
|
it 'reopens the report' do
|
|
|
|
report = Fabricate(:report)
|
2018-04-03 06:04:14 +10:00
|
|
|
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
put :assign_to_self, params: { id: report }
|
|
|
|
expect(response).to redirect_to(admin_report_path(report))
|
|
|
|
report.reload
|
|
|
|
expect(report.assigned_account).to eq user.account
|
2024-02-06 22:34:11 +11:00
|
|
|
expect(last_action_log.target).to eq(report)
|
2018-04-03 06:04:14 +10:00
|
|
|
end
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
end
|
2018-04-03 06:04:14 +10:00
|
|
|
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
describe 'POST #unassign' do
|
|
|
|
it 'reopens the report' do
|
2024-07-18 17:49:44 +10:00
|
|
|
report = Fabricate(:report, assigned_account_id: Account.last.id)
|
2018-04-03 06:04:14 +10:00
|
|
|
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
put :unassign, params: { id: report }
|
|
|
|
expect(response).to redirect_to(admin_report_path(report))
|
|
|
|
report.reload
|
2023-02-20 16:14:50 +11:00
|
|
|
expect(report.assigned_account).to be_nil
|
2024-02-06 22:34:11 +11:00
|
|
|
expect(last_action_log.target).to eq(report)
|
2018-04-03 06:04:14 +10:00
|
|
|
end
|
2017-04-14 19:10:28 +10:00
|
|
|
end
|
2024-02-06 22:34:11 +11:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def last_action_log
|
|
|
|
Admin::ActionLog.last
|
|
|
|
end
|
2017-04-11 05:27:03 +10:00
|
|
|
end
|