forked from AkkomaGang/akkoma
node_info_test.exs: Add test on the default feature list
This commit is contained in:
parent
7d275970ab
commit
64165d1df9
1 changed files with 21 additions and 0 deletions
|
@ -128,6 +128,27 @@ test "it shows if federation is enabled/disabled", %{conn: conn} do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "it shows default features flags", %{conn: conn} do
|
||||||
|
response =
|
||||||
|
conn
|
||||||
|
|> get("/nodeinfo/2.1.json")
|
||||||
|
|> json_response(:ok)
|
||||||
|
|
||||||
|
assert response["metadata"]["features"] --
|
||||||
|
[
|
||||||
|
"pleroma_api",
|
||||||
|
"mastodon_api",
|
||||||
|
"mastodon_api_streaming",
|
||||||
|
"polls",
|
||||||
|
"pleroma_explicit_addressing",
|
||||||
|
"shareable_emoji_packs",
|
||||||
|
"multifetch",
|
||||||
|
"chat",
|
||||||
|
"relay",
|
||||||
|
"pleroma_emoji_reactions"
|
||||||
|
] == []
|
||||||
|
end
|
||||||
|
|
||||||
test "it shows MRF transparency data if enabled", %{conn: conn} do
|
test "it shows MRF transparency data if enabled", %{conn: conn} do
|
||||||
config = Pleroma.Config.get([:instance, :rewrite_policy])
|
config = Pleroma.Config.get([:instance, :rewrite_policy])
|
||||||
Pleroma.Config.put([:instance, :rewrite_policy], [Pleroma.Web.ActivityPub.MRF.SimplePolicy])
|
Pleroma.Config.put([:instance, :rewrite_policy], [Pleroma.Web.ActivityPub.MRF.SimplePolicy])
|
||||||
|
|
Loading…
Reference in a new issue