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("https://osada.macgirvin.com/.well-known/host-meta", _, _, _) do
435 def get("http://mastodon.sdf.org/.well-known/host-meta", _, _, _) do
439 body: File.read!("test/fixtures/tesla_mock/sdf.org_host_meta")
443 def get("https://mastodon.sdf.org/.well-known/host-meta", _, _, _) do
447 body: File.read!("test/fixtures/tesla_mock/sdf.org_host_meta")
452 "https://mastodon.sdf.org/.well-known/webfinger?resource=https://mastodon.sdf.org/users/snowdusk",
460 body: File.read!("test/fixtures/tesla_mock/snowdusk@sdf.org_host_meta.json")
464 def get("http://mstdn.jp/.well-known/host-meta", _, _, _) do
468 body: File.read!("test/fixtures/tesla_mock/mstdn.jp_host_meta")
472 def get("https://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/webfinger?resource=kpherox@mstdn.jp", _, _, _) do
484 body: File.read!("test/fixtures/tesla_mock/kpherox@mstdn.jp.xml")
488 def get("http://mamot.fr/.well-known/host-meta", _, _, _) do
492 body: File.read!("test/fixtures/tesla_mock/mamot.fr_host_meta")
496 def get("https://mamot.fr/.well-known/host-meta", _, _, _) do
500 body: File.read!("test/fixtures/tesla_mock/mamot.fr_host_meta")
504 def get("http://pawoo.net/.well-known/host-meta", _, _, _) do
508 body: File.read!("test/fixtures/tesla_mock/pawoo.net_host_meta")
512 def get("https://pawoo.net/.well-known/host-meta", _, _, _) do
516 body: File.read!("test/fixtures/tesla_mock/pawoo.net_host_meta")
521 "https://pawoo.net/.well-known/webfinger?resource=https://pawoo.net/users/pekorino",
529 body: File.read!("test/fixtures/tesla_mock/pekorino@pawoo.net_host_meta.json"),
530 headers: activitypub_object_headers()
534 def get("http://pleroma.soykaf.com/.well-known/host-meta", _, _, _) do
538 body: File.read!("test/fixtures/tesla_mock/soykaf.com_host_meta")
542 def get("https://pleroma.soykaf.com/.well-known/host-meta", _, _, _) do
546 body: File.read!("test/fixtures/tesla_mock/soykaf.com_host_meta")
550 def get("http://social.stopwatchingus-heidelberg.de/.well-known/host-meta", _, _, _) do
554 body: File.read!("test/fixtures/tesla_mock/stopwatchingus-heidelberg.de_host_meta")
558 def get("https://social.stopwatchingus-heidelberg.de/.well-known/host-meta", _, _, _) do
562 body: File.read!("test/fixtures/tesla_mock/stopwatchingus-heidelberg.de_host_meta")
567 "http://mastodon.example.org/@admin/99541947525187367",
575 body: File.read!("test/fixtures/mastodon-note-object.json"),
576 headers: activitypub_object_headers()
580 def get("http://mastodon.example.org/@admin/99541947525187368", _, _, _) do
588 def get("https://shitposter.club/notice/7369654", _, _, _) do
592 body: File.read!("test/fixtures/tesla_mock/7369654.html")
596 def get("https://mstdn.io/users/mayuutann", _, _, [{"accept", "application/activity+json"}]) do
600 body: File.read!("test/fixtures/tesla_mock/mayumayu.json"),
601 headers: activitypub_object_headers()
606 "https://mstdn.io/users/mayuutann/statuses/99568293732299394",
609 [{"accept", "application/activity+json"}]
614 body: File.read!("test/fixtures/tesla_mock/mayumayupost.json"),
615 headers: activitypub_object_headers()
619 def get(url, _, _, [{"accept", "application/xrd+xml,application/jrd+json"}])
621 "https://pleroma.soykaf.com/.well-known/webfinger?resource=acct:https://pleroma.soykaf.com/users/lain",
622 "https://pleroma.soykaf.com/.well-known/webfinger?resource=https://pleroma.soykaf.com/users/lain"
627 body: File.read!("test/fixtures/tesla_mock/https___pleroma.soykaf.com_users_lain.xml")
632 "https://shitposter.club/.well-known/webfinger?resource=https://shitposter.club/user/1",
635 [{"accept", "application/xrd+xml,application/jrd+json"}]
640 body: File.read!("test/fixtures/tesla_mock/https___shitposter.club_user_1.xml")
644 def get("https://testing.pleroma.lol/objects/b319022a-4946-44c5-9de9-34801f95507b", _, _, _) do
645 {:ok, %Tesla.Env{status: 200}}
649 "https://shitposter.club/.well-known/webfinger?resource=https://shitposter.club/user/5381",
652 [{"accept", "application/xrd+xml,application/jrd+json"}]
657 body: File.read!("test/fixtures/tesla_mock/spc_5381_xrd.xml")
661 def get("http://shitposter.club/.well-known/host-meta", _, _, _) do
665 body: File.read!("test/fixtures/tesla_mock/shitposter.club_host_meta")
669 def get("https://shitposter.club/notice/4027863", _, _, _) do
673 body: File.read!("test/fixtures/tesla_mock/7369654.html")
677 def get("http://social.sakamoto.gq/.well-known/host-meta", _, _, _) do
681 body: File.read!("test/fixtures/tesla_mock/social.sakamoto.gq_host_meta")
686 "https://social.sakamoto.gq/.well-known/webfinger?resource=https://social.sakamoto.gq/users/eal",
689 [{"accept", "application/xrd+xml,application/jrd+json"}]
694 body: File.read!("test/fixtures/tesla_mock/eal_sakamoto.xml")
698 def get("http://mastodon.social/.well-known/host-meta", _, _, _) do
702 body: File.read!("test/fixtures/tesla_mock/mastodon.social_host_meta")
707 "https://mastodon.social/.well-known/webfinger?resource=https://mastodon.social/users/lambadalambda",
710 [{"accept", "application/xrd+xml,application/jrd+json"}]
716 File.read!("test/fixtures/tesla_mock/https___mastodon.social_users_lambadalambda.xml")
721 "https://mastodon.social/.well-known/webfinger?resource=acct:not_found@mastodon.social",
724 [{"accept", "application/xrd+xml,application/jrd+json"}]
726 {:ok, %Tesla.Env{status: 404}}
729 def get("http://gs.example.org/.well-known/host-meta", _, _, _) do
733 body: File.read!("test/fixtures/tesla_mock/gs.example.org_host_meta")
738 "http://gs.example.org/.well-known/webfinger?resource=http://gs.example.org:4040/index.php/user/1",
741 [{"accept", "application/xrd+xml,application/jrd+json"}]
747 File.read!("test/fixtures/tesla_mock/http___gs.example.org_4040_index.php_user_1.xml")
752 "http://gs.example.org:4040/index.php/user/1",
755 [{"accept", "application/activity+json"}]
757 {:ok, %Tesla.Env{status: 406, body: ""}}
760 def get("https://squeet.me/.well-known/host-meta", _, _, _) do
762 %Tesla.Env{status: 200, body: File.read!("test/fixtures/tesla_mock/squeet.me_host_meta")}}
766 "https://squeet.me/xrd?uri=lain@squeet.me",
769 [{"accept", "application/xrd+xml,application/jrd+json"}]
774 body: File.read!("test/fixtures/tesla_mock/lain_squeet.me_webfinger.xml")
779 "https://social.heldscal.la/.well-known/webfinger?resource=acct:shp@social.heldscal.la",
782 [{"accept", "application/xrd+xml,application/jrd+json"}]
787 body: File.read!("test/fixtures/tesla_mock/shp@social.heldscal.la.xml"),
788 headers: [{"content-type", "application/xrd+xml"}]
793 "https://social.heldscal.la/.well-known/webfinger?resource=acct:invalid_content@social.heldscal.la",
796 [{"accept", "application/xrd+xml,application/jrd+json"}]
798 {:ok, %Tesla.Env{status: 200, body: "", headers: [{"content-type", "application/jrd+json"}]}}
801 def get("https://framatube.org/.well-known/host-meta", _, _, _) do
805 body: File.read!("test/fixtures/tesla_mock/framatube.org_host_meta")
810 "https://framatube.org/main/xrd?uri=acct:framasoft@framatube.org",
813 [{"accept", "application/xrd+xml,application/jrd+json"}]
818 headers: [{"content-type", "application/jrd+json"}],
819 body: File.read!("test/fixtures/tesla_mock/framasoft@framatube.org.json")
823 def get("http://gnusocial.de/.well-known/host-meta", _, _, _) do
827 body: File.read!("test/fixtures/tesla_mock/gnusocial.de_host_meta")
832 "http://gnusocial.de/main/xrd?uri=winterdienst@gnusocial.de",
835 [{"accept", "application/xrd+xml,application/jrd+json"}]
840 body: File.read!("test/fixtures/tesla_mock/winterdienst_webfinger.json"),
841 headers: activitypub_object_headers()
845 def get("https://status.alpicola.com/.well-known/host-meta", _, _, _) do
849 body: File.read!("test/fixtures/tesla_mock/status.alpicola.com_host_meta")
853 def get("https://macgirvin.com/.well-known/host-meta", _, _, _) do
857 body: File.read!("test/fixtures/tesla_mock/macgirvin.com_host_meta")
861 def get("https://gerzilla.de/.well-known/host-meta", _, _, _) do
865 body: File.read!("test/fixtures/tesla_mock/gerzilla.de_host_meta")
870 "https://gerzilla.de/xrd/?uri=acct:kaniini@gerzilla.de",
873 [{"accept", "application/xrd+xml,application/jrd+json"}]
878 headers: [{"content-type", "application/jrd+json"}],
879 body: File.read!("test/fixtures/tesla_mock/kaniini@gerzilla.de.json")
884 "https://social.heldscal.la/.well-known/webfinger?resource=https://social.heldscal.la/user/23211",
892 body: File.read!("test/fixtures/tesla_mock/https___social.heldscal.la_user_23211.xml")
896 def get("http://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://social.heldscal.la/.well-known/host-meta", _, _, _) do
908 body: File.read!("test/fixtures/tesla_mock/social.heldscal.la_host_meta")
912 def get("https://mastodon.social/users/lambadalambda", _, _, _) do
916 body: File.read!("test/fixtures/lambadalambda.json"),
917 headers: activitypub_object_headers()
921 def get("https://mastodon.social/users/lambadalambda/collections/featured", _, _, _) do
926 File.read!("test/fixtures/users_mock/masto_featured.json")
927 |> String.replace("{{domain}}", "mastodon.social")
928 |> String.replace("{{nickname}}", "lambadalambda"),
929 headers: activitypub_object_headers()
933 def get("https://apfed.club/channel/indio", _, _, _) do
937 body: File.read!("test/fixtures/tesla_mock/osada-user-indio.json"),
938 headers: activitypub_object_headers()
942 def get("https://social.heldscal.la/user/23211", _, _, [{"accept", "application/activity+json"}]) do
943 {:ok, Tesla.Mock.json(%{"id" => "https://social.heldscal.la/user/23211"}, status: 200)}
946 def get("http://example.com/ogp", _, _, _) do
947 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
950 def get("https://example.com/ogp", _, _, _) do
951 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
954 def get("https://pleroma.local/notice/9kCP7V", _, _, _) do
955 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
958 def get("http://localhost:4001/users/masto_closed/followers", _, _, _) do
962 body: File.read!("test/fixtures/users_mock/masto_closed_followers.json"),
963 headers: activitypub_object_headers()
967 def get("http://localhost:4001/users/masto_closed/followers?page=1", _, _, _) do
971 body: File.read!("test/fixtures/users_mock/masto_closed_followers_page.json"),
972 headers: activitypub_object_headers()
976 def get("http://localhost:4001/users/masto_closed/following", _, _, _) do
980 body: File.read!("test/fixtures/users_mock/masto_closed_following.json"),
981 headers: activitypub_object_headers()
985 def get("http://localhost:4001/users/masto_closed/following?page=1", _, _, _) do
989 body: File.read!("test/fixtures/users_mock/masto_closed_following_page.json"),
990 headers: activitypub_object_headers()
994 def get("http://localhost:8080/followers/fuser3", _, _, _) do
998 body: File.read!("test/fixtures/users_mock/friendica_followers.json"),
999 headers: activitypub_object_headers()
1003 def get("http://localhost:8080/following/fuser3", _, _, _) do
1007 body: File.read!("test/fixtures/users_mock/friendica_following.json"),
1008 headers: activitypub_object_headers()
1012 def get("http://localhost:4001/users/fuser2/followers", _, _, _) do
1016 body: File.read!("test/fixtures/users_mock/pleroma_followers.json"),
1017 headers: activitypub_object_headers()
1021 def get("http://localhost:4001/users/fuser2/following", _, _, _) do
1025 body: File.read!("test/fixtures/users_mock/pleroma_following.json"),
1026 headers: activitypub_object_headers()
1030 def get("http://domain-with-errors:4001/users/fuser1/followers", _, _, _) do
1038 def get("http://domain-with-errors:4001/users/fuser1/following", _, _, _) do
1046 def get("http://example.com/ogp-missing-data", _, _, _) do
1050 body: File.read!("test/fixtures/rich_media/ogp-missing-data.html")
1054 def get("https://example.com/ogp-missing-data", _, _, _) do
1058 body: File.read!("test/fixtures/rich_media/ogp-missing-data.html")
1062 def get("http://example.com/malformed", _, _, _) do
1064 %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/malformed-data.html")}}
1067 def get("http://example.com/empty", _, _, _) do
1068 {:ok, %Tesla.Env{status: 200, body: "hello"}}
1071 def get("http://404.site" <> _, _, _, _) do
1080 "https://zetsubou.xn--q9jyb4c/.well-known/webfinger?resource=acct:lain@zetsubou.xn--q9jyb4c",
1083 [{"accept", "application/xrd+xml,application/jrd+json"}]
1088 body: File.read!("test/fixtures/lain.xml"),
1089 headers: [{"content-type", "application/xrd+xml"}]
1094 "https://zetsubou.xn--q9jyb4c/.well-known/webfinger?resource=acct:https://zetsubou.xn--q9jyb4c/users/lain",
1097 [{"accept", "application/xrd+xml,application/jrd+json"}]
1102 body: File.read!("test/fixtures/lain.xml"),
1103 headers: [{"content-type", "application/xrd+xml"}]
1107 def get("http://zetsubou.xn--q9jyb4c/.well-known/host-meta", _, _, _) do
1111 body: File.read!("test/fixtures/host-meta-zetsubou.xn--q9jyb4c.xml")
1116 "https://zetsubou.xn--q9jyb4c/.well-known/host-meta",
1124 body: File.read!("test/fixtures/host-meta-zetsubou.xn--q9jyb4c.xml")
1128 def get("http://lm.kazv.moe/.well-known/host-meta", _, _, _) do
1132 body: File.read!("test/fixtures/tesla_mock/lm.kazv.moe_host_meta")
1136 def get("https://lm.kazv.moe/.well-known/host-meta", _, _, _) do
1140 body: File.read!("test/fixtures/tesla_mock/lm.kazv.moe_host_meta")
1145 "https://lm.kazv.moe/.well-known/webfinger?resource=acct:mewmew@lm.kazv.moe",
1148 [{"accept", "application/xrd+xml,application/jrd+json"}]
1153 body: File.read!("test/fixtures/tesla_mock/https___lm.kazv.moe_users_mewmew.xml"),
1154 headers: [{"content-type", "application/xrd+xml"}]
1158 def get("https://lm.kazv.moe/users/mewmew", _, _, _) do
1162 body: File.read!("test/fixtures/tesla_mock/mewmew@lm.kazv.moe.json"),
1163 headers: activitypub_object_headers()
1167 def get("https://lm.kazv.moe/users/mewmew/collections/featured", _, _, _) do
1172 File.read!("test/fixtures/users_mock/masto_featured.json")
1173 |> String.replace("{{domain}}", "lm.kazv.moe")
1174 |> String.replace("{{nickname}}", "mewmew"),
1175 headers: [{"content-type", "application/activity+json"}]
1179 def get("https://info.pleroma.site/activity.json", _, _, [
1180 {"accept", "application/activity+json"}
1185 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity.json"),
1186 headers: activitypub_object_headers()
1190 def get("https://info.pleroma.site/activity.json", _, _, _) do
1191 {:ok, %Tesla.Env{status: 404, body: ""}}
1194 def get("https://info.pleroma.site/activity2.json", _, _, [
1195 {"accept", "application/activity+json"}
1200 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity2.json"),
1201 headers: activitypub_object_headers()
1205 def get("https://info.pleroma.site/activity2.json", _, _, _) do
1206 {:ok, %Tesla.Env{status: 404, body: ""}}
1209 def get("https://info.pleroma.site/activity3.json", _, _, [
1210 {"accept", "application/activity+json"}
1215 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity3.json"),
1216 headers: activitypub_object_headers()
1220 def get("https://info.pleroma.site/activity3.json", _, _, _) do
1221 {:ok, %Tesla.Env{status: 404, body: ""}}
1224 def get("https://mstdn.jp/.well-known/webfinger?resource=acct:kpherox@mstdn.jp", _, _, _) do
1228 body: File.read!("test/fixtures/tesla_mock/kpherox@mstdn.jp.xml"),
1229 headers: [{"content-type", "application/xrd+xml"}]
1233 def get("https://10.111.10.1/notice/9kCP7V", _, _, _) do
1234 {:ok, %Tesla.Env{status: 200, body: ""}}
1237 def get("https://172.16.32.40/notice/9kCP7V", _, _, _) do
1238 {:ok, %Tesla.Env{status: 200, body: ""}}
1241 def get("https://192.168.10.40/notice/9kCP7V", _, _, _) do
1242 {:ok, %Tesla.Env{status: 200, body: ""}}
1245 def get("https://www.patreon.com/posts/mastodon-2-9-and-28121681", _, _, _) do
1246 {:ok, %Tesla.Env{status: 200, body: ""}}
1249 def get("http://mastodon.example.org/@admin/99541947525187367", _, _, _) do
1253 body: File.read!("test/fixtures/mastodon-post-activity.json"),
1254 headers: activitypub_object_headers()
1258 def get("https://info.pleroma.site/activity4.json", _, _, _) do
1259 {:ok, %Tesla.Env{status: 500, body: "Error occurred"}}
1262 def get("http://example.com/rel_me/anchor", _, _, _) do
1263 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_anchor.html")}}
1266 def get("http://example.com/rel_me/anchor_nofollow", _, _, _) do
1267 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_anchor_nofollow.html")}}
1270 def get("http://example.com/rel_me/link", _, _, _) do
1271 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_link.html")}}
1274 def get("http://example.com/rel_me/null", _, _, _) do
1275 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_null.html")}}
1278 def get("https://skippers-bin.com/notes/7x9tmrp97i", _, _, _) do
1282 body: File.read!("test/fixtures/tesla_mock/misskey_poll_no_end_date.json"),
1283 headers: activitypub_object_headers()
1287 def get("https://example.org/emoji/firedfox.png", _, _, _) do
1288 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/image.jpg")}}
1291 def get("https://skippers-bin.com/users/7v1w1r8ce6", _, _, _) do
1295 body: File.read!("test/fixtures/tesla_mock/sjw.json"),
1296 headers: activitypub_object_headers()
1300 def get("https://patch.cx/users/rin", _, _, _) do
1304 body: File.read!("test/fixtures/tesla_mock/rin.json"),
1305 headers: activitypub_object_headers()
1310 "https://channels.tests.funkwhale.audio/federation/music/uploads/42342395-0208-4fee-a38d-259a6dae0871",
1318 body: File.read!("test/fixtures/tesla_mock/funkwhale_audio.json"),
1319 headers: activitypub_object_headers()
1323 def get("https://channels.tests.funkwhale.audio/federation/actors/compositions", _, _, _) do
1327 body: File.read!("test/fixtures/tesla_mock/funkwhale_channel.json"),
1328 headers: activitypub_object_headers()
1332 def get("http://example.com/rel_me/error", _, _, _) do
1333 {:ok, %Tesla.Env{status: 404, body: ""}}
1336 def get("https://relay.mastodon.host/actor", _, _, _) do
1340 body: File.read!("test/fixtures/relay/relay.json"),
1341 headers: activitypub_object_headers()
1345 def get("http://localhost:4001/", _, "", [{"accept", "text/html"}]) do
1346 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/tesla_mock/7369654.html")}}
1349 def get("https://osada.macgirvin.com/", _, "", [{"accept", "text/html"}]) do
1353 body: File.read!("test/fixtures/tesla_mock/https___osada.macgirvin.com.html")
1357 def get("https://patch.cx/objects/a399c28e-c821-4820-bc3e-4afeb044c16f", _, _, _) do
1361 body: File.read!("test/fixtures/tesla_mock/emoji-in-summary.json"),
1362 headers: activitypub_object_headers()
1366 def get(url, query, body, headers) do
1368 "Mock response not implemented for GET #{inspect(url)}, #{query}, #{inspect(body)}, #{inspect(headers)}"}
1374 def post(url, query \\ [], body \\ [], headers \\ [])
1376 def post("https://relay.mastodon.host/inbox", _, _, _) do
1377 {:ok, %Tesla.Env{status: 200, body: ""}}
1380 def post("http://example.org/needs_refresh", _, _, _) do
1388 def post("http://mastodon.example.org/inbox", _, _, _) do
1396 def post("https://hubzilla.example.org/inbox", _, _, _) do
1404 def post("http://gs.example.org/index.php/main/salmon/user/1", _, _, _) do
1412 def post("http://200.site" <> _, _, _, _) do
1420 def post("http://connrefused.site" <> _, _, _, _) do
1421 {:error, :connrefused}
1424 def post("http://404.site" <> _, _, _, _) do
1432 def post(url, query, body, headers) do
1434 "Mock response not implemented for POST #{inspect(url)}, #{query}, #{inspect(body)}, #{inspect(headers)}"}
1437 # Most of the rich media mocks are missing HEAD requests, so we just return 404.
1439 "https://example.com/ogp",
1440 "https://example.com/ogp-missing-data",
1441 "https://example.com/twitter-card"
1443 def head(url, _query, _body, _headers) when url in @rich_media_mocks do
1444 {:ok, %Tesla.Env{status: 404, body: ""}}
1447 def head(url, query, body, headers) do
1449 "Mock response not implemented for HEAD #{inspect(url)}, #{query}, #{inspect(body)}, #{inspect(headers)}"}