BigW Consortium Gitlab

abuse_report_spec.rb 1.57 KB
Newer Older
1 2 3
require 'rails_helper'

RSpec.describe AbuseReport, type: :model do
4
  subject     { create(:abuse_report) }
5
  let(:user)  { create(:admin) }
6 7

  it { expect(subject).to be_valid }
8 9 10 11

  describe 'associations' do
    it { is_expected.to belong_to(:reporter).class_name('User') }
    it { is_expected.to belong_to(:user) }
12 13 14 15

    it "aliases reporter to author" do
      expect(subject.author).to be(subject.reporter)
    end
16 17 18 19 20 21
  end

  describe 'validations' do
    it { is_expected.to validate_presence_of(:reporter) }
    it { is_expected.to validate_presence_of(:user) }
    it { is_expected.to validate_presence_of(:message) }
22
    it { is_expected.to validate_uniqueness_of(:user_id).with_message('has already been reported') }
23
  end
24

25 26
  describe '#remove_user' do
    it 'blocks the user' do
27
      expect { subject.remove_user(deleted_by: user) }.to change { subject.user.blocked? }.to(true)
28 29
    end

30
    it 'lets a worker delete the user' do
31
      expect(DeleteUserWorker).to receive(:perform_async).with(user.id, subject.user.id,
32 33
                                                              delete_solo_owned_groups: true,
                                                              hard_delete: true)
34

35
      subject.remove_user(deleted_by: user)
36 37 38
    end
  end

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
  describe '#notify' do
    it 'delivers' do
      expect(AbuseReportMailer).to receive(:notify).with(subject.id).
        and_return(spy)

      subject.notify
    end

    it 'returns early when not persisted' do
      report = build(:abuse_report)

      expect(AbuseReportMailer).not_to receive(:notify)

      report.notify
    end
  end
55
end