X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fsupport%2Fhttpoison_mock.ex;h=f28557975c7603ed5e74e0b5fce909c9fbb0fa33;hb=ff007af0c2f229fa20cd4b83b94de89cd9fce29c;hp=ad5171492db874f4fd023fc082412ab7cf800bc4;hpb=4033ed671443bbb4111b45473696dc8a23fe9873;p=akkoma diff --git a/test/support/httpoison_mock.ex b/test/support/httpoison_mock.ex index ad5171492..f28557975 100644 --- a/test/support/httpoison_mock.ex +++ b/test/support/httpoison_mock.ex @@ -3,6 +3,18 @@ defmodule HTTPoisonMock do def get(url, body \\ [], headers \\ []) + def get( + "http://gerzilla.de/.well-known/webfinger?resource=acct:kaniini@gerzilla.de", + [Accept: "application/xrd+xml,application/jrd+json"], + follow_redirect: true + ) do + {:ok, + %Response{ + status_code: 200, + body: File.read!("test/fixtures/httpoison_mock/kaniini@gerzilla.de.json") + }} + end + def get( "http://framatube.org/.well-known/webfinger?resource=acct:framasoft@framatube.org", [Accept: "application/xrd+xml,application/jrd+json"], @@ -628,7 +640,11 @@ defmodule HTTPoisonMock do }} end - def get("https://hubzilla.example.org/channel/kaniini", [Accept: "application/activity+json"], _) do + def get( + "https://hubzilla.example.org/channel/kaniini", + [Accept: "application/activity+json"], + _ + ) do {:ok, %Response{ status_code: 200,