2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-28 14:54:55 +09:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-03-13 17:39:26 +09:00
|
|
|
RSpec.describe ReportService do
|
2018-02-28 14:54:55 +09:00
|
|
|
subject { described_class.new }
|
|
|
|
|
2022-01-28 08:46:42 +09:00
|
|
|
let(:source_account) { Fabricate(:account) }
|
2023-05-22 20:15:21 +09: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 14:54:55 +09:00
|
|
|
|
2023-05-04 12:49:08 +09:00
|
|
|
context 'with a remote account' do
|
2018-02-28 14:54:55 +09:00
|
|
|
let(:remote_account) { Fabricate(:account, domain: 'example.com', protocol: :activitypub, inbox_url: 'http://example.com/inbox') }
|
2023-07-09 03:00:02 +09:00
|
|
|
let(:forward) { false }
|
2018-02-28 14:54:55 +09:00
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
|
|
|
|
end
|
|
|
|
|
2024-07-16 22:23:08 +09:00
|
|
|
it 'does not have an application' do
|
|
|
|
report = subject.call(source_account, remote_account)
|
|
|
|
expect(report.application).to be_nil
|
|
|
|
end
|
|
|
|
|
2024-07-09 01:01:08 +09:00
|
|
|
context 'when forward is true', :inline_jobs do
|
2023-07-09 03:00:02 +09:00
|
|
|
let(:forward) { true }
|
|
|
|
|
2024-10-04 23:11:15 +09:00
|
|
|
it 'has a URI and sends ActivityPub payload' do
|
2023-07-09 03:00:02 +09:00
|
|
|
report = subject.call(source_account, remote_account, forward: forward)
|
2024-10-04 23:11:15 +09:00
|
|
|
|
|
|
|
expect(report.uri)
|
|
|
|
.to_not be_nil
|
|
|
|
expect(a_request(:post, 'http://example.com/inbox'))
|
|
|
|
.to have_been_made
|
2023-07-09 03:00:02 +09:00
|
|
|
end
|
2018-02-28 14:54:55 +09:00
|
|
|
|
2023-10-10 23:00:50 +09:00
|
|
|
context 'when reporting a reply on a different remote server' do
|
2023-07-09 03:00:02 +09: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-11 01:26:56 +09: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 03:00:02 +09:00
|
|
|
end
|
|
|
|
end
|
2023-10-10 23:00:50 +09: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-28 14:54:55 +09:00
|
|
|
end
|
2019-03-17 23:34:56 +09:00
|
|
|
|
2023-07-09 03:00:02 +09: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 23:34:56 +09:00
|
|
|
end
|
2018-02-28 14:54:55 +09:00
|
|
|
end
|
2018-09-02 07:11:58 +09:00
|
|
|
|
2024-07-16 22:23:08 +09:00
|
|
|
context 'when passed an application' do
|
|
|
|
let(:application) { Fabricate(:application) }
|
|
|
|
|
|
|
|
it 'has an application' do
|
|
|
|
report = subject.call(source_account, target_account, application: application)
|
|
|
|
expect(report.application).to eq application
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-04 18:08:30 +09: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 13:24:14 +09:00
|
|
|
let(:status) { Fabricate(:status, account: target_account, visibility: :direct) }
|
|
|
|
|
2022-07-04 18:08:30 +09:00
|
|
|
context 'when it is addressed to the reporter' do
|
|
|
|
before do
|
|
|
|
status.mentions.create(account: source_account)
|
|
|
|
end
|
|
|
|
|
2024-10-04 23:11:15 +09:00
|
|
|
it 'creates a report and attaches the DM to the report' do
|
|
|
|
expect { subject.call }
|
|
|
|
.to change { target_account.targeted_reports.count }.from(0).to(1)
|
2022-09-22 05:46:35 +09:00
|
|
|
|
2024-10-04 23:11:15 +09:00
|
|
|
expect(target_account.targeted_reports.pluck(:status_ids))
|
|
|
|
.to eq [[status.id]]
|
2022-07-04 18:08:30 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when it is not addressed to the reporter' do
|
|
|
|
it 'errors out' do
|
2022-09-22 05:46:35 +09: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
|
|
|
|
|
2024-10-04 23:11:15 +09:00
|
|
|
it 'creates a report and attaches DM to report' do
|
|
|
|
expect { subject.call }
|
|
|
|
.to change { target_account.targeted_reports.count }.from(0).to(1)
|
2022-09-22 05:46:35 +09:00
|
|
|
|
2024-10-04 23:11:15 +09:00
|
|
|
expect(target_account.targeted_reports.pluck(:status_ids))
|
|
|
|
.to eq [[status.id]]
|
2022-09-22 05:46:35 +09:00
|
|
|
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 18:08:30 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-02 07:11:58 +09:00
|
|
|
context 'when other reports already exist for the same target' do
|
|
|
|
subject do
|
|
|
|
-> { described_class.new.call(source_account, target_account) }
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
2023-12-21 23:23:53 +09:00
|
|
|
Fabricate(:report, target_account: target_account)
|
2023-03-30 21:44:00 +09:00
|
|
|
source_account.user.settings['notification_emails.report'] = true
|
|
|
|
source_account.user.save
|
2018-09-02 07:11:58 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not send an e-mail' do
|
2024-02-20 00:57:47 +09:00
|
|
|
emails = capture_emails { subject.call }
|
|
|
|
|
|
|
|
expect(emails).to be_empty
|
2018-09-02 07:11:58 +09:00
|
|
|
end
|
|
|
|
end
|
2018-02-28 14:54:55 +09:00
|
|
|
end
|