1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 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 "max thread distance restriction" do
30 @ap_id "http://mastodon.example.org/@admin/99541947525187367"
31 setup do: clear_config([:instance, :federation_incoming_replies_max_depth])
33 test "it returns thread depth exceeded error if thread depth is exceeded" do
34 Pleroma.Config.put([:instance, :federation_incoming_replies_max_depth], 0)
36 assert {:error, "Max thread distance exceeded."} =
37 Fetcher.fetch_object_from_id(@ap_id, depth: 1)
40 test "it fetches object if max thread depth is restricted to 0 and depth is not specified" do
41 Pleroma.Config.put([:instance, :federation_incoming_replies_max_depth], 0)
43 assert {:ok, _} = Fetcher.fetch_object_from_id(@ap_id)
46 test "it fetches object if requested depth does not exceed max thread depth" do
47 Pleroma.Config.put([:instance, :federation_incoming_replies_max_depth], 10)
49 assert {:ok, _} = Fetcher.fetch_object_from_id(@ap_id, depth: 10)
53 describe "actor origin containment" do
54 test "it rejects objects with a bogus origin" do
55 {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity.json")
58 test "it rejects objects when attributedTo is wrong (variant 1)" do
59 {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity2.json")
62 test "it rejects objects when attributedTo is wrong (variant 2)" do
63 {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity3.json")
67 describe "fetching an object" do
68 test "it fetches an object" do
70 Fetcher.fetch_object_from_id("http://mastodon.example.org/@admin/99541947525187367")
72 assert activity = Activity.get_create_by_object_ap_id(object.data["id"])
73 assert activity.data["id"]
76 Fetcher.fetch_object_from_id("http://mastodon.example.org/@admin/99541947525187367")
78 assert [attachment] = object.data["attachment"]
79 assert is_list(attachment["url"])
81 assert object == object_again
85 describe "implementation quirks" do
86 test "it can fetch plume articles" do
88 Fetcher.fetch_object_from_id(
89 "https://baptiste.gelez.xyz/~/PlumeDevelopment/this-month-in-plume-june-2018/"
95 test "it can fetch peertube videos" do
97 Fetcher.fetch_object_from_id(
98 "https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3"
104 test "it can fetch Mobilizon events" do
106 Fetcher.fetch_object_from_id(
107 "https://mobilizon.org/events/252d5816-00a3-4a89-a66f-15bf65c33e39"
113 test "it can fetch wedistribute articles" do
115 Fetcher.fetch_object_from_id("https://wedistribute.org/wp-json/pterotype/v1/object/85810")
120 test "all objects with fake directions are rejected by the object fetcher" do
122 Fetcher.fetch_and_contain_remote_object_from_id(
123 "https://info.pleroma.site/activity4.json"
127 test "handle HTTP 410 Gone response" do
128 assert {:error, "Object has been deleted"} ==
129 Fetcher.fetch_and_contain_remote_object_from_id(
130 "https://mastodon.example.org/users/userisgone"
134 test "handle HTTP 404 response" do
135 assert {:error, "Object has been deleted"} ==
136 Fetcher.fetch_and_contain_remote_object_from_id(
137 "https://mastodon.example.org/users/userisgone404"
142 describe "pruning" do
143 test "it can refetch pruned objects" do
144 object_id = "http://mastodon.example.org/@admin/99541947525187367"
146 {:ok, object} = Fetcher.fetch_object_from_id(object_id)
150 {:ok, _object} = Object.prune(object)
152 refute Object.get_by_ap_id(object_id)
154 {:ok, %Object{} = object_two} = Fetcher.fetch_object_from_id(object_id)
156 assert object.data["id"] == object_two.data["id"]
157 assert object.id != object_two.id
161 describe "signed fetches" do
162 setup do: clear_config([:activitypub, :sign_object_fetches])
164 test_with_mock "it signs fetches when configured to do so",
168 Pleroma.Config.put([:activitypub, :sign_object_fetches], true)
170 Fetcher.fetch_object_from_id("http://mastodon.example.org/@admin/99541947525187367")
172 assert called(Pleroma.Signature.sign(:_, :_))
175 test_with_mock "it doesn't sign fetches when not configured to do so",
179 Pleroma.Config.put([:activitypub, :sign_object_fetches], false)
181 Fetcher.fetch_object_from_id("http://mastodon.example.org/@admin/99541947525187367")
183 refute called(Pleroma.Signature.sign(:_, :_))