diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2019-11-08 14:51:28 -0600 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-11-09 01:41:34 +0300 |
commit | 6e65da782e6c448c6fa1901303bfe3dc5bdd7e13 (patch) | |
tree | d876720416e16c735c1c15005701afdd15de1bbe /test | |
parent | 4c5055bac9ba1763d17bb1b63aa378999b90ed1c (diff) | |
download | pleroma-6e65da782e6c448c6fa1901303bfe3dc5bdd7e13.tar.gz |
object containment: handle all cases where ID is invalid (missing, nil, non-string)
Diffstat (limited to 'test')
-rw-r--r-- | test/object/containment_test.exs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/object/containment_test.exs b/test/object/containment_test.exs index 61cd1b412..a909f6db2 100644 --- a/test/object/containment_test.exs +++ b/test/object/containment_test.exs @@ -67,6 +67,20 @@ defmodule Pleroma.Object.ContainmentTest do end) =~ "[error] Could not decode user at fetch https://n1u.moe/users/rye, {:error, :error}" end + + test "contain_origin_from_id() gracefully handles cases where no ID is present" do + data = %{ + "type" => "Create", + "object" => %{ + "id" => "http://example.net/~alyssa/activities/1234", + "attributedTo" => "http://example.org/~alyssa" + }, + "actor" => "http://example.com/~bob" + } + + :error = + Containment.contain_origin_from_id("http://example.net/~alyssa/activities/1234", data) + end end describe "containment of children" do |