* Add compacted component * 引用表示の間にコンテナをはさみ、不要なコードを削除 * 引用APIを作成、ついでにブロック状況を引用APIに反映 * テスト修正など * 引用をキャッシュに登録 * `quote_id`が`quote_of_id`になったのをSerializerに反映 * Fix test * 引用をフィルターの対象に含める設定+エラー修正 * ストリーミングの存在しないプロパティ削除によるエラーを修正 * Fix lint * 他のサーバーから来た引用付き投稿を処理 * Fix test * フィルター設定時エラーの調整 * 画像つき投稿のスタイルを調整 * 画像つき投稿の最大高さを調整 * 引用禁止・非表示の設定を追加 * ブロック対応 * マイグレーションコード調整 * 引用設定の翻訳を作成 * Lint修正 * 参照1つの場合は引用に変換する設定を削除 * 不要になったテストを削除 * ブロック設定追加、バグ修正 * 他サーバーへ引用送信・受け入れ
65 lines
2.5 KiB
Ruby
65 lines
2.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe ActivityPub::NoteSerializer do
|
|
subject { JSON.parse(@serialization.to_json) }
|
|
|
|
let!(:account) { Fabricate(:account) }
|
|
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) }
|
|
let!(:referred) { nil }
|
|
let!(:referred2) { nil }
|
|
|
|
before(:each) do
|
|
parent.references << referred if referred.present?
|
|
parent.references << referred2 if referred2.present?
|
|
@serialization = ActiveModelSerializers::SerializableResource.new(parent, serializer: described_class, adapter: ActivityPub::Adapter)
|
|
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
|
|
expect(subject['replies']['first']['items']).to include(reply_by_account_first.uri, reply_by_account_next.uri, reply_by_account_third.uri)
|
|
end
|
|
|
|
it 'does not include replies from others in its replies collection' do
|
|
expect(subject['replies']['first']['items']).to_not include(reply_by_other_first.uri)
|
|
end
|
|
|
|
it 'does not include replies with direct visibility in its replies collection' do
|
|
expect(subject['replies']['first']['items']).to_not include(reply_by_account_visibility_direct.uri)
|
|
end
|
|
|
|
context 'when has quote but no_convert setting' do
|
|
let(:referred) { Fabricate(:status) }
|
|
|
|
it 'has a references collection' do
|
|
expect(subject['references']['type']).to eql('Collection')
|
|
end
|
|
|
|
it 'has a references collection with a first Page' do
|
|
expect(subject['references']['first']['type']).to eql('CollectionPage')
|
|
end
|
|
|
|
it 'has as reference' do
|
|
expect(subject['quoteUri']).to be_nil
|
|
expect(subject['references']['first']['items']).to include referred.uri
|
|
end
|
|
end
|
|
end
|