forked from AkkomaGang/akkoma
rebase fix
This commit is contained in:
parent
e2d7df40f0
commit
aa9212d385
2 changed files with 17 additions and 5 deletions
|
@ -766,7 +766,8 @@ test "for mastodon" do
|
||||||
|> File.read!()
|
|> File.read!()
|
||||||
|> String.replace("{{nickname}}", "a")
|
|> String.replace("{{nickname}}", "a")
|
||||||
|> String.replace("{{domain}}", "example.com")
|
|> String.replace("{{domain}}", "example.com")
|
||||||
|> String.replace("{{subdomain}}", "sub.example.com")
|
|> String.replace("{{subdomain}}", "sub.example.com"),
|
||||||
|
headers: [{"content-type", "application/jrd+json"}]
|
||||||
}
|
}
|
||||||
|
|
||||||
%{url: "https://sub.example.com/users/a"} ->
|
%{url: "https://sub.example.com/users/a"} ->
|
||||||
|
@ -779,6 +780,16 @@ test "for mastodon" do
|
||||||
|> String.replace("{{domain}}", "sub.example.com"),
|
|> String.replace("{{domain}}", "sub.example.com"),
|
||||||
headers: [{"content-type", "application/activity+json"}]
|
headers: [{"content-type", "application/activity+json"}]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
%{url: "https://sub.example.com/users/a/collections/featured"} ->
|
||||||
|
%Tesla.Env{
|
||||||
|
status: 200,
|
||||||
|
body:
|
||||||
|
File.read!("test/fixtures/users_mock/masto_featured.json")
|
||||||
|
|> String.replace("{{domain}}", "sub.example.com")
|
||||||
|
|> String.replace("{{nickname}}", "a"),
|
||||||
|
headers: [{"content-type", "application/activity+json"}]
|
||||||
|
}
|
||||||
end)
|
end)
|
||||||
|
|
||||||
ap_id = "a@example.com"
|
ap_id = "a@example.com"
|
||||||
|
@ -813,7 +824,8 @@ test "for pleroma" do
|
||||||
|> File.read!()
|
|> File.read!()
|
||||||
|> String.replace("{{nickname}}", "a")
|
|> String.replace("{{nickname}}", "a")
|
||||||
|> String.replace("{{domain}}", "example.com")
|
|> String.replace("{{domain}}", "example.com")
|
||||||
|> String.replace("{{subdomain}}", "sub.example.com")
|
|> String.replace("{{subdomain}}", "sub.example.com"),
|
||||||
|
headers: [{"content-type", "application/jrd+json"}]
|
||||||
}
|
}
|
||||||
|
|
||||||
%{url: "https://sub.example.com/users/a"} ->
|
%{url: "https://sub.example.com/users/a"} ->
|
||||||
|
|
|
@ -47,7 +47,7 @@ test "returns error for nonsensical input" do
|
||||||
|
|
||||||
test "returns error when there is no content-type header" do
|
test "returns error when there is no content-type header" do
|
||||||
Tesla.Mock.mock(fn
|
Tesla.Mock.mock(fn
|
||||||
%{url: "http://social.heldscal.la/.well-known/host-meta"} ->
|
%{url: "https://social.heldscal.la/.well-known/host-meta"} ->
|
||||||
{:ok,
|
{:ok,
|
||||||
%Tesla.Env{
|
%Tesla.Env{
|
||||||
status: 200,
|
status: 200,
|
||||||
|
@ -147,7 +147,7 @@ test "respects json content-type" do
|
||||||
headers: [{"content-type", "application/jrd+json"}]
|
headers: [{"content-type", "application/jrd+json"}]
|
||||||
}}
|
}}
|
||||||
|
|
||||||
%{url: "http://mastodon.social/.well-known/host-meta"} ->
|
%{url: "https://mastodon.social/.well-known/host-meta"} ->
|
||||||
{:ok,
|
{:ok,
|
||||||
%Tesla.Env{
|
%Tesla.Env{
|
||||||
status: 200,
|
status: 200,
|
||||||
|
@ -170,7 +170,7 @@ test "respects xml content-type" do
|
||||||
headers: [{"content-type", "application/xrd+xml"}]
|
headers: [{"content-type", "application/xrd+xml"}]
|
||||||
}}
|
}}
|
||||||
|
|
||||||
%{url: "http://pawoo.net/.well-known/host-meta"} ->
|
%{url: "https://pawoo.net/.well-known/host-meta"} ->
|
||||||
{:ok,
|
{:ok,
|
||||||
%Tesla.Env{
|
%Tesla.Env{
|
||||||
status: 200,
|
status: 200,
|
||||||
|
|
Loading…
Reference in a new issue