diff options
author | rinpatch <rinpatch@sdf.org> | 2019-11-13 10:08:07 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-11-13 10:08:07 +0000 |
commit | 1025c526c003460e62ddfff09ba65461feceb1f6 (patch) | |
tree | a10219d324c0046040115b808fde581abc3c166c /test | |
parent | fb090b748ab7ec3740008017f419e210405e2633 (diff) | |
parent | e835cd97f6988522dae8f60a0381f0f93c6abb2d (diff) | |
download | pleroma-1025c526c003460e62ddfff09ba65461feceb1f6.tar.gz pleroma-1025c526c003460e62ddfff09ba65461feceb1f6.zip |
Merge branch 'bugfix/1360-actorless-posts' into 'develop'
Containment: Add a catch-all clause to contain_origin.
Closes #1360
See merge request pleroma/pleroma!1975
Diffstat (limited to 'test')
-rw-r--r-- | test/object/containment_test.exs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/object/containment_test.exs b/test/object/containment_test.exs index 71fe5204c..7636803a6 100644 --- a/test/object/containment_test.exs +++ b/test/object/containment_test.exs @@ -17,6 +17,16 @@ defmodule Pleroma.Object.ContainmentTest do end describe "general origin containment" do + test "works for completely actorless posts" do + assert :error == + Containment.contain_origin("https://glaceon.social/users/monorail", %{ + "deleted" => "2019-10-30T05:48:50.249606Z", + "formerType" => "Note", + "id" => "https://glaceon.social/users/monorail/statuses/103049757364029187", + "type" => "Tombstone" + }) + end + test "contain_origin_from_id() catches obvious spoofing attempts" do data = %{ "id" => "http://example.com/~alyssa/activities/1234.json" |