2023-02-22 11:55:31 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-28 16:54:55 +11:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-05-03 02:58:48 +10:00
|
|
|
RSpec.describe ReportService, type: :service do
|
2018-02-28 16:54:55 +11:00
|
|
|
subject { described_class.new }
|
|
|
|
|
2022-01-28 10:46:42 +11:00
|
|
|
let(:source_account) { Fabricate(:account) }
|
2023-05-22 21:15:21 +10:00
|
|
|
let(:target_account) { Fabricate(:account) }
|
|
|
|
|
|
|
|
context 'with a local account' do
|
|
|
|
it 'has a uri' do
|
|
|
|
report = subject.call(source_account, target_account)
|
|
|
|
expect(report.uri).to_not be_nil
|
|
|
|
end
|
|
|
|
end
|
2018-02-28 16:54:55 +11:00
|
|
|
|
2023-05-04 13:49:08 +10:00
|
|
|
context 'with a remote account' do
|
2018-02-28 16:54:55 +11:00
|
|
|
let(:remote_account) { Fabricate(:account, domain: 'example.com', protocol: :activitypub, inbox_url: 'http://example.com/inbox') }
|
2023-07-09 04:00:02 +10:00
|
|
|
let(:forward) { false }
|
2018-02-28 16:54:55 +11:00
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
|
|
|
|
end
|
|
|
|
|
2023-07-09 04:00:02 +10:00
|
|
|
context 'when forward is true' do
|
|
|
|
let(:forward) { true }
|
|
|
|
|
|
|
|
it 'sends ActivityPub payload when forward is true' do
|
|
|
|
subject.call(source_account, remote_account, forward: forward)
|
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to have_been_made
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has an uri' do
|
|
|
|
report = subject.call(source_account, remote_account, forward: forward)
|
|
|
|
expect(report.uri).to_not be_nil
|
|
|
|
end
|
2018-02-28 16:54:55 +11:00
|
|
|
|
2023-07-09 04:00:02 +10:00
|
|
|
context 'when reporting a reply' do
|
|
|
|
let(:remote_thread_account) { Fabricate(:account, domain: 'foo.com', protocol: :activitypub, inbox_url: 'http://foo.com/inbox') }
|
|
|
|
let(:reported_status) { Fabricate(:status, account: remote_account, thread: Fabricate(:status, account: remote_thread_account)) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:post, 'http://foo.com/inbox').to_return(status: 200)
|
|
|
|
end
|
|
|
|
|
2023-07-11 02:26:56 +10:00
|
|
|
context 'when forward_to_domains includes both the replied-to domain and the origin domain' do
|
|
|
|
it 'sends ActivityPub payload to both the author of the replied-to post and the reported user' do
|
|
|
|
subject.call(source_account, remote_account, status_ids: [reported_status.id], forward: forward, forward_to_domains: [remote_account.domain, remote_thread_account.domain])
|
|
|
|
expect(a_request(:post, 'http://foo.com/inbox')).to have_been_made
|
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to have_been_made
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when forward_to_domains includes only the replied-to domain' do
|
|
|
|
it 'sends ActivityPub payload only to the author of the replied-to post' do
|
|
|
|
subject.call(source_account, remote_account, status_ids: [reported_status.id], forward: forward, forward_to_domains: [remote_thread_account.domain])
|
|
|
|
expect(a_request(:post, 'http://foo.com/inbox')).to have_been_made
|
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to_not have_been_made
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when forward_to_domains does not include the replied-to domain' do
|
|
|
|
it 'does not send ActivityPub payload to the author of the replied-to post' do
|
|
|
|
subject.call(source_account, remote_account, status_ids: [reported_status.id], forward: forward)
|
|
|
|
expect(a_request(:post, 'http://foo.com/inbox')).to_not have_been_made
|
|
|
|
end
|
2023-07-09 04:00:02 +10:00
|
|
|
end
|
|
|
|
end
|
2018-02-28 16:54:55 +11:00
|
|
|
end
|
2019-03-18 01:34:56 +11:00
|
|
|
|
2023-07-09 04:00:02 +10:00
|
|
|
context 'when forward is false' do
|
|
|
|
it 'does not send anything' do
|
|
|
|
subject.call(source_account, remote_account, forward: forward)
|
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to_not have_been_made
|
|
|
|
end
|
2019-03-18 01:34:56 +11:00
|
|
|
end
|
2018-02-28 16:54:55 +11:00
|
|
|
end
|
2018-09-02 08:11:58 +10:00
|
|
|
|
2022-07-04 19:08:30 +10:00
|
|
|
context 'when the reported status is a DM' do
|
|
|
|
subject do
|
|
|
|
-> { described_class.new.call(source_account, target_account, status_ids: [status.id]) }
|
|
|
|
end
|
|
|
|
|
2023-02-20 15:24:14 +11:00
|
|
|
let(:status) { Fabricate(:status, account: target_account, visibility: :direct) }
|
|
|
|
|
2022-07-04 19:08:30 +10:00
|
|
|
context 'when it is addressed to the reporter' do
|
|
|
|
before do
|
|
|
|
status.mentions.create(account: source_account)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a report' do
|
2022-09-22 06:46:35 +10:00
|
|
|
expect { subject.call }.to change { target_account.targeted_reports.count }.from(0).to(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'attaches the DM to the report' do
|
|
|
|
subject.call
|
|
|
|
expect(target_account.targeted_reports.pluck(:status_ids)).to eq [[status.id]]
|
2022-07-04 19:08:30 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when it is not addressed to the reporter' do
|
|
|
|
it 'errors out' do
|
2022-09-22 06:46:35 +10:00
|
|
|
expect { subject.call }.to raise_error(ActiveRecord::RecordNotFound)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the reporter is remote' do
|
|
|
|
let(:source_account) { Fabricate(:account, domain: 'example.com', uri: 'https://example.com/users/1') }
|
|
|
|
|
|
|
|
context 'when it is addressed to the reporter' do
|
|
|
|
before do
|
|
|
|
status.mentions.create(account: source_account)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a report' do
|
|
|
|
expect { subject.call }.to change { target_account.targeted_reports.count }.from(0).to(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'attaches the DM to the report' do
|
|
|
|
subject.call
|
|
|
|
expect(target_account.targeted_reports.pluck(:status_ids)).to eq [[status.id]]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when it is not addressed to the reporter' do
|
|
|
|
it 'does not add the DM to the report' do
|
|
|
|
subject.call
|
|
|
|
expect(target_account.targeted_reports.pluck(:status_ids)).to eq [[]]
|
|
|
|
end
|
2022-07-04 19:08:30 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-02 08:11:58 +10:00
|
|
|
context 'when other reports already exist for the same target' do
|
|
|
|
subject do
|
|
|
|
-> { described_class.new.call(source_account, target_account) }
|
|
|
|
end
|
|
|
|
|
2023-05-22 21:15:21 +10:00
|
|
|
let!(:other_report) { Fabricate(:report, target_account: target_account) }
|
2023-02-20 15:24:14 +11:00
|
|
|
|
2018-09-02 08:11:58 +10:00
|
|
|
before do
|
|
|
|
ActionMailer::Base.deliveries.clear
|
2023-03-30 23:44:00 +11:00
|
|
|
source_account.user.settings['notification_emails.report'] = true
|
|
|
|
source_account.user.save
|
2018-09-02 08:11:58 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not send an e-mail' do
|
2022-09-22 06:46:35 +10:00
|
|
|
expect { subject.call }.to_not change(ActionMailer::Base.deliveries, :count).from(0)
|
2018-09-02 08:11:58 +10:00
|
|
|
end
|
|
|
|
end
|
2018-02-28 16:54:55 +11:00
|
|
|
end
|