2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-28 05:54:55 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-05-02 16:58:48 +00:00
|
|
|
RSpec.describe ReportService, type: :service do
|
2018-02-28 05:54:55 +00:00
|
|
|
subject { described_class.new }
|
|
|
|
|
2022-01-27 23:46:42 +00:00
|
|
|
let(:source_account) { Fabricate(:account) }
|
2023-05-22 11:15:21 +00: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 05:54:55 +00:00
|
|
|
|
2023-05-04 03:49:08 +00:00
|
|
|
context 'with a remote account' do
|
2018-02-28 05:54:55 +00:00
|
|
|
let(:remote_account) { Fabricate(:account, domain: 'example.com', protocol: :activitypub, inbox_url: 'http://example.com/inbox') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:post, 'http://example.com/inbox').to_return(status: 200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends ActivityPub payload when forward is true' do
|
|
|
|
subject.call(source_account, remote_account, forward: true)
|
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to have_been_made
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not send anything when forward is false' do
|
|
|
|
subject.call(source_account, remote_account, forward: false)
|
|
|
|
expect(a_request(:post, 'http://example.com/inbox')).to_not have_been_made
|
|
|
|
end
|
2019-03-17 14:34:56 +00:00
|
|
|
|
|
|
|
it 'has an uri' do
|
|
|
|
report = subject.call(source_account, remote_account, forward: true)
|
|
|
|
expect(report.uri).to_not be_nil
|
|
|
|
end
|
2018-02-28 05:54:55 +00:00
|
|
|
end
|
2018-09-01 22:11:58 +00:00
|
|
|
|
2022-07-04 09:08:30 +00: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 04:24:14 +00:00
|
|
|
let(:status) { Fabricate(:status, account: target_account, visibility: :direct) }
|
|
|
|
|
2022-07-04 09:08:30 +00: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 20:46:35 +00: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 09:08:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when it is not addressed to the reporter' do
|
|
|
|
it 'errors out' do
|
2022-09-21 20:46:35 +00: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 09:08:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-01 22:11:58 +00: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 11:15:21 +00:00
|
|
|
let!(:other_report) { Fabricate(:report, target_account: target_account) }
|
2023-02-20 04:24:14 +00:00
|
|
|
|
2018-09-01 22:11:58 +00:00
|
|
|
before do
|
|
|
|
ActionMailer::Base.deliveries.clear
|
2023-03-30 12:44:00 +00:00
|
|
|
source_account.user.settings['notification_emails.report'] = true
|
|
|
|
source_account.user.save
|
2018-09-01 22:11:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not send an e-mail' do
|
2022-09-21 20:46:35 +00:00
|
|
|
expect { subject.call }.to_not change(ActionMailer::Base.deliveries, :count).from(0)
|
2018-09-01 22:11:58 +00:00
|
|
|
end
|
|
|
|
end
|
2018-02-28 05:54:55 +00:00
|
|
|
end
|