From: Eugen Rochko Date: Tue, 5 Mar 2019 02:46:36 +0000 (+0100) Subject: Add test ensuring that unknown object types are rejected (#10166) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=0a39c81dd87242feb84da68b8907c3e45620eadf;p=mastodon.git Add test ensuring that unknown object types are rejected (#10166) --- diff --git a/spec/lib/activitypub/activity/create_spec.rb b/spec/lib/activitypub/activity/create_spec.rb index 4780c29c8..56c7bfc61 100644 --- a/spec/lib/activitypub/activity/create_spec.rb +++ b/spec/lib/activitypub/activity/create_spec.rb @@ -28,6 +28,20 @@ RSpec.describe ActivityPub::Activity::Create do subject.perform end + context 'unknown object type' do + let(:object_json) do + { + id: [ActivityPub::TagManager.instance.uri_for(sender), '#bar'].join, + type: 'Banana', + content: 'Lorem ipsum', + } + end + + it 'does not create a status' do + expect(sender.statuses.count).to be_zero + end + end + context 'standalone' do let(:object_json) do {