2020-05-12 15:08:00 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-05-12 15:08:00 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.Preload.Providers.InstanceTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
alias Pleroma.Web.Preload.Providers.Instance
|
|
|
|
|
|
|
|
setup do: {:ok, Instance.generate_terms(nil)}
|
|
|
|
|
2020-06-29 09:41:00 +00:00
|
|
|
test "it renders the info", %{"/api/v1/instance" => info} do
|
2020-05-12 15:08:00 +00:00
|
|
|
assert %{
|
|
|
|
description: description,
|
|
|
|
email: "admin@example.com",
|
|
|
|
registrations: true
|
|
|
|
} = info
|
|
|
|
|
2022-07-02 14:05:32 +00:00
|
|
|
assert String.equivalent?(description, "Akkoma: The cooler fediverse server")
|
2020-05-12 15:08:00 +00:00
|
|
|
end
|
|
|
|
|
2020-06-29 09:41:00 +00:00
|
|
|
test "it renders the panel", %{"/instance/panel.html" => panel} do
|
2020-05-12 15:08:00 +00:00
|
|
|
assert String.contains?(
|
|
|
|
panel,
|
2022-07-08 13:03:18 +00:00
|
|
|
"<p>Welcome to <a href=\"https://akkoma.dev\" target=\"_blank\">Akkoma</a>!</p>"
|
2020-05-12 15:08:00 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2020-06-30 09:35:54 +00:00
|
|
|
test "it works with overrides" do
|
|
|
|
clear_config([:instance, :static_dir], "test/fixtures/preload_static")
|
|
|
|
|
2020-06-30 09:40:34 +00:00
|
|
|
%{"/instance/panel.html" => panel} = Instance.generate_terms(nil)
|
2020-06-30 09:35:54 +00:00
|
|
|
|
|
|
|
assert String.contains?(
|
|
|
|
panel,
|
|
|
|
"HEY!"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2020-06-29 09:41:00 +00:00
|
|
|
test "it renders the node_info", %{"/nodeinfo/2.0.json" => nodeinfo} do
|
2020-05-12 15:08:00 +00:00
|
|
|
%{
|
|
|
|
metadata: metadata,
|
|
|
|
version: "2.0"
|
|
|
|
} = nodeinfo
|
|
|
|
|
|
|
|
assert metadata.private == false
|
|
|
|
assert metadata.suggestions == %{enabled: false}
|
|
|
|
end
|
2020-10-12 23:49:37 +00:00
|
|
|
|
|
|
|
test "it renders the frontend configurations", %{
|
|
|
|
"/api/pleroma/frontend_configurations" => fe_configs
|
|
|
|
} do
|
|
|
|
assert %{
|
2020-12-12 14:30:08 +00:00
|
|
|
pleroma_fe: %{background: "/images/city.jpg", logo: "/static/logo.svg"}
|
2020-10-12 23:49:37 +00:00
|
|
|
} = fe_configs
|
|
|
|
end
|
2020-05-12 15:08:00 +00:00
|
|
|
end
|