1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule HttpRequestMock do
8 def activitypub_object_headers, do: [{"content-type", "application/activity+json"}]
19 with {:ok, res} <- apply(__MODULE__, method, [url, query, body, headers]) do
23 with {:error, message} <- error do
24 Logger.warn(to_string(message))
33 def get(url, query \\ [], body \\ [], headers \\ [])
35 def get("https://osada.macgirvin.com/channel/mike", _, _, _) do
39 body: File.read!("test/fixtures/tesla_mock/https___osada.macgirvin.com_channel_mike.json"),
40 headers: activitypub_object_headers()
44 def get("https://shitposter.club/users/moonman", _, _, _) do
48 body: File.read!("test/fixtures/tesla_mock/moonman@shitposter.club.json"),
49 headers: activitypub_object_headers()
53 def get("https://mastodon.social/users/emelie/statuses/101849165031453009", _, _, _) do
57 body: File.read!("test/fixtures/tesla_mock/status.emelie.json"),
58 headers: activitypub_object_headers()
62 def get("https://mastodon.social/users/emelie/statuses/101849165031453404", _, _, _) do
70 def get("https://mastodon.social/users/emelie", _, _, _) do
74 body: File.read!("test/fixtures/tesla_mock/emelie.json"),
75 headers: activitypub_object_headers()
79 def get("https://mastodon.social/users/not_found", _, _, _) do
80 {:ok, %Tesla.Env{status: 404}}
83 def get("https://mastodon.sdf.org/users/rinpatch", _, _, _) do
87 body: File.read!("test/fixtures/tesla_mock/rinpatch.json"),
88 headers: activitypub_object_headers()
92 def get("https://mastodon.sdf.org/users/rinpatch/collections/featured", _, _, _) do
97 File.read!("test/fixtures/users_mock/masto_featured.json")
98 |> String.replace("{{domain}}", "mastodon.sdf.org")
99 |> String.replace("{{nickname}}", "rinpatch"),
100 headers: [{"content-type", "application/activity+json"}]
104 def get("https://patch.cx/objects/tesla_mock/poll_attachment", _, _, _) do
108 body: File.read!("test/fixtures/tesla_mock/poll_attachment.json"),
109 headers: activitypub_object_headers()
114 "https://mastodon.social/.well-known/webfinger?resource=https://mastodon.social/users/emelie",
122 body: File.read!("test/fixtures/tesla_mock/webfinger_emelie.json"),
123 headers: activitypub_object_headers()
128 "https://osada.macgirvin.com/.well-known/webfinger?resource=acct:mike@osada.macgirvin.com",
131 [{"accept", "application/xrd+xml,application/jrd+json"}]
136 body: File.read!("test/fixtures/tesla_mock/mike@osada.macgirvin.com.json"),
137 headers: [{"content-type", "application/jrd+json"}]
142 "https://social.heldscal.la/.well-known/webfinger?resource=https://social.heldscal.la/user/29191",
145 [{"accept", "application/xrd+xml,application/jrd+json"}]
150 body: File.read!("test/fixtures/tesla_mock/https___social.heldscal.la_user_29191.xml")
155 "https://pawoo.net/.well-known/webfinger?resource=acct:https://pawoo.net/users/pekorino",
158 [{"accept", "application/xrd+xml,application/jrd+json"}]
163 body: File.read!("test/fixtures/tesla_mock/https___pawoo.net_users_pekorino.xml")
168 "https://social.stopwatchingus-heidelberg.de/.well-known/webfinger?resource=acct:https://social.stopwatchingus-heidelberg.de/user/18330",
171 [{"accept", "application/xrd+xml,application/jrd+json"}]
176 body: File.read!("test/fixtures/tesla_mock/atarifrosch_webfinger.xml")
181 "https://social.heldscal.la/.well-known/webfinger?resource=nonexistant@social.heldscal.la",
184 [{"accept", "application/xrd+xml,application/jrd+json"}]
189 body: File.read!("test/fixtures/tesla_mock/nonexistant@social.heldscal.la.xml")
194 "https://squeet.me/xrd/?uri=acct:lain@squeet.me",
197 [{"accept", "application/xrd+xml,application/jrd+json"}]
202 body: File.read!("test/fixtures/tesla_mock/lain_squeet.me_webfinger.xml"),
203 headers: [{"content-type", "application/xrd+xml"}]
208 "https://mst3k.interlinked.me/users/luciferMysticus",
211 [{"accept", "application/activity+json"}]
216 body: File.read!("test/fixtures/tesla_mock/lucifermysticus.json"),
217 headers: activitypub_object_headers()
221 def get("https://prismo.news/@mxb", _, _, _) do
225 body: File.read!("test/fixtures/tesla_mock/https___prismo.news__mxb.json"),
226 headers: activitypub_object_headers()
231 "https://hubzilla.example.org/channel/kaniini",
234 [{"accept", "application/activity+json"}]
239 body: File.read!("test/fixtures/tesla_mock/kaniini@hubzilla.example.org.json"),
240 headers: activitypub_object_headers()
244 def get("https://niu.moe/users/rye", _, _, [{"accept", "application/activity+json"}]) do
248 body: File.read!("test/fixtures/tesla_mock/rye.json"),
249 headers: activitypub_object_headers()
253 def get("https://n1u.moe/users/rye", _, _, [{"accept", "application/activity+json"}]) do
257 body: File.read!("test/fixtures/tesla_mock/rye.json"),
258 headers: activitypub_object_headers()
262 def get("http://mastodon.example.org/users/admin/statuses/100787282858396771", _, _, _) do
268 "test/fixtures/tesla_mock/http___mastodon.example.org_users_admin_status_1234.json"
273 def get("https://puckipedia.com/", _, _, [{"accept", "application/activity+json"}]) do
277 body: File.read!("test/fixtures/tesla_mock/puckipedia.com.json"),
278 headers: activitypub_object_headers()
282 def get("https://peertube.moe/accounts/7even", _, _, _) do
286 body: File.read!("test/fixtures/tesla_mock/7even.json"),
287 headers: activitypub_object_headers()
291 def get("https://peertube.stream/accounts/createurs", _, _, _) do
295 body: File.read!("test/fixtures/peertube/actor-person.json"),
296 headers: activitypub_object_headers()
300 def get("https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3", _, _, _) do
304 body: File.read!("test/fixtures/tesla_mock/peertube.moe-vid.json"),
305 headers: activitypub_object_headers()
309 def get("https://framatube.org/accounts/framasoft", _, _, _) do
313 body: File.read!("test/fixtures/tesla_mock/https___framatube.org_accounts_framasoft.json"),
314 headers: activitypub_object_headers()
318 def get("https://framatube.org/videos/watch/6050732a-8a7a-43d4-a6cd-809525a1d206", _, _, _) do
322 body: File.read!("test/fixtures/tesla_mock/framatube.org-video.json"),
323 headers: activitypub_object_headers()
327 def get("https://peertube.social/accounts/craigmaloney", _, _, _) do
331 body: File.read!("test/fixtures/tesla_mock/craigmaloney.json"),
332 headers: activitypub_object_headers()
336 def get("https://peertube.social/videos/watch/278d2b7c-0f38-4aaa-afe6-9ecc0c4a34fe", _, _, _) do
340 body: File.read!("test/fixtures/tesla_mock/peertube-social.json"),
341 headers: activitypub_object_headers()
345 def get("https://mobilizon.org/events/252d5816-00a3-4a89-a66f-15bf65c33e39", _, _, [
346 {"accept", "application/activity+json"}
351 body: File.read!("test/fixtures/tesla_mock/mobilizon.org-event.json"),
352 headers: activitypub_object_headers()
356 def get("https://mobilizon.org/@tcit", _, _, [{"accept", "application/activity+json"}]) do
360 body: File.read!("test/fixtures/tesla_mock/mobilizon.org-user.json"),
361 headers: activitypub_object_headers()
365 def get("https://baptiste.gelez.xyz/@/BaptisteGelez", _, _, _) do
369 body: File.read!("test/fixtures/tesla_mock/baptiste.gelex.xyz-user.json"),
370 headers: activitypub_object_headers()
374 def get("https://baptiste.gelez.xyz/~/PlumeDevelopment/this-month-in-plume-june-2018/", _, _, _) do
378 body: File.read!("test/fixtures/tesla_mock/baptiste.gelex.xyz-article.json"),
379 headers: activitypub_object_headers()
383 def get("https://wedistribute.org/wp-json/pterotype/v1/object/85810", _, _, _) do
387 body: File.read!("test/fixtures/tesla_mock/wedistribute-article.json"),
388 headers: activitypub_object_headers()
392 def get("https://wedistribute.org/wp-json/pterotype/v1/actor/-blog", _, _, _) do
396 body: File.read!("test/fixtures/tesla_mock/wedistribute-user.json"),
397 headers: activitypub_object_headers()
401 def get("http://mastodon.example.org/users/admin", _, _, _) do
405 body: File.read!("test/fixtures/tesla_mock/admin@mastdon.example.org.json"),
406 headers: activitypub_object_headers()
410 def get("http://mastodon.example.org/users/relay", _, _, [
411 {"accept", "application/activity+json"}
416 body: File.read!("test/fixtures/tesla_mock/relay@mastdon.example.org.json"),
417 headers: activitypub_object_headers()
421 def get("http://mastodon.example.org/users/gargron", _, _, [
422 {"accept", "application/activity+json"}
427 def get("http://osada.macgirvin.com/.well-known/host-meta", _, _, _) do
435 def get("https://osada.macgirvin.com/.well-known/host-meta", _, _, _) do
443 def get("http://mastodon.sdf.org/.well-known/host-meta", _, _, _) do
447 body: File.read!("test/fixtures/tesla_mock/sdf.org_host_meta")
451 def get("https://mastodon.sdf.org/.well-known/host-meta", _, _, _) do
455 body: File.read!("test/fixtures/tesla_mock/sdf.org_host_meta")
460 "https://mastodon.sdf.org/.well-known/webfinger?resource=https://mastodon.sdf.org/users/snowdusk",
468 body: File.read!("test/fixtures/tesla_mock/snowdusk@sdf.org_host_meta.json")
472 def get("http://mstdn.jp/.well-known/host-meta", _, _, _) do
476 body: File.read!("test/fixtures/tesla_mock/mstdn.jp_host_meta")
480 def get("https://mstdn.jp/.well-known/host-meta", _, _, _) do
484 body: File.read!("test/fixtures/tesla_mock/mstdn.jp_host_meta")
488 def get("https://mstdn.jp/.well-known/webfinger?resource=kpherox@mstdn.jp", _, _, _) do
492 body: File.read!("test/fixtures/tesla_mock/kpherox@mstdn.jp.xml")
496 def get("http://mamot.fr/.well-known/host-meta", _, _, _) do
500 body: File.read!("test/fixtures/tesla_mock/mamot.fr_host_meta")
504 def get("https://mamot.fr/.well-known/host-meta", _, _, _) do
508 body: File.read!("test/fixtures/tesla_mock/mamot.fr_host_meta")
512 def get("http://pawoo.net/.well-known/host-meta", _, _, _) do
516 body: File.read!("test/fixtures/tesla_mock/pawoo.net_host_meta")
520 def get("https://pawoo.net/.well-known/host-meta", _, _, _) do
524 body: File.read!("test/fixtures/tesla_mock/pawoo.net_host_meta")
529 "https://pawoo.net/.well-known/webfinger?resource=https://pawoo.net/users/pekorino",
537 body: File.read!("test/fixtures/tesla_mock/pekorino@pawoo.net_host_meta.json"),
538 headers: activitypub_object_headers()
542 def get("http://pleroma.soykaf.com/.well-known/host-meta", _, _, _) do
546 body: File.read!("test/fixtures/tesla_mock/soykaf.com_host_meta")
550 def get("https://pleroma.soykaf.com/.well-known/host-meta", _, _, _) do
554 body: File.read!("test/fixtures/tesla_mock/soykaf.com_host_meta")
558 def get("http://social.stopwatchingus-heidelberg.de/.well-known/host-meta", _, _, _) do
562 body: File.read!("test/fixtures/tesla_mock/stopwatchingus-heidelberg.de_host_meta")
566 def get("https://social.stopwatchingus-heidelberg.de/.well-known/host-meta", _, _, _) do
570 body: File.read!("test/fixtures/tesla_mock/stopwatchingus-heidelberg.de_host_meta")
575 "http://mastodon.example.org/@admin/99541947525187367",
583 body: File.read!("test/fixtures/mastodon-note-object.json"),
584 headers: activitypub_object_headers()
588 def get("http://mastodon.example.org/@admin/99541947525187368", _, _, _) do
596 def get("https://shitposter.club/notice/7369654", _, _, _) do
600 body: File.read!("test/fixtures/tesla_mock/7369654.html")
604 def get("https://mstdn.io/users/mayuutann", _, _, [{"accept", "application/activity+json"}]) do
608 body: File.read!("test/fixtures/tesla_mock/mayumayu.json"),
609 headers: activitypub_object_headers()
614 "https://mstdn.io/users/mayuutann/statuses/99568293732299394",
617 [{"accept", "application/activity+json"}]
622 body: File.read!("test/fixtures/tesla_mock/mayumayupost.json"),
623 headers: activitypub_object_headers()
627 def get(url, _, _, [{"accept", "application/xrd+xml,application/jrd+json"}])
629 "https://pleroma.soykaf.com/.well-known/webfinger?resource=acct:https://pleroma.soykaf.com/users/lain",
630 "https://pleroma.soykaf.com/.well-known/webfinger?resource=https://pleroma.soykaf.com/users/lain"
635 body: File.read!("test/fixtures/tesla_mock/https___pleroma.soykaf.com_users_lain.xml")
640 "https://shitposter.club/.well-known/webfinger?resource=https://shitposter.club/user/1",
643 [{"accept", "application/xrd+xml,application/jrd+json"}]
648 body: File.read!("test/fixtures/tesla_mock/https___shitposter.club_user_1.xml")
652 def get("https://testing.pleroma.lol/objects/b319022a-4946-44c5-9de9-34801f95507b", _, _, _) do
653 {:ok, %Tesla.Env{status: 200}}
657 "https://shitposter.club/.well-known/webfinger?resource=https://shitposter.club/user/5381",
660 [{"accept", "application/xrd+xml,application/jrd+json"}]
665 body: File.read!("test/fixtures/tesla_mock/spc_5381_xrd.xml")
669 def get("http://shitposter.club/.well-known/host-meta", _, _, _) do
673 body: File.read!("test/fixtures/tesla_mock/shitposter.club_host_meta")
677 def get("https://shitposter.club/notice/4027863", _, _, _) do
681 body: File.read!("test/fixtures/tesla_mock/7369654.html")
685 def get("http://social.sakamoto.gq/.well-known/host-meta", _, _, _) do
689 body: File.read!("test/fixtures/tesla_mock/social.sakamoto.gq_host_meta")
694 "https://social.sakamoto.gq/.well-known/webfinger?resource=https://social.sakamoto.gq/users/eal",
697 [{"accept", "application/xrd+xml,application/jrd+json"}]
702 body: File.read!("test/fixtures/tesla_mock/eal_sakamoto.xml")
706 def get("http://mastodon.social/.well-known/host-meta", _, _, _) do
710 body: File.read!("test/fixtures/tesla_mock/mastodon.social_host_meta")
715 "https://mastodon.social/.well-known/webfinger?resource=https://mastodon.social/users/lambadalambda",
718 [{"accept", "application/xrd+xml,application/jrd+json"}]
724 File.read!("test/fixtures/tesla_mock/https___mastodon.social_users_lambadalambda.xml")
728 def get("http://gs.example.org/.well-known/host-meta", _, _, _) do
732 body: File.read!("test/fixtures/tesla_mock/gs.example.org_host_meta")
737 "http://gs.example.org/.well-known/webfinger?resource=http://gs.example.org:4040/index.php/user/1",
740 [{"accept", "application/xrd+xml,application/jrd+json"}]
746 File.read!("test/fixtures/tesla_mock/http___gs.example.org_4040_index.php_user_1.xml")
751 "http://gs.example.org:4040/index.php/user/1",
754 [{"accept", "application/activity+json"}]
756 {:ok, %Tesla.Env{status: 406, body: ""}}
759 def get("http://squeet.me/.well-known/host-meta", _, _, _) do
761 %Tesla.Env{status: 200, body: File.read!("test/fixtures/tesla_mock/squeet.me_host_meta")}}
765 "https://squeet.me/xrd?uri=lain@squeet.me",
768 [{"accept", "application/xrd+xml,application/jrd+json"}]
773 body: File.read!("test/fixtures/tesla_mock/lain_squeet.me_webfinger.xml")
778 "https://social.heldscal.la/.well-known/webfinger?resource=acct:shp@social.heldscal.la",
781 [{"accept", "application/xrd+xml,application/jrd+json"}]
786 body: File.read!("test/fixtures/tesla_mock/shp@social.heldscal.la.xml"),
787 headers: [{"content-type", "application/xrd+xml"}]
792 "https://social.heldscal.la/.well-known/webfinger?resource=acct:invalid_content@social.heldscal.la",
795 [{"accept", "application/xrd+xml,application/jrd+json"}]
797 {:ok, %Tesla.Env{status: 200, body: "", headers: [{"content-type", "application/jrd+json"}]}}
800 def get("http://framatube.org/.well-known/host-meta", _, _, _) do
804 body: File.read!("test/fixtures/tesla_mock/framatube.org_host_meta")
809 "http://framatube.org/main/xrd?uri=acct:framasoft@framatube.org",
812 [{"accept", "application/xrd+xml,application/jrd+json"}]
817 headers: [{"content-type", "application/jrd+json"}],
818 body: File.read!("test/fixtures/tesla_mock/framasoft@framatube.org.json")
822 def get("http://gnusocial.de/.well-known/host-meta", _, _, _) do
826 body: File.read!("test/fixtures/tesla_mock/gnusocial.de_host_meta")
831 "http://gnusocial.de/main/xrd?uri=winterdienst@gnusocial.de",
834 [{"accept", "application/xrd+xml,application/jrd+json"}]
839 body: File.read!("test/fixtures/tesla_mock/winterdienst_webfinger.json"),
840 headers: activitypub_object_headers()
844 def get("http://status.alpicola.com/.well-known/host-meta", _, _, _) do
848 body: File.read!("test/fixtures/tesla_mock/status.alpicola.com_host_meta")
852 def get("http://macgirvin.com/.well-known/host-meta", _, _, _) do
856 body: File.read!("test/fixtures/tesla_mock/macgirvin.com_host_meta")
860 def get("http://gerzilla.de/.well-known/host-meta", _, _, _) do
864 body: File.read!("test/fixtures/tesla_mock/gerzilla.de_host_meta")
869 "https://gerzilla.de/xrd/?uri=acct:kaniini@gerzilla.de",
872 [{"accept", "application/xrd+xml,application/jrd+json"}]
877 headers: [{"content-type", "application/jrd+json"}],
878 body: File.read!("test/fixtures/tesla_mock/kaniini@gerzilla.de.json")
883 "https://social.heldscal.la/.well-known/webfinger?resource=https://social.heldscal.la/user/23211",
891 body: File.read!("test/fixtures/tesla_mock/https___social.heldscal.la_user_23211.xml")
895 def get("http://social.heldscal.la/.well-known/host-meta", _, _, _) do
899 body: File.read!("test/fixtures/tesla_mock/social.heldscal.la_host_meta")
903 def get("https://social.heldscal.la/.well-known/host-meta", _, _, _) do
907 body: File.read!("test/fixtures/tesla_mock/social.heldscal.la_host_meta")
911 def get("https://mastodon.social/users/lambadalambda", _, _, _) do
915 body: File.read!("test/fixtures/lambadalambda.json"),
916 headers: activitypub_object_headers()
920 def get("https://mastodon.social/users/lambadalambda/collections/featured", _, _, _) do
925 File.read!("test/fixtures/users_mock/masto_featured.json")
926 |> String.replace("{{domain}}", "mastodon.social")
927 |> String.replace("{{nickname}}", "lambadalambda"),
928 headers: activitypub_object_headers()
932 def get("https://apfed.club/channel/indio", _, _, _) do
936 body: File.read!("test/fixtures/tesla_mock/osada-user-indio.json"),
937 headers: activitypub_object_headers()
941 def get("https://social.heldscal.la/user/23211", _, _, [{"accept", "application/activity+json"}]) do
942 {:ok, Tesla.Mock.json(%{"id" => "https://social.heldscal.la/user/23211"}, status: 200)}
945 def get("http://example.com/ogp", _, _, _) do
946 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
949 def get("https://example.com/ogp", _, _, _) do
950 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
953 def get("https://pleroma.local/notice/9kCP7V", _, _, _) do
954 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
957 def get("http://localhost:4001/users/masto_closed/followers", _, _, _) do
961 body: File.read!("test/fixtures/users_mock/masto_closed_followers.json"),
962 headers: activitypub_object_headers()
966 def get("http://localhost:4001/users/masto_closed/followers?page=1", _, _, _) do
970 body: File.read!("test/fixtures/users_mock/masto_closed_followers_page.json"),
971 headers: activitypub_object_headers()
975 def get("http://localhost:4001/users/masto_closed/following", _, _, _) do
979 body: File.read!("test/fixtures/users_mock/masto_closed_following.json"),
980 headers: activitypub_object_headers()
984 def get("http://localhost:4001/users/masto_closed/following?page=1", _, _, _) do
988 body: File.read!("test/fixtures/users_mock/masto_closed_following_page.json"),
989 headers: activitypub_object_headers()
993 def get("http://localhost:8080/followers/fuser3", _, _, _) do
997 body: File.read!("test/fixtures/users_mock/friendica_followers.json"),
998 headers: activitypub_object_headers()
1002 def get("http://localhost:8080/following/fuser3", _, _, _) do
1006 body: File.read!("test/fixtures/users_mock/friendica_following.json"),
1007 headers: activitypub_object_headers()
1011 def get("http://localhost:4001/users/fuser2/followers", _, _, _) do
1015 body: File.read!("test/fixtures/users_mock/pleroma_followers.json"),
1016 headers: activitypub_object_headers()
1020 def get("http://localhost:4001/users/fuser2/following", _, _, _) do
1024 body: File.read!("test/fixtures/users_mock/pleroma_following.json"),
1025 headers: activitypub_object_headers()
1029 def get("http://domain-with-errors:4001/users/fuser1/followers", _, _, _) do
1037 def get("http://domain-with-errors:4001/users/fuser1/following", _, _, _) do
1045 def get("http://example.com/ogp-missing-data", _, _, _) do
1049 body: File.read!("test/fixtures/rich_media/ogp-missing-data.html")
1053 def get("https://example.com/ogp-missing-data", _, _, _) do
1057 body: File.read!("test/fixtures/rich_media/ogp-missing-data.html")
1061 def get("http://example.com/malformed", _, _, _) do
1063 %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/malformed-data.html")}}
1066 def get("http://example.com/empty", _, _, _) do
1067 {:ok, %Tesla.Env{status: 200, body: "hello"}}
1070 def get("http://404.site" <> _, _, _, _) do
1079 "https://zetsubou.xn--q9jyb4c/.well-known/webfinger?resource=acct:lain@zetsubou.xn--q9jyb4c",
1082 [{"accept", "application/xrd+xml,application/jrd+json"}]
1087 body: File.read!("test/fixtures/lain.xml"),
1088 headers: [{"content-type", "application/xrd+xml"}]
1093 "https://zetsubou.xn--q9jyb4c/.well-known/webfinger?resource=acct:https://zetsubou.xn--q9jyb4c/users/lain",
1096 [{"accept", "application/xrd+xml,application/jrd+json"}]
1101 body: File.read!("test/fixtures/lain.xml"),
1102 headers: [{"content-type", "application/xrd+xml"}]
1106 def get("http://zetsubou.xn--q9jyb4c/.well-known/host-meta", _, _, _) do
1110 body: File.read!("test/fixtures/host-meta-zetsubou.xn--q9jyb4c.xml")
1115 "https://zetsubou.xn--q9jyb4c/.well-known/host-meta",
1123 body: File.read!("test/fixtures/host-meta-zetsubou.xn--q9jyb4c.xml")
1127 def get("https://info.pleroma.site/activity.json", _, _, [
1128 {"accept", "application/activity+json"}
1133 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity.json"),
1134 headers: activitypub_object_headers()
1138 def get("https://info.pleroma.site/activity.json", _, _, _) do
1139 {:ok, %Tesla.Env{status: 404, body: ""}}
1142 def get("https://info.pleroma.site/activity2.json", _, _, [
1143 {"accept", "application/activity+json"}
1148 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity2.json"),
1149 headers: activitypub_object_headers()
1153 def get("https://info.pleroma.site/activity2.json", _, _, _) do
1154 {:ok, %Tesla.Env{status: 404, body: ""}}
1157 def get("https://info.pleroma.site/activity3.json", _, _, [
1158 {"accept", "application/activity+json"}
1163 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity3.json"),
1164 headers: activitypub_object_headers()
1168 def get("https://info.pleroma.site/activity3.json", _, _, _) do
1169 {:ok, %Tesla.Env{status: 404, body: ""}}
1172 def get("https://mstdn.jp/.well-known/webfinger?resource=acct:kpherox@mstdn.jp", _, _, _) do
1176 body: File.read!("test/fixtures/tesla_mock/kpherox@mstdn.jp.xml"),
1177 headers: [{"content-type", "application/xrd+xml"}]
1181 def get("https://10.111.10.1/notice/9kCP7V", _, _, _) do
1182 {:ok, %Tesla.Env{status: 200, body: ""}}
1185 def get("https://172.16.32.40/notice/9kCP7V", _, _, _) do
1186 {:ok, %Tesla.Env{status: 200, body: ""}}
1189 def get("https://192.168.10.40/notice/9kCP7V", _, _, _) do
1190 {:ok, %Tesla.Env{status: 200, body: ""}}
1193 def get("https://www.patreon.com/posts/mastodon-2-9-and-28121681", _, _, _) do
1194 {:ok, %Tesla.Env{status: 200, body: ""}}
1197 def get("http://mastodon.example.org/@admin/99541947525187367", _, _, _) do
1201 body: File.read!("test/fixtures/mastodon-post-activity.json"),
1202 headers: activitypub_object_headers()
1206 def get("https://info.pleroma.site/activity4.json", _, _, _) do
1207 {:ok, %Tesla.Env{status: 500, body: "Error occurred"}}
1210 def get("http://example.com/rel_me/anchor", _, _, _) do
1211 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_anchor.html")}}
1214 def get("http://example.com/rel_me/anchor_nofollow", _, _, _) do
1215 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_anchor_nofollow.html")}}
1218 def get("http://example.com/rel_me/link", _, _, _) do
1219 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_link.html")}}
1222 def get("http://example.com/rel_me/null", _, _, _) do
1223 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_null.html")}}
1226 def get("https://skippers-bin.com/notes/7x9tmrp97i", _, _, _) do
1230 body: File.read!("test/fixtures/tesla_mock/misskey_poll_no_end_date.json"),
1231 headers: activitypub_object_headers()
1235 def get("https://example.org/emoji/firedfox.png", _, _, _) do
1236 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/image.jpg")}}
1239 def get("https://skippers-bin.com/users/7v1w1r8ce6", _, _, _) do
1243 body: File.read!("test/fixtures/tesla_mock/sjw.json"),
1244 headers: activitypub_object_headers()
1248 def get("https://patch.cx/users/rin", _, _, _) do
1252 body: File.read!("test/fixtures/tesla_mock/rin.json"),
1253 headers: activitypub_object_headers()
1258 "https://channels.tests.funkwhale.audio/federation/music/uploads/42342395-0208-4fee-a38d-259a6dae0871",
1266 body: File.read!("test/fixtures/tesla_mock/funkwhale_audio.json"),
1267 headers: activitypub_object_headers()
1271 def get("https://channels.tests.funkwhale.audio/federation/actors/compositions", _, _, _) do
1275 body: File.read!("test/fixtures/tesla_mock/funkwhale_channel.json"),
1276 headers: activitypub_object_headers()
1280 def get("http://example.com/rel_me/error", _, _, _) do
1281 {:ok, %Tesla.Env{status: 404, body: ""}}
1284 def get("https://relay.mastodon.host/actor", _, _, _) do
1288 body: File.read!("test/fixtures/relay/relay.json"),
1289 headers: activitypub_object_headers()
1293 def get("http://localhost:4001/", _, "", [{"accept", "text/html"}]) do
1294 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/tesla_mock/7369654.html")}}
1297 def get("https://osada.macgirvin.com/", _, "", [{"accept", "text/html"}]) do
1301 body: File.read!("test/fixtures/tesla_mock/https___osada.macgirvin.com.html")
1305 def get("https://patch.cx/objects/a399c28e-c821-4820-bc3e-4afeb044c16f", _, _, _) do
1309 body: File.read!("test/fixtures/tesla_mock/emoji-in-summary.json"),
1310 headers: activitypub_object_headers()
1314 def get(url, query, body, headers) do
1316 "Mock response not implemented for GET #{inspect(url)}, #{query}, #{inspect(body)}, #{
1324 def post(url, query \\ [], body \\ [], headers \\ [])
1326 def post("https://relay.mastodon.host/inbox", _, _, _) do
1327 {:ok, %Tesla.Env{status: 200, body: ""}}
1330 def post("http://example.org/needs_refresh", _, _, _) do
1338 def post("http://mastodon.example.org/inbox", _, _, _) do
1346 def post("https://hubzilla.example.org/inbox", _, _, _) do
1354 def post("http://gs.example.org/index.php/main/salmon/user/1", _, _, _) do
1362 def post("http://200.site" <> _, _, _, _) do
1370 def post("http://connrefused.site" <> _, _, _, _) do
1371 {:error, :connrefused}
1374 def post("http://404.site" <> _, _, _, _) do
1382 def post(url, query, body, headers) do
1384 "Mock response not implemented for POST #{inspect(url)}, #{query}, #{inspect(body)}, #{
1389 # Most of the rich media mocks are missing HEAD requests, so we just return 404.
1391 "https://example.com/ogp",
1392 "https://example.com/ogp-missing-data",
1393 "https://example.com/twitter-card"
1395 def head(url, _query, _body, _headers) when url in @rich_media_mocks do
1396 {:ok, %Tesla.Env{status: 404, body: ""}}
1399 def head(url, query, body, headers) do
1401 "Mock response not implemented for HEAD #{inspect(url)}, #{query}, #{inspect(body)}, #{