mastodon/spec/services/process_links_service_spec.rb
Claire 9e0a3aaf08
Some checks are pending
Check i18n / check-i18n (push) Waiting to run
Chromatic / Check for relevant changes (push) Waiting to run
Chromatic / Run Chromatic (push) Blocked by required conditions
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / lint (push) Waiting to run
CSS Linting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / test (3.4) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.4) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.19.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.4, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Resolve links to unknown remote objects when posting (#38711)
2026-06-10 15:55:27 +00:00

46 lines
1.5 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe ProcessLinksService do
subject { described_class.new }
let(:account) { Fabricate(:account, username: 'alice') }
context 'when status mentions known collections' do
let!(:collection) { Fabricate(:collection) }
let(:status) { Fabricate(:status, account: account, text:, visibility: :public) }
context 'when the collection is mentioned by URI' do
let(:text) { "Hello check out this collection! #{ActivityPub::TagManager.instance.uri_for(collection)}" }
it 'creates a tagged object' do
expect { subject.call(status) }
.to change { status.tagged_objects.count }.by(1)
end
end
context 'when the collection is mentioned by URL' do
let(:text) { "Hello check out this collection! #{ActivityPub::TagManager.instance.url_for(collection)}" }
it 'creates a tagged object' do
expect { subject.call(status) }
.to change { status.tagged_objects.count }.by(1)
end
end
end
context 'when status has a generic link to something that is not a collection' do
let(:status) { Fabricate(:status, account: account, text: 'Hello check out my personal web page: https://example.com/test', visibility: :public) }
before do
stub_request(:get, 'https://example.com/test').to_return(status: 404)
end
it 'skips the link and does not create a tagged object' do
expect { expect { subject.call(status) }.to_not raise_error }
.to not_change { status.tagged_objects.count }.from(0)
end
end
end