2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-09 21:48:43 +09:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-05-03 01:58:48 +09:00
|
|
|
RSpec.describe BlockDomainService, type: :service do
|
2023-06-06 20:58:33 +09:00
|
|
|
subject { described_class.new }
|
2023-02-20 13:24:14 +09:00
|
|
|
|
2019-05-15 02:05:02 +09:00
|
|
|
let!(:bad_account) { Fabricate(:account, username: 'badguy666', domain: 'evil.org') }
|
2023-06-14 23:44:37 +09:00
|
|
|
let!(:bad_status_plain) { Fabricate(:status, account: bad_account, text: 'You suck') }
|
|
|
|
let!(:bad_status_with_attachment) { Fabricate(:status, account: bad_account, text: 'Hahaha') }
|
|
|
|
let!(:bad_attachment) { Fabricate(:media_attachment, account: bad_account, status: bad_status_with_attachment, file: attachment_fixture('attachment.jpg')) }
|
2019-05-15 02:05:02 +09:00
|
|
|
let!(:already_banned_account) { Fabricate(:account, username: 'badguy', domain: 'evil.org', suspended: true, silenced: true) }
|
2016-10-09 21:48:43 +09:00
|
|
|
|
2017-04-27 03:09:01 +09:00
|
|
|
describe 'for a suspension' do
|
|
|
|
before do
|
|
|
|
subject.call(DomainBlock.create!(domain: 'evil.org', severity: :suspend))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a domain block' do
|
|
|
|
expect(DomainBlock.blocked?('evil.org')).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes remote accounts from that domain' do
|
|
|
|
expect(Account.find_remote('badguy666', 'evil.org').suspended?).to be true
|
|
|
|
end
|
2016-10-09 21:48:43 +09:00
|
|
|
|
2019-05-15 02:05:02 +09:00
|
|
|
it 'records suspension date appropriately' do
|
|
|
|
expect(Account.find_remote('badguy666', 'evil.org').suspended_at).to eq DomainBlock.find_by(domain: 'evil.org').created_at
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'keeps already-banned accounts banned' do
|
|
|
|
expect(Account.find_remote('badguy', 'evil.org').suspended?).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not overwrite suspension date of already-banned accounts' do
|
|
|
|
expect(Account.find_remote('badguy', 'evil.org').suspended_at).to_not eq DomainBlock.find_by(domain: 'evil.org').created_at
|
|
|
|
end
|
|
|
|
|
2017-04-27 03:09:01 +09:00
|
|
|
it 'removes the remote accounts\'s statuses and media attachments' do
|
2023-06-14 23:44:37 +09:00
|
|
|
expect { bad_status_plain.reload }.to raise_exception ActiveRecord::RecordNotFound
|
|
|
|
expect { bad_status_with_attachment.reload }.to raise_exception ActiveRecord::RecordNotFound
|
2017-04-27 03:09:01 +09:00
|
|
|
expect { bad_attachment.reload }.to raise_exception ActiveRecord::RecordNotFound
|
|
|
|
end
|
2016-10-09 21:48:43 +09:00
|
|
|
end
|
|
|
|
|
2017-04-27 03:09:01 +09:00
|
|
|
describe 'for a silence with reject media' do
|
|
|
|
before do
|
|
|
|
subject.call(DomainBlock.create!(domain: 'evil.org', severity: :silence, reject_media: true))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a domain block' do
|
|
|
|
expect(DomainBlock.blocked?('evil.org')).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'silences remote accounts from that domain' do
|
|
|
|
expect(Account.find_remote('badguy666', 'evil.org').silenced?).to be true
|
|
|
|
end
|
|
|
|
|
2019-05-15 02:05:02 +09:00
|
|
|
it 'records suspension date appropriately' do
|
|
|
|
expect(Account.find_remote('badguy666', 'evil.org').silenced_at).to eq DomainBlock.find_by(domain: 'evil.org').created_at
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'keeps already-banned accounts banned' do
|
|
|
|
expect(Account.find_remote('badguy', 'evil.org').silenced?).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not overwrite suspension date of already-banned accounts' do
|
|
|
|
expect(Account.find_remote('badguy', 'evil.org').silenced_at).to_not eq DomainBlock.find_by(domain: 'evil.org').created_at
|
|
|
|
end
|
|
|
|
|
2022-02-23 04:14:17 +09:00
|
|
|
it 'leaves the domains status and attachments, but clears media' do
|
2023-06-14 23:44:37 +09:00
|
|
|
expect { bad_status_plain.reload }.to_not raise_error
|
|
|
|
expect { bad_status_with_attachment.reload }.to_not raise_error
|
2023-02-20 10:33:27 +09:00
|
|
|
expect { bad_attachment.reload }.to_not raise_error
|
2017-04-27 03:09:01 +09:00
|
|
|
expect(bad_attachment.file.exists?).to be false
|
|
|
|
end
|
2016-10-09 21:48:43 +09:00
|
|
|
end
|
|
|
|
end
|