2019-02-28 15:22:21 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe ActivityPub::NoteSerializer do
|
2023-02-20 05:24:14 +01:00
|
|
|
subject { JSON.parse(@serialization.to_json) }
|
|
|
|
|
2019-02-28 15:22:21 +01:00
|
|
|
let!(:account) { Fabricate(:account) }
|
2023-06-14 16:44:37 +02:00
|
|
|
let!(:other) { Fabricate(:account) }
|
|
|
|
let!(:parent) { Fabricate(:status, account: account, visibility: :public) }
|
|
|
|
let!(:reply_by_account_first) { Fabricate(:status, account: account, thread: parent, visibility: :public) }
|
|
|
|
let!(:reply_by_account_next) { Fabricate(:status, account: account, thread: parent, visibility: :public) }
|
|
|
|
let!(:reply_by_other_first) { Fabricate(:status, account: other, thread: parent, visibility: :public) }
|
|
|
|
let!(:reply_by_account_third) { Fabricate(:status, account: account, thread: parent, visibility: :public) }
|
|
|
|
let!(:reply_by_account_visibility_direct) { Fabricate(:status, account: account, thread: parent, visibility: :direct) }
|
2019-02-28 15:22:21 +01:00
|
|
|
|
|
|
|
before(:each) do
|
2023-06-06 13:58:33 +02:00
|
|
|
@serialization = ActiveModelSerializers::SerializableResource.new(parent, serializer: described_class, adapter: ActivityPub::Adapter)
|
2019-02-28 15:22:21 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a Note type' do
|
|
|
|
expect(subject['type']).to eql('Note')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a replies collection' do
|
|
|
|
expect(subject['replies']['type']).to eql('Collection')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a replies collection with a first Page' do
|
|
|
|
expect(subject['replies']['first']['type']).to eql('CollectionPage')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes public self-replies in its replies collection' do
|
2023-06-14 16:44:37 +02:00
|
|
|
expect(subject['replies']['first']['items']).to include(reply_by_account_first.uri, reply_by_account_next.uri, reply_by_account_third.uri)
|
2019-02-28 15:22:21 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not include replies from others in its replies collection' do
|
2023-06-14 16:44:37 +02:00
|
|
|
expect(subject['replies']['first']['items']).to_not include(reply_by_other_first.uri)
|
2019-02-28 15:22:21 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not include replies with direct visibility in its replies collection' do
|
2023-06-14 16:44:37 +02:00
|
|
|
expect(subject['replies']['first']['items']).to_not include(reply_by_account_visibility_direct.uri)
|
2019-02-28 15:22:21 +01:00
|
|
|
end
|
|
|
|
end
|