X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fweb%2Fnode_info_test.exs;h=be11735135f6cac391e9b5538e8c0853694225b2;hb=ad5263c647aea65dbeb4c329825671895e0a8863;hp=a6376453caf6807b585f00d941b4cfb95750194c;hpb=5c8b8f6cb7212bd202924b535cd2a263416e78d4;p=akkoma diff --git a/test/web/node_info_test.exs b/test/web/node_info_test.exs index a6376453c..be1173513 100644 --- a/test/web/node_info_test.exs +++ b/test/web/node_info_test.exs @@ -1,49 +1,86 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2018 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only + defmodule Pleroma.Web.NodeInfoTest do use Pleroma.Web.ConnCase import Pleroma.Factory + test "GET /.well-known/nodeinfo", %{conn: conn} do + links = + conn + |> get("/.well-known/nodeinfo") + |> json_response(200) + |> Map.fetch!("links") + + Enum.each(links, fn link -> + href = Map.fetch!(link, "href") + + conn + |> get(href) + |> json_response(200) + end) + end + test "nodeinfo shows staff accounts", %{conn: conn} do - user = insert(:user, %{local: true, info: %{"is_moderator" => true}}) + moderator = insert(:user, %{local: true, info: %{is_moderator: true}}) + admin = insert(:user, %{local: true, info: %{is_admin: true}}) conn = conn - |> get("/nodeinfo/2.0.json") + |> get("/nodeinfo/2.1.json") assert result = json_response(conn, 200) - assert user.ap_id in result["metadata"]["staffAccounts"] + assert moderator.ap_id in result["metadata"]["staffAccounts"] + assert admin.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) + test "nodeinfo shows restricted nicknames", %{conn: conn} do + conn = + conn + |> get("/nodeinfo/2.1.json") - Application.put_env(:pleroma, :instance, instance) + assert result = json_response(conn, 200) - conn - |> get("/.well-known/nodeinfo") - |> json_response(404) + assert Pleroma.Config.get([Pleroma.User, :restricted_nicknames]) == + result["metadata"]["restrictedNicknames"] + end + test "returns software.repository field in nodeinfo 2.1", %{conn: conn} do conn - |> get("/nodeinfo/2.0.json") - |> json_response(404) + |> get("/.well-known/nodeinfo") + |> json_response(200) - instance = - Application.get_env(:pleroma, :instance) - |> Keyword.put(:federating, true) + conn = + conn + |> get("/nodeinfo/2.1.json") - Application.put_env(:pleroma, :instance, instance) + assert result = json_response(conn, 200) + assert Pleroma.Application.repository() == result["software"]["repository"] end - test "returns 200 when federation is enabled" do - conn - |> get("/.well-known/nodeinfo") - |> json_response(200) + test "it returns the safe_dm_mentions feature if enabled", %{conn: conn} do + option = Pleroma.Config.get([:instance, :safe_dm_mentions]) + Pleroma.Config.put([:instance, :safe_dm_mentions], true) - conn - |> get("/nodeinfo/2.0.json") - |> json_response(200) + response = + conn + |> get("/nodeinfo/2.1.json") + |> json_response(:ok) + + assert "safe_dm_mentions" in response["metadata"]["features"] + + Pleroma.Config.put([:instance, :safe_dm_mentions], false) + + response = + conn + |> get("/nodeinfo/2.1.json") + |> json_response(:ok) + + refute "safe_dm_mentions" in response["metadata"]["features"] + + Pleroma.Config.put([:instance, :safe_dm_mentions], option) end end