2023-02-21 16:55:31 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-27 21:54:55 -08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-05-02 09:58:48 -07:00
|
|
|
RSpec.describe ReportService, type: :service do
|
2018-02-27 21:54:55 -08:00
|
|
|
subject { described_class.new }
|
|
|
|
|
2022-01-27 15:46:42 -08:00
|
|
|
let(:source_account) { Fabricate(:account) }
|
2023-05-22 04:15:21 -07: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-27 21:54:55 -08:00
|
|
|
|
2023-05-03 20:49:08 -07:00
|
|
|
context 'with a remote account' do
|
2018-02-27 21:54:55 -08:00
|
|
|
let(:remote_account) { Fabricate(:account, domain: 'example.com', protocol: :activitypub, inbox_url: 'http://example.com/inbox') }
|
2023-07-08 11:00:02 -07:00
|
|
|
let(:forward) { false }
|
2018-02-27 21:54:55 -08:00
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
|
|
|
|
end
|
|
|
|
|
2023-07-08 11:00:02 -07: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-27 21:54:55 -08:00
|
|
|
|
2023-10-10 07:00:50 -07:00
|
|
|
context 'when reporting a reply on a different remote server' do
|
2023-07-08 11:00:02 -07:00
|
|
|
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-10 09:26:56 -07: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-08 11:00:02 -07:00
|
|
|
end
|
|
|
|
end
|
2023-10-10 07:00:50 -07:00
|
|
|
|
|
|
|
context 'when reporting a reply on the same remote server as the person being replied-to' do
|
|
|
|
let(:remote_thread_account) { Fabricate(:account, domain: 'example.com', protocol: :activitypub, inbox_url: 'http://example.com/inbox') }
|
|
|
|
let(:reported_status) { Fabricate(:status, account: remote_account, thread: Fabricate(:status, account: remote_thread_account)) }
|
|
|
|
|
|
|
|
context 'when forward_to_domains includes both the replied-to domain and the origin domain' do
|
|
|
|
it 'sends ActivityPub payload only once' do
|
|
|
|
subject.call(source_account, remote_account, status_ids: [reported_status.id], forward: forward, forward_to_domains: [remote_account.domain])
|
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.once
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when forward_to_domains does not include the replied-to domain' do
|
|
|
|
it 'sends ActivityPub payload only once' do
|
|
|
|
subject.call(source_account, remote_account, status_ids: [reported_status.id], forward: forward)
|
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to have_been_made.once
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-02-27 21:54:55 -08:00
|
|
|
end
|
2019-03-17 07:34:56 -07:00
|
|
|
|
2023-07-08 11:00:02 -07: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-17 07:34:56 -07:00
|
|
|
end
|
2018-02-27 21:54:55 -08:00
|
|
|
end
|
2018-09-01 15:11:58 -07:00
|
|
|
|
2022-07-04 02:08:30 -07: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-19 20:24:14 -08:00
|
|
|
let(:status) { Fabricate(:status, account: target_account, visibility: :direct) }
|
|
|
|
|
2022-07-04 02:08:30 -07: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-21 13:46:35 -07: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 02:08:30 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when it is not addressed to the reporter' do
|
|
|
|
it 'errors out' do
|
2022-09-21 13:46:35 -07: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 02:08:30 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-01 15:11:58 -07: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 04:15:21 -07:00
|
|
|
let!(:other_report) { Fabricate(:report, target_account: target_account) }
|
2023-02-19 20:24:14 -08:00
|
|
|
|
2018-09-01 15:11:58 -07:00
|
|
|
before do
|
|
|
|
ActionMailer::Base.deliveries.clear
|
2023-03-30 05:44:00 -07:00
|
|
|
source_account.user.settings['notification_emails.report'] = true
|
|
|
|
source_account.user.save
|
2018-09-01 15:11:58 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not send an e-mail' do
|
2022-09-21 13:46:35 -07:00
|
|
|
expect { subject.call }.to_not change(ActionMailer::Base.deliveries, :count).from(0)
|
2018-09-01 15:11:58 -07:00
|
|
|
end
|
|
|
|
end
|
2018-02-27 21:54:55 -08:00
|
|
|
end
|