2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-07-15 19:08:19 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe UnallowDomainService, type: :service do
|
2023-06-06 11:58:33 +00:00
|
|
|
subject { described_class.new }
|
2023-02-20 04:24:14 +00:00
|
|
|
|
2020-07-15 19:08:19 +00:00
|
|
|
let!(:bad_account) { Fabricate(:account, username: 'badguy666', domain: 'evil.org') }
|
2023-06-14 14:44:37 +00:00
|
|
|
let!(:bad_status_harassment) { Fabricate(:status, account: bad_account, text: 'You suck') }
|
|
|
|
let!(:bad_status_mean) { Fabricate(:status, account: bad_account, text: 'Hahaha') }
|
|
|
|
let!(:bad_attachment) { Fabricate(:media_attachment, account: bad_account, status: bad_status_mean, file: attachment_fixture('attachment.jpg')) }
|
2020-07-15 19:08:19 +00:00
|
|
|
let!(:already_banned_account) { Fabricate(:account, username: 'badguy', domain: 'evil.org', suspended: true, silenced: true) }
|
|
|
|
let!(:domain_allow) { Fabricate(:domain_allow, domain: 'evil.org') }
|
|
|
|
|
2023-05-04 03:49:08 +00:00
|
|
|
context 'with limited federation mode' do
|
2020-07-15 19:08:19 +00:00
|
|
|
before do
|
2023-08-02 17:32:48 +00:00
|
|
|
allow(Rails.configuration.x).to receive(:limited_federation_mode).and_return(true)
|
2020-07-15 19:08:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#call' do
|
|
|
|
before do
|
|
|
|
subject.call(domain_allow)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the allowed domain' do
|
|
|
|
expect(DomainAllow.allowed?('evil.org')).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes remote accounts from that domain' do
|
|
|
|
expect(Account.where(domain: 'evil.org').exists?).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the remote accounts\'s statuses and media attachments' do
|
2023-06-14 14:44:37 +00:00
|
|
|
expect { bad_status_harassment.reload }.to raise_exception ActiveRecord::RecordNotFound
|
|
|
|
expect { bad_status_mean.reload }.to raise_exception ActiveRecord::RecordNotFound
|
2020-07-15 19:08:19 +00:00
|
|
|
expect { bad_attachment.reload }.to raise_exception ActiveRecord::RecordNotFound
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without limited federation mode' do
|
|
|
|
before do
|
2023-08-02 17:32:48 +00:00
|
|
|
allow(Rails.configuration.x).to receive(:limited_federation_mode).and_return(false)
|
2020-07-15 19:08:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#call' do
|
|
|
|
before do
|
|
|
|
subject.call(domain_allow)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the allowed domain' do
|
|
|
|
expect(DomainAllow.allowed?('evil.org')).to be false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not remove accounts from that domain' do
|
|
|
|
expect(Account.where(domain: 'evil.org').exists?).to be true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the remote accounts\'s statuses and media attachments' do
|
2023-06-14 14:44:37 +00:00
|
|
|
expect { bad_status_harassment.reload }.to_not raise_error
|
|
|
|
expect { bad_status_mean.reload }.to_not raise_error
|
2020-09-04 18:22:26 +00:00
|
|
|
expect { bad_attachment.reload }.to_not raise_error
|
2020-07-15 19:08:19 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|