2018-02-28 06:54:55 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-05-02 18:58:48 +02:00
|
|
|
RSpec.describe ReportService, type: :service do
|
2018-02-28 06:54:55 +01:00
|
|
|
subject { described_class.new }
|
|
|
|
|
2018-09-02 00:11:58 +02:00
|
|
|
let(:source_account) { Fabricate(:user).account }
|
2018-02-28 06:54:55 +01:00
|
|
|
|
|
|
|
context 'for a remote account' do
|
|
|
|
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
|
|
|
|
end
|
2018-09-02 00:11:58 +02:00
|
|
|
|
|
|
|
context 'when other reports already exist for the same target' do
|
|
|
|
let!(:target_account) { Fabricate(:account) }
|
|
|
|
let!(:other_report) { Fabricate(:report, target_account: target_account) }
|
|
|
|
|
|
|
|
subject do
|
|
|
|
-> { described_class.new.call(source_account, target_account) }
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
ActionMailer::Base.deliveries.clear
|
|
|
|
source_account.user.settings.notification_emails['report'] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not send an e-mail' do
|
|
|
|
is_expected.to_not change(ActionMailer::Base.deliveries, :count).from(0)
|
|
|
|
end
|
|
|
|
end
|
2018-02-28 06:54:55 +01:00
|
|
|
end
|