debian-mirror-gitlab/spec/models/abuse_report_spec.rb

56 lines
1.6 KiB
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
require 'rails_helper'
RSpec.describe AbuseReport, type: :model do
2016-06-02 11:05:42 +05:30
subject { create(:abuse_report) }
2017-08-17 22:00:37 +05:30
let(:user) { create(:admin) }
2015-09-11 14:41:01 +05:30
it { expect(subject).to be_valid }
2015-10-24 18:46:33 +05:30
describe 'associations' do
it { is_expected.to belong_to(:reporter).class_name('User') }
it { is_expected.to belong_to(:user) }
2016-11-03 12:29:30 +05:30
it "aliases reporter to author" do
expect(subject.author).to be(subject.reporter)
end
2015-10-24 18:46:33 +05:30
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) }
2016-04-02 18:10:28 +05:30
it { is_expected.to validate_uniqueness_of(:user_id).with_message('has already been reported') }
2015-10-24 18:46:33 +05:30
end
describe '#remove_user' do
it 'blocks the user' do
2016-06-02 11:05:42 +05:30
expect { subject.remove_user(deleted_by: user) }.to change { subject.user.blocked? }.to(true)
end
2016-06-02 11:05:42 +05:30
it 'lets a worker delete the user' do
expect(DeleteUserWorker).to receive(:perform_async).with(user.id, subject.user.id,
2017-08-17 22:00:37 +05:30
delete_solo_owned_groups: true,
hard_delete: true)
2016-06-02 11:05:42 +05:30
subject.remove_user(deleted_by: user)
end
end
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
2015-09-11 14:41:01 +05:30
end