diff options
author | feld <feld@feld.me> | 2019-05-24 20:33:55 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2019-05-24 20:33:55 +0000 |
commit | f916e4cdd9a502b83c615146c598be135f47e57a (patch) | |
tree | 4fbfb1e1b349f927b06f0a1669ff39d661650e56 /test/plugs/cache_control_test.exs | |
parent | 6499adc6a83b4064f7283de3c729053e62ade7b2 (diff) | |
download | pleroma-f916e4cdd9a502b83c615146c598be135f47e57a.tar.gz pleroma-f916e4cdd9a502b83c615146c598be135f47e57a.zip |
Move the Cache Control header test to its own file
We can consolidate our cache control header tests here
Diffstat (limited to 'test/plugs/cache_control_test.exs')
-rw-r--r-- | test/plugs/cache_control_test.exs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/plugs/cache_control_test.exs b/test/plugs/cache_control_test.exs new file mode 100644 index 000000000..45151b289 --- /dev/null +++ b/test/plugs/cache_control_test.exs @@ -0,0 +1,20 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2018 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 |