2020-01-14 00:56:51 +03:00
|
|
|
module Data.Parser.CacheControlSpec (spec) where
|
|
|
|
|
2022-01-28 03:17:53 +03:00
|
|
|
import Data.Parser.CacheControl (CacheControl)
|
2021-09-24 01:56:37 +03:00
|
|
|
import Data.Parser.CacheControl qualified as CCP
|
2022-01-28 03:17:53 +03:00
|
|
|
import Data.Text qualified as T
|
2021-09-24 01:56:37 +03:00
|
|
|
import Hasura.Prelude
|
|
|
|
import Test.Hspec
|
2020-01-14 00:56:51 +03:00
|
|
|
|
|
|
|
spec :: Spec
|
|
|
|
spec = do
|
2022-01-28 03:17:53 +03:00
|
|
|
describe "parseMaxAge" do
|
|
|
|
it "successfully parses max-age=5" $ do
|
2020-01-14 00:56:51 +03:00
|
|
|
let header = "public, must-revalidate, max-age=5, no-transform"
|
|
|
|
CCP.parseMaxAge @Integer header `shouldBe` Right 5
|
|
|
|
|
2022-01-28 03:17:53 +03:00
|
|
|
it "successfully parses s-maxage=5" $ do
|
2020-01-14 00:56:51 +03:00
|
|
|
let header = "public, must-revalidate, s-maxage=5, no-transform"
|
|
|
|
CCP.parseMaxAge @Integer header `shouldBe` Right 5
|
|
|
|
|
|
|
|
it "doesn't have max-age; fails parsing max-age" $ do
|
|
|
|
let header = "public, must-revalidate, no-transform"
|
|
|
|
CCP.parseMaxAge @Integer header `shouldBe` Left "could not find max-age/s-maxage"
|
|
|
|
|
|
|
|
it "max-age value is wrong; fails parsing max-age" $ do
|
|
|
|
let header = "public, max-age=\"abcd\" must-revalidate, no-transform"
|
2022-01-28 03:17:53 +03:00
|
|
|
CCP.parseMaxAge @Integer header `shouldBe` Left "could not parse max-age/s-maxage value"
|
|
|
|
|
|
|
|
describe "noCacheExists" $ do
|
|
|
|
testExistsFn CCP.noCacheExists True "public, no-cache, must-revalidate"
|
|
|
|
testExistsFn CCP.noCacheExists False "public, must-revalidate"
|
|
|
|
describe "noStoreExists" $ do
|
|
|
|
testExistsFn CCP.noStoreExists True "public, no-store, must-revalidate"
|
|
|
|
testExistsFn CCP.noStoreExists False "public, must-revalidate"
|
|
|
|
describe "mustRevalidateExists" $ do
|
|
|
|
testExistsFn CCP.mustRevalidateExists True "public, no-store, must-revalidate"
|
|
|
|
testExistsFn CCP.mustRevalidateExists False "public, no-store"
|
|
|
|
|
|
|
|
testExistsFn :: (CacheControl -> Bool) -> Bool -> Text -> Spec
|
|
|
|
testExistsFn existsFn expected headerValue =
|
|
|
|
it ("returns " ++ show expected ++ " for '" ++ T.unpack headerValue ++ "'") do
|
|
|
|
(existsFn <$> CCP.parseCacheControl headerValue) `shouldBe` Right expected
|