2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-11 04:27:03 +09:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 14:12:25 +09:00
|
|
|
RSpec.describe Admin::ReportsController do
|
2017-04-28 08:21:38 +09:00
|
|
|
render_views
|
|
|
|
|
2022-07-05 09:41:40 +09:00
|
|
|
let(:user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
2023-02-19 07:10:19 +09:00
|
|
|
|
2017-04-14 18:10:28 +09:00
|
|
|
before do
|
|
|
|
sign_in user, scope: :user
|
|
|
|
end
|
|
|
|
|
2017-04-11 04:27:03 +09:00
|
|
|
describe 'GET #index' do
|
2017-04-14 18:10:28 +09:00
|
|
|
it 'returns http success with no filters' do
|
2024-09-04 00:23:16 +09: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 01:12:34 +09:00
|
|
|
|
2017-04-14 18:10:28 +09:00
|
|
|
get :index
|
|
|
|
|
2018-04-22 04:35:07 +09:00
|
|
|
expect(response).to have_http_status(200)
|
2024-09-04 00:23:16 +09:00
|
|
|
expect(response.body)
|
|
|
|
.to include(specified.comment)
|
|
|
|
.and not_include(other.comment)
|
2017-04-11 04:27:03 +09:00
|
|
|
end
|
|
|
|
|
2017-04-14 18:10:28 +09:00
|
|
|
it 'returns http success with resolved filter' do
|
2024-09-04 00:23:16 +09: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 01:12:34 +09:00
|
|
|
|
2022-01-17 17:41:33 +09:00
|
|
|
get :index, params: { resolved: '1' }
|
2017-04-14 18:10:28 +09:00
|
|
|
|
2018-04-22 04:35:07 +09:00
|
|
|
expect(response).to have_http_status(200)
|
2024-09-04 00:23:16 +09:00
|
|
|
expect(response.body)
|
|
|
|
.to include(specified.comment)
|
|
|
|
.and not_include(other.comment)
|
2017-04-14 18:10:28 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2017-05-30 01:12:34 +09:00
|
|
|
it 'renders report' do
|
2024-09-04 00:23:16 +09:00
|
|
|
report = Fabricate(:report, comment: 'A big problem')
|
2017-04-14 18:10:28 +09:00
|
|
|
|
|
|
|
get :show, params: { id: report }
|
2017-05-30 01:12:34 +09:00
|
|
|
|
2018-04-22 04:35:07 +09:00
|
|
|
expect(response).to have_http_status(200)
|
2024-09-04 00:23:16 +09:00
|
|
|
expect(response.body)
|
|
|
|
.to include(report.comment)
|
2017-04-11 04:27:03 +09:00
|
|
|
end
|
2024-09-06 23:58:36 +09: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 04:27:03 +09:00
|
|
|
end
|
2017-04-14 18:10:28 +09:00
|
|
|
|
2020-03-21 11:08:09 +09: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 14:14:50 +09:00
|
|
|
expect(report.action_taken?).to be true
|
2024-02-06 20:34:11 +09:00
|
|
|
expect(last_action_log.target).to eq(report)
|
2020-03-21 11:08:09 +09: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 04:02:09 +09:00
|
|
|
describe 'POST #reopen' do
|
|
|
|
it 'reopens the report' do
|
2024-07-18 16:49:44 +09:00
|
|
|
report = Fabricate(:report, action_taken_at: 3.days.ago)
|
2018-04-03 05:04:14 +09: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 04:02:09 +09:00
|
|
|
put :reopen, params: { id: report }
|
|
|
|
expect(response).to redirect_to(admin_report_path(report))
|
|
|
|
report.reload
|
2023-02-20 14:14:50 +09:00
|
|
|
expect(report.action_taken_by_account).to be_nil
|
|
|
|
expect(report.action_taken?).to be false
|
2024-02-06 20:34:11 +09:00
|
|
|
expect(last_action_log.target).to eq(report)
|
2018-04-03 05:04:14 +09: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 04:02:09 +09:00
|
|
|
end
|
2018-04-03 05:04:14 +09: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 04:02:09 +09:00
|
|
|
describe 'POST #assign_to_self' do
|
|
|
|
it 'reopens the report' do
|
|
|
|
report = Fabricate(:report)
|
2018-04-03 05:04:14 +09: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 04:02:09 +09: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 20:34:11 +09:00
|
|
|
expect(last_action_log.target).to eq(report)
|
2018-04-03 05:04:14 +09: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 04:02:09 +09:00
|
|
|
end
|
2018-04-03 05:04:14 +09: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 04:02:09 +09:00
|
|
|
describe 'POST #unassign' do
|
|
|
|
it 'reopens the report' do
|
2024-07-18 16:49:44 +09:00
|
|
|
report = Fabricate(:report, assigned_account_id: Account.last.id)
|
2018-04-03 05:04:14 +09: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 04:02:09 +09:00
|
|
|
put :unassign, params: { id: report }
|
|
|
|
expect(response).to redirect_to(admin_report_path(report))
|
|
|
|
report.reload
|
2023-02-20 14:14:50 +09:00
|
|
|
expect(report.assigned_account).to be_nil
|
2024-02-06 20:34:11 +09:00
|
|
|
expect(last_action_log.target).to eq(report)
|
2018-04-03 05:04:14 +09:00
|
|
|
end
|
2017-04-14 18:10:28 +09:00
|
|
|
end
|
2024-02-06 20:34:11 +09:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def last_action_log
|
|
|
|
Admin::ActionLog.last
|
|
|
|
end
|
2017-04-11 04:27:03 +09:00
|
|
|
end
|