summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2019-06-08 10:22:15 +0000
committerlain <lain@soykaf.club>2019-06-08 10:22:15 +0000
commit1e0fa899b65622d9668599ed0f4ff0fdbe2d44e8 (patch)
tree93ab9005c8e47cbe6046ae53f4248cf5de8fc763 /test
parentd7f4f65560cab7c07969c910ffdf742b159cbb22 (diff)
parentdffc9f060adf43a4faaa5790dc8a01b3d7cb5e34 (diff)
downloadpleroma-1e0fa899b65622d9668599ed0f4ff0fdbe2d44e8.tar.gz
pleroma-1e0fa899b65622d9668599ed0f4ff0fdbe2d44e8.zip
Merge branch 'fix/transmogrifier-inReplyTo' into 'develop'
Transmogrifier: Do not crash if inReplyTo does not exist and can't be fetched See merge request pleroma/pleroma!1259
Diffstat (limited to 'test')
-rw-r--r--test/web/activity_pub/transmogrifier_test.exs16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/web/activity_pub/transmogrifier_test.exs b/test/web/activity_pub/transmogrifier_test.exs
index 28971ae45..cc1781403 100644
--- a/test/web/activity_pub/transmogrifier_test.exs
+++ b/test/web/activity_pub/transmogrifier_test.exs
@@ -60,6 +60,22 @@ defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do
assert returned_object.data["inReplyToAtomUri"] == "https://shitposter.club/notice/2827873"
end
+ test "it does not crash if the object in inReplyTo can't be fetched" do
+ data =
+ File.read!("test/fixtures/mastodon-post-activity.json")
+ |> Poison.decode!()
+
+ object =
+ data["object"]
+ |> Map.put("inReplyTo", "https://404.site/whatever")
+
+ data =
+ data
+ |> Map.put("object", object)
+
+ {:ok, _returned_activity} = Transmogrifier.handle_incoming(data)
+ end
+
test "it works for incoming notices" do
data = File.read!("test/fixtures/mastodon-post-activity.json") |> Poison.decode!()