1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Object.FetcherTest do
10 alias Pleroma.Object.Fetcher
16 %{method: :get, url: "https://mastodon.example.org/users/userisgone"} ->
17 %Tesla.Env{status: 410}
19 %{method: :get, url: "https://mastodon.example.org/users/userisgone404"} ->
20 %Tesla.Env{status: 404}
23 apply(HttpRequestMock, :request, [env])
29 describe "actor origin containment" do
30 test_with_mock "it rejects objects with a bogus origin",
34 {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity.json")
36 refute called(Pleroma.Web.OStatus.fetch_activity_from_url(:_))
39 test_with_mock "it rejects objects when attributedTo is wrong (variant 1)",
43 {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity2.json")
45 refute called(Pleroma.Web.OStatus.fetch_activity_from_url(:_))
48 test_with_mock "it rejects objects when attributedTo is wrong (variant 2)",
52 {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity3.json")
54 refute called(Pleroma.Web.OStatus.fetch_activity_from_url(:_))
58 describe "fetching an object" do
59 test "it fetches an object" do
61 Fetcher.fetch_object_from_id("http://mastodon.example.org/@admin/99541947525187367")
63 assert activity = Activity.get_create_by_object_ap_id(object.data["id"])
64 assert activity.data["id"]
67 Fetcher.fetch_object_from_id("http://mastodon.example.org/@admin/99541947525187367")
69 assert [attachment] = object.data["attachment"]
70 assert is_list(attachment["url"])
72 assert object == object_again
76 describe "implementation quirks" do
77 test "it can fetch plume articles" do
79 Fetcher.fetch_object_from_id(
80 "https://baptiste.gelez.xyz/~/PlumeDevelopment/this-month-in-plume-june-2018/"
86 test "it can fetch peertube videos" do
88 Fetcher.fetch_object_from_id(
89 "https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3"
95 test "it can fetch wedistribute articles" do
97 Fetcher.fetch_object_from_id("https://wedistribute.org/wp-json/pterotype/v1/object/85810")
102 test "all objects with fake directions are rejected by the object fetcher" do
104 Fetcher.fetch_and_contain_remote_object_from_id(
105 "https://info.pleroma.site/activity4.json"
109 test "handle HTTP 410 Gone response" do
110 assert {:error, "Object has been deleted"} ==
111 Fetcher.fetch_and_contain_remote_object_from_id(
112 "https://mastodon.example.org/users/userisgone"
116 test "handle HTTP 404 response" do
117 assert {:error, "Object has been deleted"} ==
118 Fetcher.fetch_and_contain_remote_object_from_id(
119 "https://mastodon.example.org/users/userisgone404"
124 describe "pruning" do
125 test "it can refetch pruned objects" do
126 object_id = "http://mastodon.example.org/@admin/99541947525187367"
128 {:ok, object} = Fetcher.fetch_object_from_id(object_id)
132 {:ok, _object} = Object.prune(object)
134 refute Object.get_by_ap_id(object_id)
136 {:ok, %Object{} = object_two} = Fetcher.fetch_object_from_id(object_id)
138 assert object.data["id"] == object_two.data["id"]
139 assert object.id != object_two.id
143 describe "signed fetches" do
144 clear_config([:activitypub, :sign_object_fetches])
146 test_with_mock "it signs fetches when configured to do so",
150 Pleroma.Config.put([:activitypub, :sign_object_fetches], true)
152 Fetcher.fetch_object_from_id("http://mastodon.example.org/@admin/99541947525187367")
154 assert called(Pleroma.Signature.sign(:_, :_))
157 test_with_mock "it doesn't sign fetches when not configured to do so",
161 Pleroma.Config.put([:activitypub, :sign_object_fetches], false)
163 Fetcher.fetch_object_from_id("http://mastodon.example.org/@admin/99541947525187367")
165 refute called(Pleroma.Signature.sign(:_, :_))