Add searchability account/status.compute_searchability test

This commit is contained in:
KMY 2023-08-08 18:28:58 +09:00
parent 8915cb4c2b
commit 114bd48c4b
5 changed files with 180 additions and 5 deletions

View file

@ -514,7 +514,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
note = @account&.note note = @account&.note
return nil if note.blank? return nil if note.blank?
searchability_bio = note.scan(SCAN_SEARCHABILITY_RE).first || note.scan(SCAN_SEARCHABILITY_FEDIBIRD_RE).first searchability_bio = note.scan(SCAN_SEARCHABILITY_FEDIBIRD_RE).first || note.scan(SCAN_SEARCHABILITY_RE).first
return nil unless searchability_bio return nil unless searchability_bio
searchability = searchability_bio[0] searchability = searchability_bio[0]

View file

@ -269,9 +269,11 @@ class ActivityPub::ProcessAccountService < BaseService
if audience_searchable_by.any? { |uri| ActivityPub::TagManager.instance.public_collection?(uri) } if audience_searchable_by.any? { |uri| ActivityPub::TagManager.instance.public_collection?(uri) }
:public :public
elsif audience_searchable_by.include?(@account.followers_url) elsif audience_searchable_by.include?(@account.followers_url)
:private # Followers only in kmyblue (generics: private) :private
elsif audience_searchable_by.include?('as:Limited')
:limited
else else
:direct # Reaction only in kmyblue (generics: direct) :direct
end end
end end
@ -279,7 +281,7 @@ class ActivityPub::ProcessAccountService < BaseService
note = @json['summary'] || '' note = @json['summary'] || ''
return nil if note.blank? return nil if note.blank?
searchability_bio = note.scan(SCAN_SEARCHABILITY_RE).first || note.scan(SCAN_SEARCHABILITY_FEDIBIRD_RE).first searchability_bio = note.scan(SCAN_SEARCHABILITY_FEDIBIRD_RE).first || note.scan(SCAN_SEARCHABILITY_RE).first
return nil unless searchability_bio return nil unless searchability_bio
searchability = searchability_bio[0] searchability = searchability_bio[0]

View file

@ -503,7 +503,7 @@ RSpec.describe ActivityPub::Activity::Create do
end end
context 'with multible searchabilities' do context 'with multible searchabilities' do
let(:bio) { '#searchable_by_nobody' } let(:sender_bio) { '#searchable_by_nobody' }
let(:searchable_by) { 'https://www.w3.org/ns/activitystreams#Public' } let(:searchable_by) { 'https://www.w3.org/ns/activitystreams#Public' }
let(:object_json) do let(:object_json) do
{ {

View file

@ -114,6 +114,72 @@ RSpec.describe Status do
end end
end end
describe '#searchability' do
subject { Fabricate(:status, account: account, searchability: status_searchability) }
let(:account_searchability) { :public }
let(:status_searchability) { :public }
let(:account_domain) { 'example.com' }
let(:account) { Fabricate(:account, domain: account_domain, searchability: account_searchability) }
context 'when public-public' do
it 'returns public' do
expect(subject.compute_searchability).to eq 'public'
end
end
context 'when public-private' do
let(:status_searchability) { :private }
it 'returns private' do
expect(subject.compute_searchability).to eq 'private'
end
end
context 'when public-direct' do
let(:status_searchability) { :direct }
it 'returns direct' do
expect(subject.compute_searchability).to eq 'direct'
end
end
context 'when private-public' do
let(:account_searchability) { :private }
it 'returns private' do
expect(subject.compute_searchability).to eq 'private'
end
end
context 'when direct-public' do
let(:account_searchability) { :direct }
it 'returns direct' do
expect(subject.compute_searchability).to eq 'direct'
end
end
context 'when private-limited' do
let(:account_searchability) { :private }
let(:status_searchability) { :limited }
it 'returns limited' do
expect(subject.compute_searchability).to eq 'limited'
end
end
context 'when private-public of local account' do
let(:account_searchability) { :private }
let(:account_domain) { nil }
let(:status_searchability) { :public }
it 'returns public' do
expect(subject.compute_searchability).to eq 'public'
end
end
end
describe '#content' do describe '#content' do
it 'returns the text of the status if it is not a reblog' do it 'returns the text of the status if it is not a reblog' do
expect(subject.content).to eql subject.text expect(subject.content).to eql subject.text

View file

@ -5,6 +5,113 @@ require 'rails_helper'
RSpec.describe ActivityPub::ProcessAccountService, type: :service do RSpec.describe ActivityPub::ProcessAccountService, type: :service do
subject { described_class.new } subject { described_class.new }
context 'with searchability' do
subject { described_class.new.call('alice', 'example.com', payload) }
let(:software) { 'mastodon' }
let(:searchable_by) { 'https://www.w3.org/ns/activitystreams#Public' }
let(:sender_bio) { '' }
let(:payload) do
{
id: 'https://foo.test',
type: 'Actor',
inbox: 'https://foo.test/inbox',
followers: 'https://example.com/followers',
searchableBy: searchable_by,
summary: sender_bio,
}.with_indifferent_access
end
before do
Fabricate(:instance_info, domain: 'example.com', software: software)
stub_request(:get, 'https://example.com/.well-known/nodeinfo').to_return(body: '{}')
stub_request(:get, 'https://example.com/followers').to_return(body: '[]')
end
context 'when public' do
it 'searchability is public' do
expect(subject.searchability).to eq 'public'
end
end
context 'when private' do
let(:searchable_by) { 'https://example.com/followers' }
it 'searchability is private' do
expect(subject.searchability).to eq 'private'
end
end
context 'when direct' do
let(:searchable_by) { '' }
it 'searchability is direct' do
expect(subject.searchability).to eq 'direct'
end
end
context 'when limited' do
let(:searchable_by) { 'as:Limited' }
it 'searchability is limited' do
expect(subject.searchability).to eq 'limited'
end
end
context 'when default value' do
let(:searchable_by) { nil }
it 'searchability is direct' do
expect(subject.searchability).to eq 'direct'
end
end
context 'when misskey user' do
let(:software) { 'misskey' }
let(:searchable_by) { nil }
it 'searchability is public' do
expect(subject.searchability).to eq 'public'
end
end
context 'with bio' do
let(:searchable_by) { nil }
context 'with public' do
let(:sender_bio) { '#searchable_by_all_users' }
it 'searchability is public' do
expect(subject.searchability).to eq 'public'
end
end
context 'with private' do
let(:sender_bio) { '#searchable_by_followers_only' }
it 'searchability is private' do
expect(subject.searchability).to eq 'private'
end
end
context 'with direct' do
let(:sender_bio) { '#searchable_by_reacted_users_only' }
it 'searchability is direct' do
expect(subject.searchability).to eq 'direct'
end
end
context 'with limited' do
let(:sender_bio) { '#searchable_by_nobody' }
it 'searchability is limited' do
expect(subject.searchability).to eq 'limited'
end
end
end
end
context 'with property values' do context 'with property values' do
let(:payload) do let(:payload) do
{ {