diff options
author | kaniini <nenolod@gmail.com> | 2018-11-06 15:35:19 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2018-11-06 15:35:19 +0000 |
commit | 0f3e78addb4a88106120737f2eb603ec136d99f9 (patch) | |
tree | 8052b28135e8e80e408dd3c5eb0ccfc47d7b6191 /test/web/node_info_test.exs | |
parent | 25512aa29cae22b73ee45a22954693c1a130ea3e (diff) | |
parent | 013f7ba8c1c4e6519cf30d192e3a41c6c96f8a63 (diff) | |
download | pleroma-0f3e78addb4a88106120737f2eb603ec136d99f9.tar.gz pleroma-0f3e78addb4a88106120737f2eb603ec136d99f9.zip |
Merge branch 'runtime-router' into 'develop'
Runtime configured router
See merge request pleroma/pleroma!426
Diffstat (limited to 'test/web/node_info_test.exs')
-rw-r--r-- | test/web/node_info_test.exs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/test/web/node_info_test.exs b/test/web/node_info_test.exs index d48f40e47..a6376453c 100644 --- a/test/web/node_info_test.exs +++ b/test/web/node_info_test.exs @@ -14,4 +14,36 @@ defmodule Pleroma.Web.NodeInfoTest do assert user.ap_id in result["metadata"]["staffAccounts"] end + + test "returns 404 when federation is disabled" 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" do + conn + |> get("/.well-known/nodeinfo") + |> json_response(200) + + conn + |> get("/nodeinfo/2.0.json") + |> json_response(200) + end end |