2017-05-05 17:26:04 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-05-02 18:58:48 +02:00
|
|
|
describe ResolveURLService, type: :service do
|
2017-05-05 17:26:04 +02:00
|
|
|
subject { described_class.new }
|
|
|
|
|
|
|
|
describe '#call' do
|
2019-07-10 18:59:28 +02:00
|
|
|
it 'returns nil when there is no resource url' do
|
|
|
|
url = 'http://example.com/missing-resource'
|
2017-05-05 17:26:04 +02:00
|
|
|
service = double
|
|
|
|
|
2019-07-10 18:59:28 +02:00
|
|
|
allow(FetchResourceService).to receive(:new).and_return service
|
|
|
|
allow(service).to receive(:call).with(url).and_return(nil)
|
2017-05-05 17:26:04 +02:00
|
|
|
|
2019-07-10 18:59:28 +02:00
|
|
|
expect(subject.call(url)).to be_nil
|
2017-05-05 17:26:04 +02:00
|
|
|
end
|
2020-12-17 06:51:49 +01:00
|
|
|
|
|
|
|
context 'searching for a remote private status' do
|
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
let(:poster) { Fabricate(:account, domain: 'example.com') }
|
|
|
|
let(:url) { 'https://example.com/@foo/42' }
|
|
|
|
let(:uri) { 'https://example.com/users/foo/statuses/42' }
|
|
|
|
let!(:status) { Fabricate(:status, url: url, uri: uri, account: poster, visibility: :private) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:get, url).to_return(status: 404) if url.present?
|
|
|
|
stub_request(:get, uri).to_return(status: 404)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the account follows the poster' do
|
|
|
|
before do
|
|
|
|
account.follow!(poster)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the status uses Mastodon-style URLs' do
|
|
|
|
let(:url) { 'https://example.com/@foo/42' }
|
|
|
|
let(:uri) { 'https://example.com/users/foo/statuses/42' }
|
|
|
|
|
|
|
|
it 'returns status by url' do
|
|
|
|
expect(subject.call(url, on_behalf_of: account)).to eq(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns status by uri' do
|
|
|
|
expect(subject.call(uri, on_behalf_of: account)).to eq(status)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the status uses pleroma-style URLs' do
|
|
|
|
let(:url) { nil }
|
|
|
|
let(:uri) { 'https://example.com/objects/0123-456-789-abc-def' }
|
|
|
|
|
|
|
|
it 'returns status by uri' do
|
|
|
|
expect(subject.call(uri, on_behalf_of: account)).to eq(status)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the account does not follow the poster' do
|
|
|
|
context 'when the status uses Mastodon-style URLs' do
|
|
|
|
let(:url) { 'https://example.com/@foo/42' }
|
|
|
|
let(:uri) { 'https://example.com/users/foo/statuses/42' }
|
|
|
|
|
|
|
|
it 'does not return the status by url' do
|
|
|
|
expect(subject.call(url, on_behalf_of: account)).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not return the status by uri' do
|
|
|
|
expect(subject.call(uri, on_behalf_of: account)).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the status uses pleroma-style URLs' do
|
|
|
|
let(:url) { nil }
|
|
|
|
let(:uri) { 'https://example.com/objects/0123-456-789-abc-def' }
|
|
|
|
|
|
|
|
it 'returns status by uri' do
|
|
|
|
expect(subject.call(uri, on_behalf_of: account)).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'searching for a local private status' do
|
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
let(:poster) { Fabricate(:account) }
|
|
|
|
let!(:status) { Fabricate(:status, account: poster, visibility: :private) }
|
|
|
|
let(:url) { ActivityPub::TagManager.instance.url_for(status) }
|
|
|
|
let(:uri) { ActivityPub::TagManager.instance.uri_for(status) }
|
|
|
|
|
|
|
|
context 'when the account follows the poster' do
|
|
|
|
before do
|
|
|
|
account.follow!(poster)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns status by url' do
|
|
|
|
expect(subject.call(url, on_behalf_of: account)).to eq(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns status by uri' do
|
|
|
|
expect(subject.call(uri, on_behalf_of: account)).to eq(status)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the account does not follow the poster' do
|
|
|
|
it 'does not return the status by url' do
|
|
|
|
expect(subject.call(url, on_behalf_of: account)).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not return the status by uri' do
|
|
|
|
expect(subject.call(uri, on_behalf_of: account)).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-05-05 17:26:04 +02:00
|
|
|
end
|
|
|
|
end
|