2019-05-21 01:39:32 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-05-21 01:39:32 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.FallbackTest do
|
|
|
|
use Pleroma.Web.ConnCase
|
|
|
|
import Pleroma.Factory
|
|
|
|
|
2020-05-12 15:08:00 +00:00
|
|
|
describe "neither preloaded data nor metadata attached to" do
|
|
|
|
test "GET /registration/:token", %{conn: conn} do
|
|
|
|
response = get(conn, "/registration/foo")
|
|
|
|
|
|
|
|
assert html_response(response, 200) =~ "<!--server-generated-meta-->"
|
2020-06-02 14:18:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "GET /*path", %{conn: conn} do
|
|
|
|
assert conn
|
|
|
|
|> get("/foo")
|
|
|
|
|> html_response(200) =~ "<!--server-generated-meta-->"
|
2020-05-12 15:08:00 +00:00
|
|
|
end
|
2019-05-21 01:39:32 +00:00
|
|
|
end
|
|
|
|
|
2020-11-11 16:10:59 +00:00
|
|
|
test "GET /*path adds a title", %{conn: conn} do
|
|
|
|
clear_config([:instance, :name], "a cool title")
|
|
|
|
|
|
|
|
assert conn
|
|
|
|
|> get("/")
|
|
|
|
|> html_response(200) =~ "<title>a cool title</title>"
|
|
|
|
end
|
|
|
|
|
2020-05-12 15:08:00 +00:00
|
|
|
describe "preloaded data and metadata attached to" do
|
|
|
|
test "GET /:maybe_nickname_or_id", %{conn: conn} do
|
2020-11-11 16:10:59 +00:00
|
|
|
clear_config([:instance, :name], "a cool title")
|
|
|
|
|
2020-05-12 15:08:00 +00:00
|
|
|
user = insert(:user)
|
|
|
|
user_missing = get(conn, "/foo")
|
|
|
|
user_present = get(conn, "/#{user.nickname}")
|
2019-05-21 01:39:32 +00:00
|
|
|
|
2020-11-11 16:10:59 +00:00
|
|
|
assert html_response(user_missing, 200) =~ "<!--server-generated-meta-->"
|
2020-05-12 15:08:00 +00:00
|
|
|
refute html_response(user_present, 200) =~ "<!--server-generated-meta-->"
|
2020-06-02 14:18:06 +00:00
|
|
|
assert html_response(user_present, 200) =~ "initial-results"
|
2020-11-11 16:10:59 +00:00
|
|
|
assert html_response(user_present, 200) =~ "<title>a cool title</title>"
|
2020-06-02 14:18:06 +00:00
|
|
|
end
|
2019-05-21 01:39:32 +00:00
|
|
|
|
2020-06-02 14:18:06 +00:00
|
|
|
test "GET /*path", %{conn: conn} do
|
|
|
|
assert conn
|
|
|
|
|> get("/foo")
|
|
|
|
|> html_response(200) =~ "<!--server-generated-meta-->"
|
|
|
|
|
|
|
|
refute conn
|
|
|
|
|> get("/foo/bar")
|
|
|
|
|> html_response(200) =~ "<!--server-generated-meta-->"
|
2020-05-12 15:08:00 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-06-02 14:18:06 +00:00
|
|
|
describe "preloaded data is attached to" do
|
|
|
|
test "GET /main/public", %{conn: conn} do
|
2020-11-11 16:10:59 +00:00
|
|
|
clear_config([:instance, :name], "a cool title")
|
|
|
|
|
2020-05-12 15:08:00 +00:00
|
|
|
public_page = get(conn, "/main/public")
|
|
|
|
|
2020-06-02 14:18:06 +00:00
|
|
|
refute html_response(public_page, 200) =~ "<!--server-generated-meta-->"
|
|
|
|
assert html_response(public_page, 200) =~ "initial-results"
|
2020-11-11 16:10:59 +00:00
|
|
|
assert html_response(public_page, 200) =~ "<title>a cool title</title>"
|
2020-06-02 14:18:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "GET /main/all", %{conn: conn} do
|
|
|
|
public_page = get(conn, "/main/all")
|
|
|
|
|
|
|
|
refute html_response(public_page, 200) =~ "<!--server-generated-meta-->"
|
|
|
|
assert html_response(public_page, 200) =~ "initial-results"
|
2020-05-12 15:08:00 +00:00
|
|
|
end
|
2019-05-21 01:39:32 +00:00
|
|
|
end
|
|
|
|
|
2019-07-26 20:27:38 +00:00
|
|
|
test "GET /pleroma/admin -> /pleroma/admin/", %{conn: conn} do
|
|
|
|
assert redirected_to(get(conn, "/pleroma/admin")) =~ "/pleroma/admin/"
|
|
|
|
end
|
|
|
|
|
2019-05-21 01:39:32 +00:00
|
|
|
test "OPTIONS /*path", %{conn: conn} do
|
|
|
|
assert conn
|
|
|
|
|> options("/foo")
|
|
|
|
|> response(204) == ""
|
|
|
|
|
|
|
|
assert conn
|
|
|
|
|> options("/foo/bar")
|
|
|
|
|> response(204) == ""
|
|
|
|
end
|
|
|
|
end
|