* 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
		
			
				
	
	
		
			82 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
require 'rails_helper'
 | 
						|
 | 
						|
describe Admin::ReportsController do
 | 
						|
  render_views
 | 
						|
 | 
						|
  let(:user) { Fabricate(:user, admin: true) }
 | 
						|
  before do
 | 
						|
    sign_in user, scope: :user
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'GET #index' do
 | 
						|
    it 'returns http success with no filters' do
 | 
						|
      specified = Fabricate(:report, action_taken: false)
 | 
						|
      Fabricate(:report, action_taken: true)
 | 
						|
 | 
						|
      get :index
 | 
						|
 | 
						|
      reports = assigns(:reports).to_a
 | 
						|
      expect(reports.size).to eq 1
 | 
						|
      expect(reports[0]).to eq specified
 | 
						|
      expect(response).to have_http_status(200)
 | 
						|
    end
 | 
						|
 | 
						|
    it 'returns http success with resolved filter' do
 | 
						|
      specified = Fabricate(:report, action_taken: true)
 | 
						|
      Fabricate(:report, action_taken: false)
 | 
						|
 | 
						|
      get :index, params: { resolved: 1 }
 | 
						|
 | 
						|
      reports = assigns(:reports).to_a
 | 
						|
      expect(reports.size).to eq 1
 | 
						|
      expect(reports[0]).to eq specified
 | 
						|
 | 
						|
      expect(response).to have_http_status(200)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'GET #show' do
 | 
						|
    it 'renders report' do
 | 
						|
      report = Fabricate(:report)
 | 
						|
 | 
						|
      get :show, params: { id: report }
 | 
						|
 | 
						|
      expect(assigns(:report)).to eq report
 | 
						|
      expect(response).to have_http_status(200)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'POST #reopen' do
 | 
						|
    it 'reopens the report' do
 | 
						|
      report = Fabricate(:report)
 | 
						|
 | 
						|
      put :reopen, params: { id: report }
 | 
						|
      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 'POST #assign_to_self' do
 | 
						|
    it 'reopens the report' do
 | 
						|
      report = Fabricate(:report)
 | 
						|
 | 
						|
      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
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'POST #unassign' do
 | 
						|
    it 'reopens the report' do
 | 
						|
      report = Fabricate(:report)
 | 
						|
 | 
						|
      put :unassign, params: { id: report }
 | 
						|
      expect(response).to redirect_to(admin_report_path(report))
 | 
						|
      report.reload
 | 
						|
      expect(report.assigned_account).to eq nil
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |