# frozen_string_literal: true require 'spec_helper' RSpec.describe Admin::AbuseReportsController, type: :request, feature_category: :insider_threat do include AdminModeHelper let_it_be(:admin) { create(:admin) } before do enable_admin_mode!(admin) sign_in(admin) end describe 'GET #index' do let!(:open_report) { create(:abuse_report) } let!(:closed_report) { create(:abuse_report, :closed) } it 'returns open reports by default' do get admin_abuse_reports_path expect(assigns(:abuse_reports).count).to eq 1 expect(assigns(:abuse_reports).first.open?).to eq true end it 'returns reports by specified status' do get admin_abuse_reports_path, params: { status: 'closed' } expect(assigns(:abuse_reports).count).to eq 1 expect(assigns(:abuse_reports).first.closed?).to eq true end context 'when abuse_reports_list flag is disabled' do before do stub_feature_flags(abuse_reports_list: false) end it 'returns all reports by default' do get admin_abuse_reports_path expect(assigns(:abuse_reports).count).to eq 2 end end end describe 'GET #show' do let!(:report) { create(:abuse_report) } it 'returns the requested report' do get admin_abuse_report_path(report) expect(assigns(:abuse_report)).to eq report end end describe 'PUT #update' do let(:report) { create(:abuse_report) } let(:params) { { user_action: 'block_user', close: 'true', reason: 'spam', comment: 'obvious spam' } } let(:expected_params) { ActionController::Parameters.new(params).permit! } it 'invokes the Admin::AbuseReportUpdateService' do expect_next_instance_of(Admin::AbuseReportUpdateService, report, admin, expected_params) do |service| expect(service).to receive(:execute) end put admin_abuse_report_path(report, params) end end describe 'DELETE #destroy' do let!(:report) { create(:abuse_report) } let(:params) { {} } subject { delete admin_abuse_report_path(report, params) } it 'destroys the report' do expect { subject }.to change { AbuseReport.count }.by(-1) end context 'when passing the `remove_user` parameter' do let(:params) { { remove_user: true } } it 'calls the `remove_user` method' do expect_next_found_instance_of(AbuseReport) do |report| expect(report).to receive(:remove_user).with(deleted_by: admin) end subject end end end end