2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:11:29 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-09-03 14:40:14 +00:00
|
|
|
defmodule Pleroma.Web.NodeInfoTest do
|
|
|
|
use Pleroma.Web.ConnCase
|
|
|
|
|
|
|
|
import Pleroma.Factory
|
2020-02-13 18:55:47 +00:00
|
|
|
|
2020-03-20 15:33:00 +00:00
|
|
|
setup do: clear_config([:mrf_simple])
|
|
|
|
setup do: clear_config(:instance)
|
2018-09-03 14:40:14 +00:00
|
|
|
|
2019-05-25 00:15:12 +00:00
|
|
|
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
|
|
|
|
|
2018-09-03 14:40:14 +00:00
|
|
|
test "nodeinfo shows staff accounts", %{conn: conn} do
|
2019-10-16 18:59:21 +00:00
|
|
|
moderator = insert(:user, local: true, is_moderator: true)
|
|
|
|
admin = insert(:user, local: true, is_admin: true)
|
2018-09-03 14:40:14 +00:00
|
|
|
|
|
|
|
conn =
|
|
|
|
conn
|
2019-02-01 06:55:10 +00:00
|
|
|
|> get("/nodeinfo/2.1.json")
|
2018-09-03 14:40:14 +00:00
|
|
|
|
|
|
|
assert result = json_response(conn, 200)
|
|
|
|
|
2019-03-04 19:14:04 +00:00
|
|
|
assert moderator.ap_id in result["metadata"]["staffAccounts"]
|
|
|
|
assert admin.ap_id in result["metadata"]["staffAccounts"]
|
2018-09-03 14:40:14 +00:00
|
|
|
end
|
2018-11-06 13:44:00 +00:00
|
|
|
|
2018-12-26 11:46:16 +00:00
|
|
|
test "nodeinfo shows restricted nicknames", %{conn: conn} do
|
|
|
|
conn =
|
|
|
|
conn
|
2019-02-01 06:55:10 +00:00
|
|
|
|> get("/nodeinfo/2.1.json")
|
2018-12-26 11:46:16 +00:00
|
|
|
|
|
|
|
assert result = json_response(conn, 200)
|
|
|
|
|
2020-03-31 15:22:25 +00:00
|
|
|
assert Config.get([Pleroma.User, :restricted_nicknames]) ==
|
2018-12-26 11:46:16 +00:00
|
|
|
result["metadata"]["restrictedNicknames"]
|
|
|
|
end
|
|
|
|
|
2019-02-01 17:33:14 +00:00
|
|
|
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
|
2019-03-22 10:57:20 +00:00
|
|
|
|
2019-11-15 14:55:28 +00:00
|
|
|
test "returns fieldsLimits field", %{conn: conn} do
|
2020-03-21 06:47:05 +00:00
|
|
|
clear_config([:instance, :max_account_fields], 10)
|
|
|
|
clear_config([:instance, :max_remote_account_fields], 15)
|
|
|
|
clear_config([:instance, :account_field_name_length], 255)
|
|
|
|
clear_config([:instance, :account_field_value_length], 2048)
|
2019-11-15 14:55:28 +00:00
|
|
|
|
|
|
|
response =
|
|
|
|
conn
|
|
|
|
|> get("/nodeinfo/2.1.json")
|
|
|
|
|> json_response(:ok)
|
|
|
|
|
|
|
|
assert response["metadata"]["fieldsLimits"]["maxFields"] == 10
|
|
|
|
assert response["metadata"]["fieldsLimits"]["maxRemoteFields"] == 15
|
|
|
|
assert response["metadata"]["fieldsLimits"]["nameLength"] == 255
|
|
|
|
assert response["metadata"]["fieldsLimits"]["valueLength"] == 2048
|
|
|
|
end
|
|
|
|
|
2019-03-22 10:57:20 +00:00
|
|
|
test "it returns the safe_dm_mentions feature if enabled", %{conn: conn} do
|
2020-03-21 06:47:05 +00:00
|
|
|
clear_config([:instance, :safe_dm_mentions], true)
|
2019-03-22 10:57:20 +00:00
|
|
|
|
|
|
|
response =
|
|
|
|
conn
|
|
|
|
|> get("/nodeinfo/2.1.json")
|
|
|
|
|> json_response(:ok)
|
|
|
|
|
|
|
|
assert "safe_dm_mentions" in response["metadata"]["features"]
|
|
|
|
|
2021-01-26 17:58:43 +00:00
|
|
|
clear_config([:instance, :safe_dm_mentions], false)
|
2019-03-22 10:57:20 +00:00
|
|
|
|
|
|
|
response =
|
|
|
|
conn
|
|
|
|
|> get("/nodeinfo/2.1.json")
|
|
|
|
|> json_response(:ok)
|
|
|
|
|
|
|
|
refute "safe_dm_mentions" in response["metadata"]["features"]
|
|
|
|
end
|
2019-07-13 18:30:45 +00:00
|
|
|
|
2020-02-13 18:55:47 +00:00
|
|
|
describe "`metadata/federation/enabled`" do
|
2020-03-20 15:33:00 +00:00
|
|
|
setup do: clear_config([:instance, :federating])
|
2019-11-11 18:03:43 +00:00
|
|
|
|
2020-02-13 18:55:47 +00:00
|
|
|
test "it shows if federation is enabled/disabled", %{conn: conn} do
|
2021-01-26 17:58:43 +00:00
|
|
|
clear_config([:instance, :federating], true)
|
2019-11-11 18:03:43 +00:00
|
|
|
|
2020-02-13 18:55:47 +00:00
|
|
|
response =
|
|
|
|
conn
|
|
|
|
|> get("/nodeinfo/2.1.json")
|
|
|
|
|> json_response(:ok)
|
2019-11-11 18:03:43 +00:00
|
|
|
|
2020-02-13 18:55:47 +00:00
|
|
|
assert response["metadata"]["federation"]["enabled"] == true
|
2019-11-11 18:03:43 +00:00
|
|
|
|
2021-01-26 17:58:43 +00:00
|
|
|
clear_config([:instance, :federating], false)
|
2019-11-11 18:03:43 +00:00
|
|
|
|
2020-02-13 18:55:47 +00:00
|
|
|
response =
|
|
|
|
conn
|
|
|
|
|> get("/nodeinfo/2.1.json")
|
|
|
|
|> json_response(:ok)
|
2019-11-11 18:03:43 +00:00
|
|
|
|
2020-02-13 18:55:47 +00:00
|
|
|
assert response["metadata"]["federation"]["enabled"] == false
|
|
|
|
end
|
2019-11-11 18:03:43 +00:00
|
|
|
end
|
|
|
|
|
2020-03-24 19:21:27 +00:00
|
|
|
test "it shows default features flags", %{conn: conn} do
|
|
|
|
response =
|
|
|
|
conn
|
|
|
|
|> get("/nodeinfo/2.1.json")
|
|
|
|
|> json_response(:ok)
|
|
|
|
|
2020-03-31 15:22:25 +00:00
|
|
|
default_features = [
|
|
|
|
"pleroma_api",
|
|
|
|
"mastodon_api",
|
|
|
|
"mastodon_api_streaming",
|
|
|
|
"polls",
|
|
|
|
"pleroma_explicit_addressing",
|
|
|
|
"shareable_emoji_packs",
|
|
|
|
"multifetch",
|
|
|
|
"pleroma_emoji_reactions",
|
2020-06-26 11:04:15 +00:00
|
|
|
"pleroma:api/v1/notifications:include_types_filter",
|
|
|
|
"pleroma_chat_messages"
|
2020-03-31 15:22:25 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
assert MapSet.subset?(
|
|
|
|
MapSet.new(default_features),
|
|
|
|
MapSet.new(response["metadata"]["features"])
|
|
|
|
)
|
2020-03-24 19:21:27 +00:00
|
|
|
end
|
|
|
|
|
2019-07-13 18:30:45 +00:00
|
|
|
test "it shows MRF transparency data if enabled", %{conn: conn} do
|
2020-03-21 06:47:05 +00:00
|
|
|
clear_config([:mrf, :policies], [Pleroma.Web.ActivityPub.MRF.SimplePolicy])
|
|
|
|
clear_config([:mrf, :transparency], true)
|
2019-07-13 18:30:45 +00:00
|
|
|
|
|
|
|
simple_config = %{"reject" => ["example.com"]}
|
2020-03-21 06:47:05 +00:00
|
|
|
clear_config(:mrf_simple, simple_config)
|
2019-07-13 18:30:45 +00:00
|
|
|
|
|
|
|
response =
|
|
|
|
conn
|
|
|
|
|> get("/nodeinfo/2.1.json")
|
|
|
|
|> json_response(:ok)
|
|
|
|
|
|
|
|
assert response["metadata"]["federation"]["mrf_simple"] == simple_config
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it performs exclusions from MRF transparency data if configured", %{conn: conn} do
|
2020-03-21 06:47:05 +00:00
|
|
|
clear_config([:mrf, :policies], [Pleroma.Web.ActivityPub.MRF.SimplePolicy])
|
|
|
|
clear_config([:mrf, :transparency], true)
|
|
|
|
clear_config([:mrf, :transparency_exclusions], ["other.site"])
|
2019-07-13 18:30:45 +00:00
|
|
|
|
|
|
|
simple_config = %{"reject" => ["example.com", "other.site"]}
|
2020-03-21 06:47:05 +00:00
|
|
|
clear_config(:mrf_simple, simple_config)
|
2019-07-13 18:30:45 +00:00
|
|
|
|
2020-03-21 06:47:05 +00:00
|
|
|
expected_config = %{"reject" => ["example.com"]}
|
2019-07-13 18:30:45 +00:00
|
|
|
|
|
|
|
response =
|
|
|
|
conn
|
|
|
|
|> get("/nodeinfo/2.1.json")
|
|
|
|
|> json_response(:ok)
|
|
|
|
|
|
|
|
assert response["metadata"]["federation"]["mrf_simple"] == expected_config
|
|
|
|
assert response["metadata"]["federation"]["exclusions"] == true
|
|
|
|
end
|
2018-09-03 14:40:14 +00:00
|
|
|
end
|