2023-02-22 11:55:31 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-06-09 18:32:00 +10:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe ClearDomainMediaService, type: :service do
|
2023-06-06 21:58:33 +10:00
|
|
|
subject { described_class.new }
|
2023-02-20 15:24:14 +11:00
|
|
|
|
2020-06-09 18:32:00 +10:00
|
|
|
let!(:bad_account) { Fabricate(:account, username: 'badguy666', domain: 'evil.org') }
|
2023-06-15 00:44:37 +10: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')) }
|
2020-06-09 18:32:00 +10:00
|
|
|
|
|
|
|
describe 'for a silence with reject media' do
|
|
|
|
before do
|
|
|
|
subject.call(DomainBlock.create!(domain: 'evil.org', severity: :silence, reject_media: true))
|
|
|
|
end
|
|
|
|
|
2022-02-23 06:14:17 +11:00
|
|
|
it 'leaves the domains status and attachments, but clears media' do
|
2023-06-15 00:44:37 +10:00
|
|
|
expect { bad_status_plain.reload }.to_not raise_error
|
|
|
|
expect { bad_status_with_attachment.reload }.to_not raise_error
|
2023-02-20 12:33:27 +11:00
|
|
|
expect { bad_attachment.reload }.to_not raise_error
|
2020-06-09 18:32:00 +10:00
|
|
|
expect(bad_attachment.file.exists?).to be false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|