134 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			134 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
require 'rails_helper'
 | 
						|
 | 
						|
describe Report do
 | 
						|
  describe 'statuses' do
 | 
						|
    it 'returns the statuses for the report' do
 | 
						|
      status = Fabricate(:status)
 | 
						|
      _other = Fabricate(:status)
 | 
						|
      report = Fabricate(:report, status_ids: [status.id])
 | 
						|
 | 
						|
      expect(report.statuses).to eq [status]
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'media_attachments' do
 | 
						|
    it 'returns media attachments from statuses' do
 | 
						|
      status = Fabricate(:status)
 | 
						|
      media_attachment = Fabricate(:media_attachment, status: status)
 | 
						|
      _other_media_attachment = Fabricate(:media_attachment)
 | 
						|
      report = Fabricate(:report, status_ids: [status.id])
 | 
						|
 | 
						|
      expect(report.media_attachments).to eq [media_attachment]
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'assign_to_self!' do
 | 
						|
    subject { report.assigned_account_id }
 | 
						|
 | 
						|
    let(:report) { Fabricate(:report, assigned_account_id: original_account) }
 | 
						|
    let(:original_account) { Fabricate(:account) }
 | 
						|
    let(:current_account) { Fabricate(:account) }
 | 
						|
 | 
						|
    before do
 | 
						|
      report.assign_to_self!(current_account)
 | 
						|
    end
 | 
						|
 | 
						|
    it 'assigns to a given account' do
 | 
						|
      is_expected.to eq current_account.id
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'unassign!' do
 | 
						|
    subject { report.assigned_account_id }
 | 
						|
 | 
						|
    let(:report) { Fabricate(:report, assigned_account_id: account.id) }
 | 
						|
    let(:account) { Fabricate(:account) }
 | 
						|
 | 
						|
    before do
 | 
						|
      report.unassign!
 | 
						|
    end
 | 
						|
 | 
						|
    it 'unassigns' do
 | 
						|
      is_expected.to be_nil
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'resolve!' do
 | 
						|
    subject(:report) { Fabricate(:report, action_taken: false, action_taken_by_account_id: nil) }
 | 
						|
 | 
						|
    let(:acting_account) { Fabricate(:account) }
 | 
						|
 | 
						|
    before do
 | 
						|
      report.resolve!(acting_account)
 | 
						|
    end
 | 
						|
 | 
						|
    it 'records action taken' do
 | 
						|
      expect(report).to have_attributes(action_taken: true, action_taken_by_account_id: acting_account.id)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'unresolve!' do
 | 
						|
    subject(:report) { Fabricate(:report, action_taken: true, action_taken_by_account_id: acting_account.id) }
 | 
						|
 | 
						|
    let(:acting_account) { Fabricate(:account) }
 | 
						|
 | 
						|
    before do
 | 
						|
      report.unresolve!
 | 
						|
    end
 | 
						|
 | 
						|
    it 'unresolves' do
 | 
						|
      expect(report).to have_attributes(action_taken: false, action_taken_by_account_id: nil)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'unresolved?' do
 | 
						|
    subject { report.unresolved? }
 | 
						|
 | 
						|
    let(:report) { Fabricate(:report, action_taken: action_taken) }
 | 
						|
 | 
						|
    context 'if action is taken' do
 | 
						|
      let(:action_taken) { true }
 | 
						|
 | 
						|
      it { is_expected.to be false }
 | 
						|
    end
 | 
						|
 | 
						|
    context 'if action not is taken' do
 | 
						|
      let(:action_taken) { false }
 | 
						|
 | 
						|
      it { is_expected.to be true }
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'history' do
 | 
						|
    subject(:action_logs) { report.history }
 | 
						|
 | 
						|
    let(:report) { Fabricate(:report, target_account_id: target_account.id, status_ids: [status.id], created_at: 3.days.ago, updated_at: 1.day.ago) }
 | 
						|
    let(:target_account) { Fabricate(:account) }
 | 
						|
    let(:status) { Fabricate(:status) }
 | 
						|
 | 
						|
    before do
 | 
						|
      Fabricate('Admin::ActionLog', target_type: 'Report', account_id: target_account.id, target_id: report.id, created_at: 2.days.ago)
 | 
						|
      Fabricate('Admin::ActionLog', target_type: 'Account', account_id: target_account.id, target_id: report.target_account_id, created_at: 2.days.ago)
 | 
						|
      Fabricate('Admin::ActionLog', target_type: 'Status', account_id: target_account.id, target_id: status.id, created_at: 2.days.ago)
 | 
						|
    end
 | 
						|
 | 
						|
    it 'returns right logs' do
 | 
						|
      expect(action_logs.count).to eq 3
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'validatiions' do
 | 
						|
    it 'has a valid fabricator' do
 | 
						|
      report = Fabricate(:report)
 | 
						|
      report.valid?
 | 
						|
      expect(report).to be_valid
 | 
						|
    end
 | 
						|
 | 
						|
    it 'is invalid if comment is longer than 1000 characters' do
 | 
						|
      report = Fabricate.build(:report, comment: Faker::Lorem.characters(1001))
 | 
						|
      report.valid?
 | 
						|
      expect(report).to model_have_error_on_field(:comment)
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |