Fix: LD Signaturesで署名された投稿の検索許可(検索範囲)が改竄できる問題

This commit is contained in:
KMY 2024-09-10 06:51:26 +09:00
parent ec9644b9a6
commit b6278e0d39
6 changed files with 39 additions and 13 deletions

View file

@ -49,7 +49,7 @@ RSpec.describe ActivityPub::ProcessAccountService, type: :service do
end
context 'when direct' do
let(:searchable_by) { '' }
let(:searchable_by) { 'https://foo.test' }
it 'searchability is direct' do
expect(subject.searchability).to eq 'direct'
@ -72,6 +72,14 @@ RSpec.describe ActivityPub::ProcessAccountService, type: :service do
end
end
context 'when empty array' do
let(:searchable_by) { '' }
it 'searchability is direct' do
expect(subject.searchability).to eq 'direct'
end
end
context 'when default value' do
let(:searchable_by) { nil }