1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule HttpRequestMock do
17 with {:ok, res} <- apply(__MODULE__, method, [url, query, body, headers]) do
21 with {:error, message} <- error do
31 def get(url, query \\ [], body \\ [], headers \\ [])
33 def get("https://osada.macgirvin.com/channel/mike", _, _, _) do
37 body: File.read!("test/fixtures/tesla_mock/https___osada.macgirvin.com_channel_mike.json")
41 def get("https://shitposter.club/users/moonman", _, _, _) do
45 body: File.read!("test/fixtures/tesla_mock/moonman@shitposter.club.json")
49 def get("https://mastodon.social/users/emelie/statuses/101849165031453009", _, _, _) do
53 body: File.read!("test/fixtures/tesla_mock/status.emelie.json")
57 def get("https://mastodon.social/users/emelie/statuses/101849165031453404", _, _, _) do
65 def get("https://mastodon.social/users/emelie", _, _, _) do
69 body: File.read!("test/fixtures/tesla_mock/emelie.json")
73 def get("https://mastodon.social/users/not_found", _, _, _) do
74 {:ok, %Tesla.Env{status: 404}}
77 def get("https://mastodon.sdf.org/users/rinpatch", _, _, _) do
81 body: File.read!("test/fixtures/tesla_mock/rinpatch.json")
86 "https://mastodon.social/.well-known/webfinger?resource=https://mastodon.social/users/emelie",
94 body: File.read!("test/fixtures/tesla_mock/webfinger_emelie.json")
98 def get("https://mastodon.social/users/emelie.atom", _, _, _) do
102 body: File.read!("test/fixtures/tesla_mock/emelie.atom")
107 "https://osada.macgirvin.com/.well-known/webfinger?resource=acct:mike@osada.macgirvin.com",
110 Accept: "application/xrd+xml,application/jrd+json"
115 body: File.read!("test/fixtures/tesla_mock/mike@osada.macgirvin.com.json")
120 "https://social.heldscal.la/.well-known/webfinger?resource=https://social.heldscal.la/user/29191",
123 Accept: "application/xrd+xml,application/jrd+json"
128 body: File.read!("test/fixtures/tesla_mock/https___social.heldscal.la_user_29191.xml")
132 def get("https://pawoo.net/users/pekorino.atom", _, _, _) do
136 body: File.read!("test/fixtures/tesla_mock/https___pawoo.net_users_pekorino.atom")
141 "https://pawoo.net/.well-known/webfinger?resource=acct:https://pawoo.net/users/pekorino",
144 Accept: "application/xrd+xml,application/jrd+json"
149 body: File.read!("test/fixtures/tesla_mock/https___pawoo.net_users_pekorino.xml")
154 "https://social.stopwatchingus-heidelberg.de/api/statuses/user_timeline/18330.atom",
162 body: File.read!("test/fixtures/tesla_mock/atarifrosch_feed.xml")
167 "https://social.stopwatchingus-heidelberg.de/.well-known/webfinger?resource=acct:https://social.stopwatchingus-heidelberg.de/user/18330",
170 Accept: "application/xrd+xml,application/jrd+json"
175 body: File.read!("test/fixtures/tesla_mock/atarifrosch_webfinger.xml")
179 def get("https://mamot.fr/users/Skruyb.atom", _, _, _) do
183 body: File.read!("test/fixtures/tesla_mock/https___mamot.fr_users_Skruyb.atom")
188 "https://mamot.fr/.well-known/webfinger?resource=acct:https://mamot.fr/users/Skruyb",
191 Accept: "application/xrd+xml,application/jrd+json"
196 body: File.read!("test/fixtures/tesla_mock/skruyb@mamot.fr.atom")
201 "https://social.heldscal.la/.well-known/webfinger?resource=nonexistant@social.heldscal.la",
204 Accept: "application/xrd+xml,application/jrd+json"
209 body: File.read!("test/fixtures/tesla_mock/nonexistant@social.heldscal.la.xml")
214 "https://squeet.me/xrd/?uri=lain@squeet.me",
217 Accept: "application/xrd+xml,application/jrd+json"
222 body: File.read!("test/fixtures/tesla_mock/lain_squeet.me_webfinger.xml")
227 "https://mst3k.interlinked.me/users/luciferMysticus",
230 Accept: "application/activity+json"
235 body: File.read!("test/fixtures/tesla_mock/lucifermysticus.json")
239 def get("https://prismo.news/@mxb", _, _, _) do
243 body: File.read!("test/fixtures/tesla_mock/https___prismo.news__mxb.json")
248 "https://hubzilla.example.org/channel/kaniini",
251 Accept: "application/activity+json"
256 body: File.read!("test/fixtures/tesla_mock/kaniini@hubzilla.example.org.json")
260 def get("https://niu.moe/users/rye", _, _, Accept: "application/activity+json") do
264 body: File.read!("test/fixtures/tesla_mock/rye.json")
268 def get("https://n1u.moe/users/rye", _, _, Accept: "application/activity+json") do
272 body: File.read!("test/fixtures/tesla_mock/rye.json")
276 def get("http://mastodon.example.org/users/admin/statuses/100787282858396771", _, _, _) do
282 "test/fixtures/tesla_mock/http___mastodon.example.org_users_admin_status_1234.json"
287 def get("https://puckipedia.com/", _, _, Accept: "application/activity+json") do
291 body: File.read!("test/fixtures/tesla_mock/puckipedia.com.json")
295 def get("https://peertube.moe/accounts/7even", _, _, _) do
299 body: File.read!("test/fixtures/tesla_mock/7even.json")
303 def get("https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3", _, _, _) do
307 body: File.read!("test/fixtures/tesla_mock/peertube.moe-vid.json")
311 def get("https://mobilizon.org/events/252d5816-00a3-4a89-a66f-15bf65c33e39", _, _,
312 Accept: "application/activity+json"
317 body: File.read!("test/fixtures/tesla_mock/mobilizon.org-event.json")
321 def get("https://mobilizon.org/@tcit", _, _, Accept: "application/activity+json") do
325 body: File.read!("test/fixtures/tesla_mock/mobilizon.org-user.json")
329 def get("https://baptiste.gelez.xyz/@/BaptisteGelez", _, _, _) do
333 body: File.read!("test/fixtures/tesla_mock/baptiste.gelex.xyz-user.json")
337 def get("https://baptiste.gelez.xyz/~/PlumeDevelopment/this-month-in-plume-june-2018/", _, _, _) do
341 body: File.read!("test/fixtures/tesla_mock/baptiste.gelex.xyz-article.json")
345 def get("https://wedistribute.org/wp-json/pterotype/v1/object/85810", _, _, _) do
349 body: File.read!("test/fixtures/tesla_mock/wedistribute-article.json")
353 def get("https://wedistribute.org/wp-json/pterotype/v1/actor/-blog", _, _, _) do
357 body: File.read!("test/fixtures/tesla_mock/wedistribute-user.json")
361 def get("http://mastodon.example.org/users/admin", _, _, Accept: "application/activity+json") do
365 body: File.read!("test/fixtures/tesla_mock/admin@mastdon.example.org.json")
369 def get("http://mastodon.example.org/users/relay", _, _, Accept: "application/activity+json") do
373 body: File.read!("test/fixtures/tesla_mock/relay@mastdon.example.org.json")
377 def get("http://mastodon.example.org/users/gargron", _, _, Accept: "application/activity+json") do
381 def get("http://osada.macgirvin.com/.well-known/host-meta", _, _, _) do
389 def get("https://osada.macgirvin.com/.well-known/host-meta", _, _, _) do
397 def get("http://mastodon.sdf.org/.well-known/host-meta", _, _, _) do
401 body: File.read!("test/fixtures/tesla_mock/sdf.org_host_meta")
405 def get("https://mastodon.sdf.org/.well-known/host-meta", _, _, _) do
409 body: File.read!("test/fixtures/tesla_mock/sdf.org_host_meta")
414 "https://mastodon.sdf.org/.well-known/webfinger?resource=https://mastodon.sdf.org/users/snowdusk",
422 body: File.read!("test/fixtures/tesla_mock/snowdusk@sdf.org_host_meta.json")
426 def get("http://mstdn.jp/.well-known/host-meta", _, _, _) do
430 body: File.read!("test/fixtures/tesla_mock/mstdn.jp_host_meta")
434 def get("https://mstdn.jp/.well-known/host-meta", _, _, _) do
438 body: File.read!("test/fixtures/tesla_mock/mstdn.jp_host_meta")
442 def get("https://mstdn.jp/.well-known/webfinger?resource=kpherox@mstdn.jp", _, _, _) do
446 body: File.read!("test/fixtures/tesla_mock/kpherox@mstdn.jp.xml")
450 def get("http://mamot.fr/.well-known/host-meta", _, _, _) do
454 body: File.read!("test/fixtures/tesla_mock/mamot.fr_host_meta")
458 def get("https://mamot.fr/.well-known/host-meta", _, _, _) do
462 body: File.read!("test/fixtures/tesla_mock/mamot.fr_host_meta")
467 "https://mamot.fr/.well-known/webfinger?resource=https://mamot.fr/users/Skruyb",
475 body: File.read!("test/fixtures/tesla_mock/skruyb@mamot.fr.atom")
479 def get("http://pawoo.net/.well-known/host-meta", _, _, _) do
483 body: File.read!("test/fixtures/tesla_mock/pawoo.net_host_meta")
487 def get("https://pawoo.net/.well-known/host-meta", _, _, _) do
491 body: File.read!("test/fixtures/tesla_mock/pawoo.net_host_meta")
496 "https://pawoo.net/.well-known/webfinger?resource=https://pawoo.net/users/pekorino",
504 body: File.read!("test/fixtures/tesla_mock/pekorino@pawoo.net_host_meta.json")
508 def get("http://zetsubou.xn--q9jyb4c/.well-known/host-meta", _, _, _) do
512 body: File.read!("test/fixtures/tesla_mock/xn--q9jyb4c_host_meta")
516 def get("https://zetsubou.xn--q9jyb4c/.well-known/host-meta", _, _, _) do
520 body: File.read!("test/fixtures/tesla_mock/xn--q9jyb4c_host_meta")
524 def get("http://pleroma.soykaf.com/.well-known/host-meta", _, _, _) do
528 body: File.read!("test/fixtures/tesla_mock/soykaf.com_host_meta")
532 def get("https://pleroma.soykaf.com/.well-known/host-meta", _, _, _) do
536 body: File.read!("test/fixtures/tesla_mock/soykaf.com_host_meta")
540 def get("http://social.stopwatchingus-heidelberg.de/.well-known/host-meta", _, _, _) do
544 body: File.read!("test/fixtures/tesla_mock/stopwatchingus-heidelberg.de_host_meta")
548 def get("https://social.stopwatchingus-heidelberg.de/.well-known/host-meta", _, _, _) do
552 body: File.read!("test/fixtures/tesla_mock/stopwatchingus-heidelberg.de_host_meta")
557 "http://mastodon.example.org/@admin/99541947525187367",
560 Accept: "application/activity+json"
565 body: File.read!("test/fixtures/mastodon-note-object.json")
569 def get("http://mastodon.example.org/@admin/99541947525187368", _, _, _) do
577 def get("https://shitposter.club/notice/7369654", _, _, _) do
581 body: File.read!("test/fixtures/tesla_mock/7369654.html")
585 def get("https://mstdn.io/users/mayuutann", _, _, Accept: "application/activity+json") do
589 body: File.read!("test/fixtures/tesla_mock/mayumayu.json")
594 "https://mstdn.io/users/mayuutann/statuses/99568293732299394",
597 Accept: "application/activity+json"
602 body: File.read!("test/fixtures/tesla_mock/mayumayupost.json")
606 def get("https://pleroma.soykaf.com/users/lain/feed.atom", _, _, _) do
612 "test/fixtures/tesla_mock/https___pleroma.soykaf.com_users_lain_feed.atom.xml"
617 def get(url, _, _, Accept: "application/xrd+xml,application/jrd+json")
619 "https://pleroma.soykaf.com/.well-known/webfinger?resource=acct:https://pleroma.soykaf.com/users/lain",
620 "https://pleroma.soykaf.com/.well-known/webfinger?resource=https://pleroma.soykaf.com/users/lain"
625 body: File.read!("test/fixtures/tesla_mock/https___pleroma.soykaf.com_users_lain.xml")
629 def get("https://shitposter.club/api/statuses/user_timeline/1.atom", _, _, _) do
635 "test/fixtures/tesla_mock/https___shitposter.club_api_statuses_user_timeline_1.atom.xml"
641 "https://shitposter.club/.well-known/webfinger?resource=https://shitposter.club/user/1",
644 Accept: "application/xrd+xml,application/jrd+json"
649 body: File.read!("test/fixtures/tesla_mock/https___shitposter.club_user_1.xml")
653 def get("https://shitposter.club/notice/2827873", _, _, _) do
657 body: File.read!("test/fixtures/tesla_mock/https___shitposter.club_notice_2827873.json")
661 def get("https://shitposter.club/api/statuses/show/2827873.atom", _, _, _) do
667 "test/fixtures/tesla_mock/https___shitposter.club_api_statuses_show_2827873.atom.xml"
672 def get("https://testing.pleroma.lol/objects/b319022a-4946-44c5-9de9-34801f95507b", _, _, _) do
673 {:ok, %Tesla.Env{status: 200}}
676 def get("https://shitposter.club/api/statuses/user_timeline/5381.atom", _, _, _) do
680 body: File.read!("test/fixtures/tesla_mock/spc_5381.atom")
685 "https://shitposter.club/.well-known/webfinger?resource=https://shitposter.club/user/5381",
688 Accept: "application/xrd+xml,application/jrd+json"
693 body: File.read!("test/fixtures/tesla_mock/spc_5381_xrd.xml")
697 def get("http://shitposter.club/.well-known/host-meta", _, _, _) do
701 body: File.read!("test/fixtures/tesla_mock/shitposter.club_host_meta")
705 def get("https://shitposter.club/api/statuses/show/7369654.atom", _, _, _) do
709 body: File.read!("test/fixtures/tesla_mock/7369654.atom")
713 def get("https://shitposter.club/notice/4027863", _, _, _) do
717 body: File.read!("test/fixtures/tesla_mock/7369654.html")
721 def get("https://social.sakamoto.gq/users/eal/feed.atom", _, _, _) do
725 body: File.read!("test/fixtures/tesla_mock/sakamoto_eal_feed.atom")
729 def get("http://social.sakamoto.gq/.well-known/host-meta", _, _, _) do
733 body: File.read!("test/fixtures/tesla_mock/social.sakamoto.gq_host_meta")
738 "https://social.sakamoto.gq/.well-known/webfinger?resource=https://social.sakamoto.gq/users/eal",
741 Accept: "application/xrd+xml,application/jrd+json"
746 body: File.read!("test/fixtures/tesla_mock/eal_sakamoto.xml")
751 "https://social.sakamoto.gq/objects/0ccc1a2c-66b0-4305-b23a-7f7f2b040056",
754 Accept: "application/atom+xml"
756 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/tesla_mock/sakamoto.atom")}}
759 def get("http://mastodon.social/.well-known/host-meta", _, _, _) do
763 body: File.read!("test/fixtures/tesla_mock/mastodon.social_host_meta")
768 "https://mastodon.social/.well-known/webfinger?resource=https://mastodon.social/users/lambadalambda",
771 Accept: "application/xrd+xml,application/jrd+json"
777 File.read!("test/fixtures/tesla_mock/https___mastodon.social_users_lambadalambda.xml")
781 def get("http://gs.example.org/.well-known/host-meta", _, _, _) do
785 body: File.read!("test/fixtures/tesla_mock/gs.example.org_host_meta")
790 "http://gs.example.org/.well-known/webfinger?resource=http://gs.example.org:4040/index.php/user/1",
793 Accept: "application/xrd+xml,application/jrd+json"
799 File.read!("test/fixtures/tesla_mock/http___gs.example.org_4040_index.php_user_1.xml")
804 "http://gs.example.org:4040/index.php/user/1",
807 Accept: "application/activity+json"
809 {:ok, %Tesla.Env{status: 406, body: ""}}
812 def get("http://gs.example.org/index.php/api/statuses/user_timeline/1.atom", _, _, _) do
818 "test/fixtures/tesla_mock/http__gs.example.org_index.php_api_statuses_user_timeline_1.atom.xml"
823 def get("https://social.heldscal.la/api/statuses/user_timeline/29191.atom", _, _, _) do
829 "test/fixtures/tesla_mock/https___social.heldscal.la_api_statuses_user_timeline_29191.atom.xml"
834 def get("http://squeet.me/.well-known/host-meta", _, _, _) do
836 %Tesla.Env{status: 200, body: File.read!("test/fixtures/tesla_mock/squeet.me_host_meta")}}
840 "https://squeet.me/xrd?uri=lain@squeet.me",
843 Accept: "application/xrd+xml,application/jrd+json"
848 body: File.read!("test/fixtures/tesla_mock/lain_squeet.me_webfinger.xml")
853 "https://social.heldscal.la/.well-known/webfinger?resource=shp@social.heldscal.la",
856 Accept: "application/xrd+xml,application/jrd+json"
861 body: File.read!("test/fixtures/tesla_mock/shp@social.heldscal.la.xml")
866 "https://social.heldscal.la/.well-known/webfinger?resource=invalid_content@social.heldscal.la",
869 Accept: "application/xrd+xml,application/jrd+json"
871 {:ok, %Tesla.Env{status: 200, body: ""}}
874 def get("http://framatube.org/.well-known/host-meta", _, _, _) do
878 body: File.read!("test/fixtures/tesla_mock/framatube.org_host_meta")
883 "http://framatube.org/main/xrd?uri=framasoft@framatube.org",
886 Accept: "application/xrd+xml,application/jrd+json"
891 headers: [{"content-type", "application/json"}],
892 body: File.read!("test/fixtures/tesla_mock/framasoft@framatube.org.json")
896 def get("http://gnusocial.de/.well-known/host-meta", _, _, _) do
900 body: File.read!("test/fixtures/tesla_mock/gnusocial.de_host_meta")
905 "http://gnusocial.de/main/xrd?uri=winterdienst@gnusocial.de",
908 Accept: "application/xrd+xml,application/jrd+json"
913 body: File.read!("test/fixtures/tesla_mock/winterdienst_webfinger.json")
917 def get("http://status.alpicola.com/.well-known/host-meta", _, _, _) do
921 body: File.read!("test/fixtures/tesla_mock/status.alpicola.com_host_meta")
925 def get("http://macgirvin.com/.well-known/host-meta", _, _, _) do
929 body: File.read!("test/fixtures/tesla_mock/macgirvin.com_host_meta")
933 def get("http://gerzilla.de/.well-known/host-meta", _, _, _) do
937 body: File.read!("test/fixtures/tesla_mock/gerzilla.de_host_meta")
942 "https://gerzilla.de/xrd/?uri=kaniini@gerzilla.de",
945 Accept: "application/xrd+xml,application/jrd+json"
950 headers: [{"content-type", "application/json"}],
951 body: File.read!("test/fixtures/tesla_mock/kaniini@gerzilla.de.json")
955 def get("https://social.heldscal.la/api/statuses/user_timeline/23211.atom", _, _, _) do
961 "test/fixtures/tesla_mock/https___social.heldscal.la_api_statuses_user_timeline_23211.atom.xml"
967 "https://social.heldscal.la/.well-known/webfinger?resource=https://social.heldscal.la/user/23211",
975 body: File.read!("test/fixtures/tesla_mock/https___social.heldscal.la_user_23211.xml")
979 def get("http://social.heldscal.la/.well-known/host-meta", _, _, _) do
983 body: File.read!("test/fixtures/tesla_mock/social.heldscal.la_host_meta")
987 def get("https://social.heldscal.la/.well-known/host-meta", _, _, _) do
991 body: File.read!("test/fixtures/tesla_mock/social.heldscal.la_host_meta")
995 def get("https://mastodon.social/users/lambadalambda.atom", _, _, _) do
996 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/lambadalambda.atom")}}
999 def get("https://mastodon.social/users/lambadalambda", _, _, _) do
1000 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/lambadalambda.json")}}
1003 def get("https://apfed.club/channel/indio", _, _, _) do
1005 %Tesla.Env{status: 200, body: File.read!("test/fixtures/tesla_mock/osada-user-indio.json")}}
1008 def get("https://social.heldscal.la/user/23211", _, _, Accept: "application/activity+json") do
1009 {:ok, Tesla.Mock.json(%{"id" => "https://social.heldscal.la/user/23211"}, status: 200)}
1012 def get("http://example.com/ogp", _, _, _) do
1013 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
1016 def get("https://example.com/ogp", _, _, _) do
1017 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
1020 def get("https://pleroma.local/notice/9kCP7V", _, _, _) do
1021 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
1024 def get("http://localhost:4001/users/masto_closed/followers", _, _, _) do
1028 body: File.read!("test/fixtures/users_mock/masto_closed_followers.json")
1032 def get("http://localhost:4001/users/masto_closed/followers?page=1", _, _, _) do
1036 body: File.read!("test/fixtures/users_mock/masto_closed_followers_page.json")
1040 def get("http://localhost:4001/users/masto_closed/following", _, _, _) do
1044 body: File.read!("test/fixtures/users_mock/masto_closed_following.json")
1048 def get("http://localhost:4001/users/masto_closed/following?page=1", _, _, _) do
1052 body: File.read!("test/fixtures/users_mock/masto_closed_following_page.json")
1056 def get("http://localhost:8080/followers/fuser3", _, _, _) do
1060 body: File.read!("test/fixtures/users_mock/friendica_followers.json")
1064 def get("http://localhost:8080/following/fuser3", _, _, _) do
1068 body: File.read!("test/fixtures/users_mock/friendica_following.json")
1072 def get("http://localhost:4001/users/fuser2/followers", _, _, _) do
1076 body: File.read!("test/fixtures/users_mock/pleroma_followers.json")
1080 def get("http://localhost:4001/users/fuser2/following", _, _, _) do
1084 body: File.read!("test/fixtures/users_mock/pleroma_following.json")
1088 def get("http://domain-with-errors:4001/users/fuser1/followers", _, _, _) do
1096 def get("http://domain-with-errors:4001/users/fuser1/following", _, _, _) do
1104 def get("http://example.com/ogp-missing-data", _, _, _) do
1108 body: File.read!("test/fixtures/rich_media/ogp-missing-data.html")
1112 def get("https://example.com/ogp-missing-data", _, _, _) do
1116 body: File.read!("test/fixtures/rich_media/ogp-missing-data.html")
1120 def get("http://example.com/malformed", _, _, _) do
1122 %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/malformed-data.html")}}
1125 def get("http://example.com/empty", _, _, _) do
1126 {:ok, %Tesla.Env{status: 200, body: "hello"}}
1129 def get("http://404.site" <> _, _, _, _) do
1138 "https://zetsubou.xn--q9jyb4c/.well-known/webfinger?resource=lain@zetsubou.xn--q9jyb4c",
1141 Accept: "application/xrd+xml,application/jrd+json"
1146 body: File.read!("test/fixtures/lain.xml")
1151 "https://zetsubou.xn--q9jyb4c/.well-known/webfinger?resource=https://zetsubou.xn--q9jyb4c/users/lain",
1154 Accept: "application/xrd+xml,application/jrd+json"
1159 body: File.read!("test/fixtures/lain.xml")
1164 "https://zetsubou.xn--q9jyb4c/.well-known/host-meta",
1172 body: File.read!("test/fixtures/host-meta-zetsubou.xn--q9jyb4c.xml")
1176 def get("https://info.pleroma.site/activity.json", _, _, Accept: "application/activity+json") do
1180 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity.json")
1184 def get("https://info.pleroma.site/activity.json", _, _, _) do
1185 {:ok, %Tesla.Env{status: 404, body: ""}}
1188 def get("https://info.pleroma.site/activity2.json", _, _, Accept: "application/activity+json") do
1192 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity2.json")
1196 def get("https://info.pleroma.site/activity2.json", _, _, _) do
1197 {:ok, %Tesla.Env{status: 404, body: ""}}
1200 def get("https://info.pleroma.site/activity3.json", _, _, Accept: "application/activity+json") do
1204 body: File.read!("test/fixtures/tesla_mock/https__info.pleroma.site_activity3.json")
1208 def get("https://info.pleroma.site/activity3.json", _, _, _) do
1209 {:ok, %Tesla.Env{status: 404, body: ""}}
1212 def get("https://mstdn.jp/.well-known/webfinger?resource=acct:kpherox@mstdn.jp", _, _, _) do
1216 body: File.read!("test/fixtures/tesla_mock/kpherox@mstdn.jp.xml")
1220 def get("https://10.111.10.1/notice/9kCP7V", _, _, _) do
1221 {:ok, %Tesla.Env{status: 200, body: ""}}
1224 def get("https://172.16.32.40/notice/9kCP7V", _, _, _) do
1225 {:ok, %Tesla.Env{status: 200, body: ""}}
1228 def get("https://192.168.10.40/notice/9kCP7V", _, _, _) do
1229 {:ok, %Tesla.Env{status: 200, body: ""}}
1232 def get("https://www.patreon.com/posts/mastodon-2-9-and-28121681", _, _, _) do
1233 {:ok, %Tesla.Env{status: 200, body: ""}}
1236 def get("http://mastodon.example.org/@admin/99541947525187367", _, _, _) do
1237 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/mastodon-post-activity.json")}}
1240 def get("https://info.pleroma.site/activity4.json", _, _, _) do
1241 {:ok, %Tesla.Env{status: 500, body: "Error occurred"}}
1244 def get("http://example.com/rel_me/anchor", _, _, _) do
1245 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_anchor.html")}}
1248 def get("http://example.com/rel_me/anchor_nofollow", _, _, _) do
1249 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_anchor_nofollow.html")}}
1252 def get("http://example.com/rel_me/link", _, _, _) do
1253 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_link.html")}}
1256 def get("http://example.com/rel_me/null", _, _, _) do
1257 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rel_me_null.html")}}
1260 def get("https://skippers-bin.com/notes/7x9tmrp97i", _, _, _) do
1264 body: File.read!("test/fixtures/tesla_mock/misskey_poll_no_end_date.json")
1268 def get("https://skippers-bin.com/users/7v1w1r8ce6", _, _, _) do
1269 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/tesla_mock/sjw.json")}}
1272 def get("https://patch.cx/users/rin", _, _, _) do
1273 {:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/tesla_mock/rin.json")}}
1276 def get("http://example.com/rel_me/error", _, _, _) do
1277 {:ok, %Tesla.Env{status: 404, body: ""}}
1280 def get(url, query, body, headers) do
1282 "Mock response not implemented for GET #{inspect(url)}, #{query}, #{inspect(body)}, #{
1290 def post(url, query \\ [], body \\ [], headers \\ [])
1292 def post("http://example.org/needs_refresh", _, _, _) do
1300 def post("http://mastodon.example.org/inbox", _, _, _) do
1308 def post("https://hubzilla.example.org/inbox", _, _, _) do
1316 def post("http://gs.example.org/index.php/main/salmon/user/1", _, _, _) do
1324 def post("http://200.site" <> _, _, _, _) do
1332 def post("http://connrefused.site" <> _, _, _, _) do
1333 {:error, :connrefused}
1336 def post("http://404.site" <> _, _, _, _) do
1344 def post(url, query, body, headers) do
1346 "Mock response not implemented for POST #{inspect(url)}, #{query}, #{inspect(body)}, #{