diff options
author | Tusooa Zhu <tusooa@kazv.moe> | 2022-05-05 18:39:34 -0400 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-05-06 08:39:42 +0200 |
commit | 4d482b765f8bebbad0d5e9e17fb923eb475313d6 (patch) | |
tree | ebb42669bdb226f534afecf4d740a28531ab2325 /test | |
parent | 85cbf773f010b1bb2c77e51b1e994314bbf4f008 (diff) | |
download | pleroma-4d482b765f8bebbad0d5e9e17fb923eb475313d6.tar.gz |
Allow to skip cache in Cache plug
Ref: fix-local-public
Diffstat (limited to 'test')
-rw-r--r-- | test/pleroma/web/plugs/cache_test.exs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/pleroma/web/plugs/cache_test.exs b/test/pleroma/web/plugs/cache_test.exs index 0ceab6cab..4e729cafb 100644 --- a/test/pleroma/web/plugs/cache_test.exs +++ b/test/pleroma/web/plugs/cache_test.exs @@ -179,4 +179,22 @@ defmodule Pleroma.Web.Plugs.CacheTest do |> send_resp(:im_a_teapot, "🥤") |> sent_resp() end + + test "ignores if skip_cache is assigned" do + assert @miss_resp == + conn(:get, "/") + |> assign(:skip_cache, true) + |> Cache.call(%{query_params: false, ttl: nil}) + |> put_resp_content_type("cofe/hot") + |> send_resp(:ok, "cofe") + |> sent_resp() + + assert @miss_resp == + conn(:get, "/") + |> assign(:skip_cache, true) + |> Cache.call(%{query_params: false, ttl: nil}) + |> put_resp_content_type("cofe/hot") + |> send_resp(:ok, "cofe") + |> sent_resp() + end end |