Merge branch 'develop' into feature/matstodon-statuses-by-name
[akkoma] / test / object / fetcher_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Object.FetcherTest do
6 use Pleroma.DataCase
7
8 alias Pleroma.Activity
9 alias Pleroma.Object
10 alias Pleroma.Object.Fetcher
11 import Tesla.Mock
12 import Mock
13
14 setup do
15 mock(fn
16 %{method: :get, url: "https://mastodon.example.org/users/userisgone"} ->
17 %Tesla.Env{status: 410}
18
19 %{method: :get, url: "https://mastodon.example.org/users/userisgone404"} ->
20 %Tesla.Env{status: 404}
21
22 env ->
23 apply(HttpRequestMock, :request, [env])
24 end)
25
26 :ok
27 end
28
29 describe "actor origin containment" do
30 test_with_mock "it rejects objects with a bogus origin",
31 Pleroma.Web.OStatus,
32 [:passthrough],
33 [] do
34 {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity.json")
35
36 refute called(Pleroma.Web.OStatus.fetch_activity_from_url(:_))
37 end
38
39 test_with_mock "it rejects objects when attributedTo is wrong (variant 1)",
40 Pleroma.Web.OStatus,
41 [:passthrough],
42 [] do
43 {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity2.json")
44
45 refute called(Pleroma.Web.OStatus.fetch_activity_from_url(:_))
46 end
47
48 test_with_mock "it rejects objects when attributedTo is wrong (variant 2)",
49 Pleroma.Web.OStatus,
50 [:passthrough],
51 [] do
52 {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity3.json")
53
54 refute called(Pleroma.Web.OStatus.fetch_activity_from_url(:_))
55 end
56 end
57
58 describe "fetching an object" do
59 test "it fetches an object" do
60 {:ok, object} =
61 Fetcher.fetch_object_from_id("http://mastodon.example.org/@admin/99541947525187367")
62
63 assert activity = Activity.get_create_by_object_ap_id(object.data["id"])
64 assert activity.data["id"]
65
66 {:ok, object_again} =
67 Fetcher.fetch_object_from_id("http://mastodon.example.org/@admin/99541947525187367")
68
69 assert [attachment] = object.data["attachment"]
70 assert is_list(attachment["url"])
71
72 assert object == object_again
73 end
74
75 test "it works with objects only available via Ostatus" do
76 {:ok, object} = Fetcher.fetch_object_from_id("https://shitposter.club/notice/2827873")
77 assert activity = Activity.get_create_by_object_ap_id(object.data["id"])
78 assert activity.data["id"]
79
80 {:ok, object_again} = Fetcher.fetch_object_from_id("https://shitposter.club/notice/2827873")
81
82 assert object == object_again
83 end
84
85 test "it correctly stitches up conversations between ostatus and ap" do
86 last = "https://mstdn.io/users/mayuutann/statuses/99568293732299394"
87 {:ok, object} = Fetcher.fetch_object_from_id(last)
88
89 object = Object.get_by_ap_id(object.data["inReplyTo"])
90 assert object
91 end
92 end
93
94 describe "implementation quirks" do
95 test "it can fetch plume articles" do
96 {:ok, object} =
97 Fetcher.fetch_object_from_id(
98 "https://baptiste.gelez.xyz/~/PlumeDevelopment/this-month-in-plume-june-2018/"
99 )
100
101 assert object
102 end
103
104 test "it can fetch peertube videos" do
105 {:ok, object} =
106 Fetcher.fetch_object_from_id(
107 "https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3"
108 )
109
110 assert object
111 end
112
113 test "all objects with fake directions are rejected by the object fetcher" do
114 assert {:error, _} =
115 Fetcher.fetch_and_contain_remote_object_from_id(
116 "https://info.pleroma.site/activity4.json"
117 )
118 end
119
120 test "handle HTTP 410 Gone response" do
121 assert {:error, "Object has been deleted"} ==
122 Fetcher.fetch_and_contain_remote_object_from_id(
123 "https://mastodon.example.org/users/userisgone"
124 )
125 end
126
127 test "handle HTTP 404 response" do
128 assert {:error, "Object has been deleted"} ==
129 Fetcher.fetch_and_contain_remote_object_from_id(
130 "https://mastodon.example.org/users/userisgone404"
131 )
132 end
133 end
134
135 describe "pruning" do
136 test "it can refetch pruned objects" do
137 object_id = "http://mastodon.example.org/@admin/99541947525187367"
138
139 {:ok, object} = Fetcher.fetch_object_from_id(object_id)
140
141 assert object
142
143 {:ok, _object} = Object.prune(object)
144
145 refute Object.get_by_ap_id(object_id)
146
147 {:ok, %Object{} = object_two} = Fetcher.fetch_object_from_id(object_id)
148
149 assert object.data["id"] == object_two.data["id"]
150 assert object.id != object_two.id
151 end
152 end
153 end