diff options
author | Luna <git@l4.pm> | 2019-02-01 14:33:14 -0300 |
---|---|---|
committer | Luna <git@l4.pm> | 2019-02-01 14:33:14 -0300 |
commit | e8c7be38fcf416eb8676c5e586c56c15b4f88986 (patch) | |
tree | b5218019d1f633a3957bf7960a9d78c2be0414a4 | |
parent | b17ce875cf3ae73423f737e46b7103116f45e7d0 (diff) | |
download | pleroma-e8c7be38fcf416eb8676c5e586c56c15b4f88986.tar.gz |
add tests for nodeinfo 2.0 compat and 2.1's new field
-rw-r--r-- | test/web/node_info_test.exs | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/test/web/node_info_test.exs b/test/web/node_info_test.exs index 360ee0baf..763549bd1 100644 --- a/test/web/node_info_test.exs +++ b/test/web/node_info_test.exs @@ -61,4 +61,49 @@ defmodule Pleroma.Web.NodeInfoTest do |> get("/nodeinfo/2.1.json") |> json_response(200) end + + test "returns 404 when federation is disabled (nodeinfo 2.0)", %{conn: conn} do + instance = + Application.get_env(:pleroma, :instance) + |> Keyword.put(:federating, false) + + Application.put_env(:pleroma, :instance, instance) + + conn + |> get("/.well-known/nodeinfo") + |> json_response(404) + + conn + |> get("/nodeinfo/2.0.json") + |> json_response(404) + + instance = + Application.get_env(:pleroma, :instance) + |> Keyword.put(:federating, true) + + Application.put_env(:pleroma, :instance, instance) + end + + test "returns 200 when federation is enabled (nodeinfo 2.0)", %{conn: conn} do + conn + |> get("/.well-known/nodeinfo") + |> json_response(200) + + conn + |> get("/nodeinfo/2.0.json") + |> json_response(200) + end + + test "returns software.repository field in nodeinfo 2.1", %{conn: conn} do + conn + |> get("/.well-known/nodeinfo") + |> json_response(200) + + conn = + conn + |> get("/nodeinfo/2.1.json") + + assert result = json_response(conn, 200) + assert Pleroma.Application.repository() == result["software"]["repository"] + end end |