This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
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 }
|
|
|
|
|
|
|
|
let(:source_account) { Fabricate(:account) }
|
|
|
|
|
|
|
|
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
|
|
|
|
end
|