happstack-server-0.5.0.2: tests/Happstack/Server/Tests.hs
-- |HUnit tests and QuickQuick properties for Happstack.Server.*
module Happstack.Server.Tests (allTests) where
import Test.HUnit as HU (Test(..),(~:),(~?),(@?=),(@=?))
import Happstack.Server.Cookie
import Happstack.Server.Parts
import Text.ParserCombinators.Parsec
import Data.ByteString.Lazy.Char8 (pack)
import Happstack.Server.HTTP.Multipart
-- |All of the tests for happstack-util should be listed here.
allTests :: Test
allTests =
"happstack-server tests" ~: [ cookieParserTest
, acceptEncodingParserTest
, splitMultipart
]
cookieParserTest :: Test
cookieParserTest =
"cookieParserTest" ~:
[parseCookies "$Version=1;Cookie1=value1;$Path=\"/testpath\";$Domain=example.com;cookie2=value2"
@?= (Right [
Cookie "1" "/testpath" "example.com" "cookie1" "value1" False
, Cookie "1" "" "" "cookie2" "value2" False
])
,parseCookies " \t $Version = \"1\" ; cookie1 = \"randomcrap!@#%^&*()-_+={}[]:;'<>,.?/\\|\" , $Path=/ "
@?= (Right [
Cookie "1" "/" "" "cookie1" "randomcrap!@#%^&*()-_+={}[]:;'<>,.?/\\|" False
])
,parseCookies " cookie1 = value1 "
@?= (Right [
Cookie "" "" "" "cookie1" "value1" False
])
,parseCookies " $Version=\"1\";buggygooglecookie = valuewith=whereitshouldnotbe "
@?= (Right [
Cookie "1" "" "" "buggygooglecookie" "valuewith=whereitshouldnotbe" False
])
]
acceptEncodingParserTest :: Test
acceptEncodingParserTest =
"acceptEncodingParserTest" ~:
map (\(string, result) -> either (Left . show) Right (parse encodings "" string) @?= (Right result)) acceptEncodings
where
acceptEncodings =
[ (" gzip;q=1,*, compress ; q = 0.5 ", [("gzip", Just 1),("*", Nothing),("compress", Just 0.5)])
, (" compress , gzip", [ ("compress", Nothing), ("gzip", Nothing)])
, (" ", [])
, (" *", [("*", Nothing)])
, (" compress;q=0.5, gzip;q=1.0", [("compress", Just 0.5), ("gzip", Just 1.0)])
, (" gzip;q=1.0, identity; q=0.5, *;q=0", [("gzip", Just 1.0), ("identity",Just 0.5), ("*", Just 0)])
, (" x-gzip",[("x-gzip", Nothing)])
]
splitMultipart :: Test
splitMultipart =
"split multipart" ~:
[ Just [pack "1"] @=?
splitParts (pack "boundary")
(pack "beg\r\n--boundary\r\n1\r\n--boundary--\r\nend")
, Just [pack "1\n"] @=?
splitParts (pack "boundary")
(pack "beg\r\n--boundary\r\n1\n\r\n--boundary--\r\nend")
, Just [pack "1\r\n"] @=?
splitParts (pack "boundary")
(pack "beg\r\n--boundary\r\n1\r\n\r\n--boundary--\r\nend")
, Just [pack "1\n\r"] @=?
splitParts (pack "boundary")
(pack "beg\r\n--boundary\r\n1\n\r\r\n--boundary--\r\nend")
, Just [pack "\r\n1\n\r"] @=?
splitParts (pack "boundary")
(pack "beg\r\n--boundary\r\n\r\n1\n\r\r\n--boundary--\r\nend")
]