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 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://patch.cx/objects/tesla_mock/poll_attachment", _, _, _) do
96 body: File.read!("test/fixtures/tesla_mock/poll_attachment.json"),
97 headers: activitypub_object_headers()
102 "https://mastodon.social/.well-known/webfinger?resource=https://mastodon.social/users/emelie",
110 body: File.read!("test/fixtures/tesla_mock/webfinger_emelie.json"),
111 headers: activitypub_object_headers()
116 "https://osada.macgirvin.com/.well-known/webfinger?resource=acct:mike@osada.macgirvin.com",
119 [{"accept", "application/xrd+xml,application/jrd+json"}]
124 body: File.read!("test/fixtures/tesla_mock/mike@osada.macgirvin.com.json"),
125 headers: activitypub_object_headers()
130 "https://social.heldscal.la/.well-known/webfinger?resource=https://social.heldscal.la/user/29191",
133 [{"accept", "application/xrd+xml,application/jrd+json"}]
138 body: File.read!("test/fixtures/tesla_mock/https___social.heldscal.la_user_29191.xml")
143 "https://pawoo.net/.well-known/webfinger?resource=acct:https://pawoo.net/users/pekorino",
146 [{"accept", "application/xrd+xml,application/jrd+json"}]
151 body: File.read!("test/fixtures/tesla_mock/https___pawoo.net_users_pekorino.xml")
156 "https://social.stopwatchingus-heidelberg.de/.well-known/webfinger?resource=acct:https://social.stopwatchingus-heidelberg.de/user/18330",
159 [{"accept", "application/xrd+xml,application/jrd+json"}]
164 body: File.read!("test/fixtures/tesla_mock/atarifrosch_webfinger.xml")
169 "https://social.heldscal.la/.well-known/webfinger?resource=nonexistant@social.heldscal.la",
172 [{"accept", "application/xrd+xml,application/jrd+json"}]
177 body: File.read!("test/fixtures/tesla_mock/nonexistant@social.heldscal.la.xml")
182 "https://squeet.me/xrd/?uri=acct:lain@squeet.me",
185 [{"accept", "application/xrd+xml,application/jrd+json"}]
190 body: File.read!("test/fixtures/tesla_mock/lain_squeet.me_webfinger.xml")
195 "https://mst3k.interlinked.me/users/luciferMysticus",
198 [{"accept", "application/activity+json"}]
203 body: File.read!("test/fixtures/tesla_mock/lucifermysticus.json"),
204 headers: activitypub_object_headers()
208 def get("https://prismo.news/@mxb", _, _, _) do
212 body: File.read!("test/fixtures/tesla_mock/https___prismo.news__mxb.json"),
213 headers: activitypub_object_headers()
218 "https://hubzilla.example.org/channel/kaniini",
221 [{"accept", "application/activity+json"}]
226 body: File.read!("test/fixtures/tesla_mock/kaniini@hubzilla.example.org.json"),
227 headers: activitypub_object_headers()
231 def get("https://niu.moe/users/rye", _, _, [{"accept", "application/activity+json"}]) do
235 body: File.read!("test/fixtures/tesla_mock/rye.json"),
236 headers: activitypub_object_headers()
240 def get("https://n1u.moe/users/rye", _, _, [{"accept", "application/activity+json"}]) do
244 body: File.read!("test/fixtures/tesla_mock/rye.json"),
245 headers: activitypub_object_headers()
249 def get("http://mastodon.example.org/users/admin/statuses/100787282858396771", _, _, _) do
255 "test/fixtures/tesla_mock/http___mastodon.example.org_users_admin_status_1234.json"
260 def get("https://puckipedia.com/", _, _, [{"accept", "application/activity+json"}]) do
264 body: File.read!("test/fixtures/tesla_mock/puckipedia.com.json"),
265 headers: activitypub_object_headers()
269 def get("https://peertube.moe/accounts/7even", _, _, _) do
273 body: File.read!("test/fixtures/tesla_mock/7even.json"),
274 headers: activitypub_object_headers()
278 def get("https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3", _, _, _) do
282 body: File.read!("test/fixtures/tesla_mock/peertube.moe-vid.json"),
283 headers: activitypub_object_headers()
287 def get("https://framatube.org/accounts/framasoft", _, _, _) do
291 body: File.read!("test/fixtures/tesla_mock/https___framatube.org_accounts_framasoft.json"),
292 headers: activitypub_object_headers()
296 def get("https://framatube.org/videos/watch/6050732a-8a7a-43d4-a6cd-809525a1d206", _, _, _) do
300 body: File.read!("test/fixtures/tesla_mock/framatube.org-video.json"),
301 headers: activitypub_object_headers()
305 def get("https://peertube.social/accounts/craigmaloney", _, _, _) do
309 body: File.read!("test/fixtures/tesla_mock/craigmaloney.json"),
310 headers: activitypub_object_headers()
314 def get("https://peertube.social/videos/watch/278d2b7c-0f38-4aaa-afe6-9ecc0c4a34fe", _, _, _) do
318 body: File.read!("test/fixtures/tesla_mock/peertube-social.json"),
319 headers: activitypub_object_headers()
323 def get("https://mobilizon.org/events/252d5816-00a3-4a89-a66f-15bf65c33e39", _, _, [
324 {"accept", "application/activity+json"}
329 body: File.read!("test/fixtures/tesla_mock/mobilizon.org-event.json"),
330 headers: activitypub_object_headers()
334 def get("https://mobilizon.org/@tcit", _, _, [{"accept", "application/activity+json"}]) do
338 body: File.read!("test/fixtures/tesla_mock/mobilizon.org-user.json"),
339 headers: activitypub_object_headers()
343 def get("https://baptiste.gelez.xyz/@/BaptisteGelez", _, _, _) do
347 body: File.read!("test/fixtures/tesla_mock/baptiste.gelex.xyz-user.json"),
348 headers: activitypub_object_headers()
352 def get("https://baptiste.gelez.xyz/~/PlumeDevelopment/this-month-in-plume-june-2018/", _, _, _) do
356 body: File.read!("test/fixtures/tesla_mock/baptiste.gelex.xyz-article.json"),
357 headers: activitypub_object_headers()
361 def get("https://wedistribute.org/wp-json/pterotype/v1/object/85810", _, _, _) do
365 body: File.read!("test/fixtures/tesla_mock/wedistribute-article.json"),
366 headers: activitypub_object_headers()
370 def get("https://wedistribute.org/wp-json/pterotype/v1/actor/-blog", _, _, _) do
374 body: File.read!("test/fixtures/tesla_mock/wedistribute-user.json"),
375 headers: activitypub_object_headers()
379 def get("http://mastodon.example.org/users/admin", _, _, _) do
383 body: File.read!("test/fixtures/tesla_mock/admin@mastdon.example.org.json"),
384 headers: activitypub_object_headers()
388 def get("http://mastodon.example.org/users/relay", _, _, [
389 {"accept", "application/activity+json"}
394 body: File.read!("test/fixtures/tesla_mock/relay@mastdon.example.org.json"),
395 headers: activitypub_object_headers()
399 def get("http://mastodon.example.org/users/gargron", _, _, [
400 {"accept", "application/activity+json"}
405 def get("http://osada.macgirvin.com/.well-known/host-meta", _, _, _) do
413 def get("https://osada.macgirvin.com/.well-known/host-meta", _, _, _) do
421 def get("http://mastodon.sdf.org/.well-known/host-meta", _, _, _) do
425 body: File.read!("test/fixtures/tesla_mock/sdf.org_host_meta")
429 def get("https://mastodon.sdf.org/.well-known/host-meta", _, _, _) do
433 body: File.read!("test/fixtures/tesla_mock/sdf.org_host_meta")
438 "https://mastodon.sdf.org/.well-known/webfinger?resource=https://mastodon.sdf.org/users/snowdusk",
446 body: File.read!("test/fixtures/tesla_mock/snowdusk@sdf.org_host_meta.json")
450 def get("http://mstdn.jp/.well-known/host-meta", _, _, _) do
454 body: File.read!("test/fixtures/tesla_mock/mstdn.jp_host_meta")
458 def get("https://mstdn.jp/.well-known/host-meta", _, _, _) do
462 body: File.read!("test/fixtures/tesla_mock/mstdn.jp_host_meta")
466 def get("https://mstdn.jp/.well-known/webfinger?resource=kpherox@mstdn.jp", _, _, _) do
470 body: File.read!("test/fixtures/tesla_mock/kpherox@mstdn.jp.xml")
474 def get("http://mamot.fr/.well-known/host-meta", _, _, _) do
478 body: File.read!("test/fixtures/tesla_mock/mamot.fr_host_meta")
482 def get("https://mamot.fr/.well-known/host-meta", _, _, _) do
486 body: File.read!("test/fixtures/tesla_mock/mamot.fr_host_meta")
490 def get("http://pawoo.net/.well-known/host-meta", _, _, _) do
494 body: File.read!("test/fixtures/tesla_mock/pawoo.net_host_meta")
498 def get("https://pawoo.net/.well-known/host-meta", _, _, _) do
502 body: File.read!("test/fixtures/tesla_mock/pawoo.net_host_meta")
507 "https://pawoo.net/.well-known/webfinger?resource=https://pawoo.net/users/pekorino",
515 body: File.read!("test/fixtures/tesla_mock/pekorino@pawoo.net_host_meta.json"),
516 headers: activitypub_object_headers()
520 def get("http://zetsubou.xn--q9jyb4c/.well-known/host-meta", _, _, _) do
524 body: File.read!("test/fixtures/tesla_mock/xn--q9jyb4c_host_meta")
528 def get("https://zetsubou.xn--q9jyb4c/.well-known/host-meta", _, _, _) do
532 body: File.read!("test/fixtures/tesla_mock/xn--q9jyb4c_host_meta")
536 def get("http://pleroma.soykaf.com/.well-known/host-meta", _, _, _) do
540 body: File.read!("test/fixtures/tesla_mock/soykaf.com_host_meta")
544 def get("https://pleroma.soykaf.com/.well-known/host-meta", _, _, _) do
548 body: File.read!("test/fixtures/tesla_mock/soykaf.com_host_meta")
552 def get("http://social.stopwatchingus-heidelberg.de/.well-known/host-meta", _, _, _) do
556 body: File.read!("test/fixtures/tesla_mock/stopwatchingus-heidelberg.de_host_meta")
560 def get("https://social.stopwatchingus-heidelberg.de/.well-known/host-meta", _, _, _) do
564 body: File.read!("test/fixtures/tesla_mock/stopwatchingus-heidelberg.de_host_meta")
569 "http://mastodon.example.org/@admin/99541947525187367",
577 body: File.read!("test/fixtures/mastodon-note-object.json"),
578 headers: activitypub_object_headers()
582 def get("http://mastodon.example.org/@admin/99541947525187368", _, _, _) do
590 def get("https://shitposter.club/notice/7369654", _, _, _) do
594 body: File.read!("test/fixtures/tesla_mock/7369654.html")
598 def get("https://mstdn.io/users/mayuutann", _, _, [{"accept", "application/activity+json"}]) do
602 body: File.read!("test/fixtures/tesla_mock/mayumayu.json"),
603 headers: activitypub_object_headers()
608 "https://mstdn.io/users/mayuutann/statuses/99568293732299394",
611 [{"accept", "application/activity+json"}]
616 body: File.read!("test/fixtures/tesla_mock/mayumayupost.json"),
617 headers: activitypub_object_headers()
621 def get(url, _, _, [{"accept", "application/xrd+xml,application/jrd+json"}])
623 "https://pleroma.soykaf.com/.well-known/webfinger?resource=acct:https://pleroma.soykaf.com/users/lain",
624 "https://pleroma.soykaf.com/.well-known/webfinger?resource=https://pleroma.soykaf.com/users/lain"
629 body: File.read!("test/fixtures/tesla_mock/https___pleroma.soykaf.com_users_lain.xml")
634 "https://shitposter.club/.well-known/webfinger?resource=https://shitposter.club/user/1",
637 [{"accept", "application/xrd+xml,application/jrd+json"}]
642 body: File.read!("test/fixtures/tesla_mock/https___shitposter.club_user_1.xml")
646 def get("https://testing.pleroma.lol/objects/b319022a-4946-44c5-9de9-34801f95507b", _, _, _) do
647 {:ok, %Tesla.Env{status: 200}}
651 "https://shitposter.club/.well-known/webfinger?resource=https://shitposter.club/user/5381",
654 [{"accept", "application/xrd+xml,application/jrd+json"}]
659 body: File.read!("test/fixtures/tesla_mock/spc_5381_xrd.xml")
663 def get("http://shitposter.club/.well-known/host-meta", _, _, _) do
667 body: File.read!("test/fixtures/tesla_mock/shitposter.club_host_meta")
671 def get("https://shitposter.club/notice/4027863", _, _, _) do
675 body: File.read!("test/fixtures/tesla_mock/7369654.html")
679 def get("http://social.sakamoto.gq/.well-known/host-meta", _, _, _) do
683 body: File.read!("test/fixtures/tesla_mock/social.sakamoto.gq_host_meta")
688 "https://social.sakamoto.gq/.well-known/webfinger?resource=https://social.sakamoto.gq/users/eal",
691 [{"accept", "application/xrd+xml,application/jrd+json"}]
696 body: File.read!("test/fixtures/tesla_mock/eal_sakamoto.xml")
700 def get("http://mastodon.social/.well-known/host-meta", _, _, _) do
704 body: File.read!("test/fixtures/tesla_mock/mastodon.social_host_meta")
709 "https://mastodon.social/.well-known/webfinger?resource=https://mastodon.social/users/lambadalambda",
712 [{"accept", "application/xrd+xml,application/jrd+json"}]
718 File.read!("test/fixtures/tesla_mock/https___mastodon.social_users_lambadalambda.xml")
722 def get("http://gs.example.org/.well-known/host-meta", _, _, _) do
726 body: File.read!("test/fixtures/tesla_mock/gs.example.org_host_meta")
731 "http://gs.example.org/.well-known/webfinger?resource=http://gs.example.org:4040/index.php/user/1",
734 [{"accept", "application/xrd+xml,application/jrd+json"}]
740 File.read!("test/fixtures/tesla_mock/http___gs.example.org_4040_index.php_user_1.xml")
745 "http://gs.example.org:4040/index.php/user/1",
748 [{"accept", "application/activity+json"}]
750 {:ok, %Tesla.Env{status: 406, body: ""}}
753 def get("http://squeet.me/.well-known/host-meta", _, _, _) do
755 %Tesla.Env{status: 200, body: File.read!("test/fixtures/tesla_mock/squeet.me_host_meta")}}
759 "https://squeet.me/xrd?uri=lain@squeet.me",
762 [{"accept", "application/xrd+xml,application/jrd+json"}]
767 body: File.read!("test/fixtures/tesla_mock/lain_squeet.me_webfinger.xml")
772 "https://social.heldscal.la/.well-known/webfinger?resource=acct:shp@social.heldscal.la",
775 [{"accept", "application/xrd+xml,application/jrd+json"}]
780 body: File.read!("test/fixtures/tesla_mock/shp@social.heldscal.la.xml")
785 "https://social.heldscal.la/.well-known/webfinger?resource=acct:invalid_content@social.heldscal.la",
788 [{"accept", "application/xrd+xml,application/jrd+json"}]
790 {:ok, %Tesla.Env{status: 200, body: ""}}
793 def get("http://framatube.org/.well-known/host-meta", _, _, _) do
797 body: File.read!("test/fixtures/tesla_mock/framatube.org_host_meta")
802 "http://framatube.org/main/xrd?uri=acct:framasoft@framatube.org",
805 [{"accept", "application/xrd+xml,application/jrd+json"}]
810 headers: [{"content-type", "application/json"}],
811 body: File.read!("test/fixtures/tesla_mock/framasoft@framatube.org.json")
815 def get("http://gnusocial.de/.well-known/host-meta", _, _, _) do
819 body: File.read!("test/fixtures/tesla_mock/gnusocial.de_host_meta")
824 "http://gnusocial.de/main/xrd?uri=winterdienst@gnusocial.de",
827 [{"accept", "application/xrd+xml,application/jrd+json"}]
832 body: File.read!("test/fixtures/tesla_mock/winterdienst_webfinger.json"),
833 headers: activitypub_object_headers()
837 def get("http://status.alpicola.com/.well-known/host-meta", _, _, _) do
841 body: File.read!("test/fixtures/tesla_mock/status.alpicola.com_host_meta")
845 def get("http://macgirvin.com/.well-known/host-meta", _, _, _) do
849 body: File.read!("test/fixtures/tesla_mock/macgirvin.com_host_meta")
853 def get("http://gerzilla.de/.well-known/host-meta", _, _, _) do
857 body: File.read!("test/fixtures/tesla_mock/gerzilla.de_host_meta")
862 "https://gerzilla.de/xrd/?uri=acct:kaniini@gerzilla.de",
865 [{"accept", "application/xrd+xml,application/jrd+json"}]
870 headers: [{"content-type", "application/json"}],
871 body: File.read!("test/fixtures/tesla_mock/kaniini@gerzilla.de.json")
876 "https://social.heldscal.la/.well-known/webfinger?resource=https://social.heldscal.la/user/23211",
884 body: File.read!("test/fixtures/tesla_mock/https___social.heldscal.la_user_23211.xml")
888 def get("http://social.heldscal.la/.well-known/host-meta", _, _, _) do
892 body: File.read!("test/fixtures/tesla_mock/social.heldscal.la_host_meta")
896 def get("https://social.heldscal.la/.well-known/host-meta", _, _, _) do
900 body: File.read!("test/fixtures/tesla_mock/social.heldscal.la_host_meta")
904 def get("https://mastodon.social/users/lambadalambda", _, _, _) do
908 body: File.read!("test/fixtures/lambadalambda.json"),
909 headers: activitypub_object_headers()
913 def get("https://apfed.club/channel/indio", _, _, _) do
917 body: File.read!("test/fixtures/tesla_mock/osada-user-indio.json"),
918 headers: activitypub_object_headers()
922 def get("https://social.heldscal.la/user/23211", _, _, [{"accept", "application/activity+json"}]) do
923 {:ok, Tesla.Mock.json(%{"id" => "https://social.heldscal.la/user/23211"}, status: 200)}
926 def get("http://example.com/ogp", _, _, _) do
927 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
930 def get("https://example.com/ogp", _, _, _) do
931 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
934 def get("https://pleroma.local/notice/9kCP7V", _, _, _) do
935 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
938 def get("http://localhost:4001/users/masto_closed/followers", _, _, _) do
942 body: File.read!("test/fixtures/users_mock/masto_closed_followers.json"),
943 headers: activitypub_object_headers()
947 def get("http://localhost:4001/users/masto_closed/followers?page=1", _, _, _) do
951 body: File.read!("test/fixtures/users_mock/masto_closed_followers_page.json"),
952 headers: activitypub_object_headers()
956 def get("http://localhost:4001/users/masto_closed/following", _, _, _) do
960 body: File.read!("test/fixtures/users_mock/masto_closed_following.json"),
961 headers: activitypub_object_headers()
965 def get("http://localhost:4001/users/masto_closed/following?page=1", _, _, _) do
969 body: File.read!("test/fixtures/users_mock/masto_closed_following_page.json"),
970 headers: activitypub_object_headers()
974 def get("http://localhost:8080/followers/fuser3", _, _, _) do
978 body: File.read!("test/fixtures/users_mock/friendica_followers.json"),
979 headers: activitypub_object_headers()
983 def get("http://localhost:8080/following/fuser3", _, _, _) do
987 body: File.read!("test/fixtures/users_mock/friendica_following.json"),
988 headers: activitypub_object_headers()
992 def get("http://localhost:4001/users/fuser2/followers", _, _, _) do
996 body: File.read!("test/fixtures/users_mock/pleroma_followers.json"),
997 headers: activitypub_object_headers()
1001 def get("http://localhost:4001/users/fuser2/following", _, _, _) do
1005 body: File.read!("test/fixtures/users_mock/pleroma_following.json"),
1006 headers: activitypub_object_headers()
1010 def get("http://domain-with-errors:4001/users/fuser1/followers", _, _, _) do
1018 def get("http://domain-with-errors:4001/users/fuser1/following", _, _, _) do
1026 def get("http://example.com/ogp-missing-data", _, _, _) do
1030 body: File.read!("test/fixtures/rich_media/ogp-missing-data.html")
1034 def get("https://example.com/ogp-missing-data", _, _, _) do
1038 body: File.read!("test/fixtures/rich_media/ogp-missing-data.html")
1042 def get("http://example.com/malformed", _, _, _) do
1044 %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/malformed-data.html")}}
1047 def get("http://example.com/empty", _, _, _) do
1048 {:ok, %Tesla.Env{status: 200, body: "hello"}}
1051 def get("http://404.site" <> _, _, _, _) do
1060 "https://zetsubou.xn--q9jyb4c/.well-known/webfinger?resource=acct:lain@zetsubou.xn--q9jyb4c",
1063 [{"accept", "application/xrd+xml,application/jrd+json"}]
1068 body: File.read!("test/fixtures/lain.xml")
1073 "https://zetsubou.xn--q9jyb4c/.well-known/webfinger?resource=acct:https://zetsubou.xn--q9jyb4c/users/lain",
1076 [{"accept", "application/xrd+xml,application/jrd+json"}]
1081 body: File.read!("test/fixtures/lain.xml")
1086 "https://zetsubou.xn--q9jyb4c/.well-known/host-meta",
1094 body: File.read!("test/fixtures/host-meta-zetsubou.xn--q9jyb4c.xml")
1098 def get("https://info.pleroma.site/activity.json", _, _, [
1099 {"accept", "application/activity+json"}
1104 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity.json"),
1105 headers: activitypub_object_headers()
1109 def get("https://info.pleroma.site/activity.json", _, _, _) do
1110 {:ok, %Tesla.Env{status: 404, body: ""}}
1113 def get("https://info.pleroma.site/activity2.json", _, _, [
1114 {"accept", "application/activity+json"}
1119 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity2.json"),
1120 headers: activitypub_object_headers()
1124 def get("https://info.pleroma.site/activity2.json", _, _, _) do
1125 {:ok, %Tesla.Env{status: 404, body: ""}}
1128 def get("https://info.pleroma.site/activity3.json", _, _, [
1129 {"accept", "application/activity+json"}
1134 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity3.json"),
1135 headers: activitypub_object_headers()
1139 def get("https://info.pleroma.site/activity3.json", _, _, _) do
1140 {:ok, %Tesla.Env{status: 404, body: ""}}
1143 def get("https://mstdn.jp/.well-known/webfinger?resource=acct:kpherox@mstdn.jp", _, _, _) do
1147 body: File.read!("test/fixtures/tesla_mock/kpherox@mstdn.jp.xml")
1151 def get("https://10.111.10.1/notice/9kCP7V", _, _, _) do
1152 {:ok, %Tesla.Env{status: 200, body: ""}}
1155 def get("https://172.16.32.40/notice/9kCP7V", _, _, _) do
1156 {:ok, %Tesla.Env{status: 200, body: ""}}
1159 def get("https://192.168.10.40/notice/9kCP7V", _, _, _) do
1160 {:ok, %Tesla.Env{status: 200, body: ""}}
1163 def get("https://www.patreon.com/posts/mastodon-2-9-and-28121681", _, _, _) do
1164 {:ok, %Tesla.Env{status: 200, body: ""}}
1167 def get("http://mastodon.example.org/@admin/99541947525187367", _, _, _) do
1171 body: File.read!("test/fixtures/mastodon-post-activity.json"),
1172 headers: activitypub_object_headers()
1176 def get("https://info.pleroma.site/activity4.json", _, _, _) do
1177 {:ok, %Tesla.Env{status: 500, body: "Error occurred"}}
1180 def get("http://example.com/rel_me/anchor", _, _, _) do
1181 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_anchor.html")}}
1184 def get("http://example.com/rel_me/anchor_nofollow", _, _, _) do
1185 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_anchor_nofollow.html")}}
1188 def get("http://example.com/rel_me/link", _, _, _) do
1189 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_link.html")}}
1192 def get("http://example.com/rel_me/null", _, _, _) do
1193 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_null.html")}}
1196 def get("https://skippers-bin.com/notes/7x9tmrp97i", _, _, _) do
1200 body: File.read!("test/fixtures/tesla_mock/misskey_poll_no_end_date.json"),
1201 headers: activitypub_object_headers()
1205 def get("https://example.org/emoji/firedfox.png", _, _, _) do
1206 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/image.jpg")}}
1209 def get("https://skippers-bin.com/users/7v1w1r8ce6", _, _, _) do
1213 body: File.read!("test/fixtures/tesla_mock/sjw.json"),
1214 headers: activitypub_object_headers()
1218 def get("https://patch.cx/users/rin", _, _, _) do
1222 body: File.read!("test/fixtures/tesla_mock/rin.json"),
1223 headers: activitypub_object_headers()
1228 "https://channels.tests.funkwhale.audio/federation/music/uploads/42342395-0208-4fee-a38d-259a6dae0871",
1236 body: File.read!("test/fixtures/tesla_mock/funkwhale_audio.json"),
1237 headers: activitypub_object_headers()
1241 def get("https://channels.tests.funkwhale.audio/federation/actors/compositions", _, _, _) do
1245 body: File.read!("test/fixtures/tesla_mock/funkwhale_channel.json"),
1246 headers: activitypub_object_headers()
1250 def get("http://example.com/rel_me/error", _, _, _) do
1251 {:ok, %Tesla.Env{status: 404, body: ""}}
1254 def get("https://relay.mastodon.host/actor", _, _, _) do
1258 body: File.read!("test/fixtures/relay/relay.json"),
1259 headers: activitypub_object_headers()
1263 def get("http://localhost:4001/", _, "", [{"accept", "text/html"}]) do
1264 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/tesla_mock/7369654.html")}}
1267 def get("https://osada.macgirvin.com/", _, "", [{"accept", "text/html"}]) do
1271 body: File.read!("test/fixtures/tesla_mock/https___osada.macgirvin.com.html")
1275 def get(url, query, body, headers) do
1277 "Mock response not implemented for GET #{inspect(url)}, #{query}, #{inspect(body)}, #{
1285 def post(url, query \\ [], body \\ [], headers \\ [])
1287 def post("https://relay.mastodon.host/inbox", _, _, _) do
1288 {:ok, %Tesla.Env{status: 200, body: ""}}
1291 def post("http://example.org/needs_refresh", _, _, _) do
1299 def post("http://mastodon.example.org/inbox", _, _, _) do
1307 def post("https://hubzilla.example.org/inbox", _, _, _) do
1315 def post("http://gs.example.org/index.php/main/salmon/user/1", _, _, _) do
1323 def post("http://200.site" <> _, _, _, _) do
1331 def post("http://connrefused.site" <> _, _, _, _) do
1332 {:error, :connrefused}
1335 def post("http://404.site" <> _, _, _, _) do
1343 def post(url, query, body, headers) do
1345 "Mock response not implemented for POST #{inspect(url)}, #{query}, #{inspect(body)}, #{
1350 # Most of the rich media mocks are missing HEAD requests, so we just return 404.
1352 "https://example.com/ogp",
1353 "https://example.com/ogp-missing-data",
1354 "https://example.com/twitter-card"
1356 def head(url, _query, _body, _headers) when url in @rich_media_mocks do
1357 {:ok, %Tesla.Env{status: 404, body: ""}}
1360 def head(url, query, body, headers) do
1362 "Mock response not implemented for HEAD #{inspect(url)}, #{query}, #{inspect(body)}, #{