2016-02-24 18:17:01 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-05-02 12:58:48 -04:00
|
|
|
RSpec.describe ProcessMentionsService, type: :service do
|
2019-05-09 16:05:43 -04:00
|
|
|
let(:account) { Fabricate(:account, username: 'alice') }
|
|
|
|
let(:visibility) { :public }
|
|
|
|
let(:status) { Fabricate(:status, account: account, text: "Hello @#{remote_user.acct}", visibility: visibility) }
|
2016-03-05 06:50:59 -05:00
|
|
|
|
2019-12-30 13:20:43 -05:00
|
|
|
subject { ProcessMentionsService.new }
|
|
|
|
|
2019-05-09 16:05:43 -04:00
|
|
|
context 'OStatus with public toot' do
|
2017-08-12 18:44:41 -04:00
|
|
|
let(:remote_user) { Fabricate(:account, username: 'remote_user', protocol: :ostatus, domain: 'example.com', salmon_url: 'http://salmon.example.com') }
|
2016-03-05 06:50:59 -05:00
|
|
|
|
2017-08-12 18:44:41 -04:00
|
|
|
before do
|
|
|
|
stub_request(:post, remote_user.salmon_url)
|
|
|
|
subject.call(status)
|
|
|
|
end
|
2016-03-05 06:50:59 -05:00
|
|
|
|
2019-07-07 10:16:51 -04:00
|
|
|
it 'does not create a mention' do
|
|
|
|
expect(remote_user.mentions.where(status: status).count).to eq 0
|
2017-08-12 18:44:41 -04:00
|
|
|
end
|
2016-03-05 06:50:59 -05:00
|
|
|
end
|
|
|
|
|
2019-05-09 16:05:43 -04:00
|
|
|
context 'OStatus with private toot' do
|
|
|
|
let(:visibility) { :private }
|
|
|
|
let(:remote_user) { Fabricate(:account, username: 'remote_user', protocol: :ostatus, domain: 'example.com', salmon_url: 'http://salmon.example.com') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:post, remote_user.salmon_url)
|
|
|
|
subject.call(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a mention' do
|
|
|
|
expect(remote_user.mentions.where(status: status).count).to eq 0
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not post to remote user\'s Salmon end point' do
|
|
|
|
expect(a_request(:post, remote_user.salmon_url)).to_not have_been_made
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-12 18:44:41 -04:00
|
|
|
context 'ActivityPub' do
|
2019-12-30 13:20:43 -05:00
|
|
|
context do
|
|
|
|
let(:remote_user) { Fabricate(:account, username: 'remote_user', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox') }
|
2017-08-12 18:44:41 -04:00
|
|
|
|
2019-12-30 13:20:43 -05:00
|
|
|
before do
|
|
|
|
stub_request(:post, remote_user.inbox_url)
|
|
|
|
subject.call(status)
|
|
|
|
end
|
2017-08-12 18:44:41 -04:00
|
|
|
|
2019-12-30 13:20:43 -05:00
|
|
|
it 'creates a mention' do
|
|
|
|
expect(remote_user.mentions.where(status: status).count).to eq 1
|
|
|
|
end
|
2017-08-12 18:44:41 -04:00
|
|
|
|
2019-12-30 13:20:43 -05:00
|
|
|
it 'sends activity to the inbox' do
|
|
|
|
expect(a_request(:post, remote_user.inbox_url)).to have_been_made.once
|
|
|
|
end
|
2017-08-12 18:44:41 -04:00
|
|
|
end
|
|
|
|
|
2019-12-30 13:20:43 -05:00
|
|
|
context 'with an IDN domain' do
|
|
|
|
let(:remote_user) { Fabricate(:account, username: 'sneak', protocol: :activitypub, domain: 'xn--hresiar-mxa.ch', inbox_url: 'http://example.com/inbox') }
|
|
|
|
let(:status) { Fabricate(:status, account: account, text: "Hello @sneak@hæresiar.ch") }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:post, remote_user.inbox_url)
|
|
|
|
subject.call(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a mention' do
|
|
|
|
expect(remote_user.mentions.where(status: status).count).to eq 1
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends activity to the inbox' do
|
|
|
|
expect(a_request(:post, remote_user.inbox_url)).to have_been_made.once
|
|
|
|
end
|
2017-08-12 18:44:41 -04:00
|
|
|
end
|
2016-03-05 06:50:59 -05:00
|
|
|
end
|
2017-11-28 09:00:22 -05:00
|
|
|
|
|
|
|
context 'Temporarily-unreachable ActivityPub user' do
|
|
|
|
let(:remote_user) { Fabricate(:account, username: 'remote_user', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox', last_webfingered_at: nil) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:get, "https://example.com/.well-known/host-meta").to_return(status: 404)
|
|
|
|
stub_request(:get, "https://example.com/.well-known/webfinger?resource=acct:remote_user@example.com").to_return(status: 500)
|
|
|
|
stub_request(:post, remote_user.inbox_url)
|
|
|
|
subject.call(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a mention' do
|
|
|
|
expect(remote_user.mentions.where(status: status).count).to eq 1
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends activity to the inbox' do
|
|
|
|
expect(a_request(:post, remote_user.inbox_url)).to have_been_made.once
|
|
|
|
end
|
|
|
|
end
|
2016-02-24 18:17:01 -05:00
|
|
|
end
|