mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2025-01-15 05:20:04 +01:00
447514dfa2
Done via the following command: git diff 1e6c102bfcfe0e4835a48f2483f2376f9bf86a20 --stat --name-only | cat - | xargs sed -i 's/2017-2018 Pleroma Authors/2017-2019 Pleroma Authors/'
21 lines
658 B
Elixir
21 lines
658 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.CacheControlTest do
|
|
use Pleroma.Web.ConnCase
|
|
alias Plug.Conn
|
|
|
|
test "Verify Cache-Control header on static assets", %{conn: conn} do
|
|
conn = get(conn, "/index.html")
|
|
|
|
assert Conn.get_resp_header(conn, "cache-control") == ["public, no-cache"]
|
|
end
|
|
|
|
test "Verify Cache-Control header on the API", %{conn: conn} do
|
|
conn = get(conn, "/api/v1/instance")
|
|
|
|
assert Conn.get_resp_header(conn, "cache-control") == ["max-age=0, private, must-revalidate"]
|
|
end
|
|
end
|