hakyll/tests/Hakyll/Core/Provider/Metadata/Tests.hs
Jasper Van der Jeugt f90585648e Fix test failure
2016-04-21 21:16:52 +02:00

62 lines
2.1 KiB
Haskell

--------------------------------------------------------------------------------
module Hakyll.Core.Provider.Metadata.Tests
( tests
) where
--------------------------------------------------------------------------------
import qualified Data.HashMap.Strict as HMS
import qualified Data.Text as T
import qualified Data.Yaml as Yaml
import Hakyll.Core.Metadata
import Hakyll.Core.Provider.Metadata
import Test.Framework (Test, testGroup)
import Test.HUnit (Assertion, (@=?), assertFailure)
import TestSuite.Util
--------------------------------------------------------------------------------
tests :: Test
tests = testGroup "Hakyll.Core.Provider.Metadata.Tests" $
fromAssertions "page" [testPage01, testPage02]
--------------------------------------------------------------------------------
testPage01 :: Assertion
testPage01 =
(meta [("foo", "bar")], "qux\n") `expectRight` parsePage
"---\n\
\foo: bar\n\
\---\n\
\qux\n"
--------------------------------------------------------------------------------
testPage02 :: Assertion
testPage02 =
(meta [("description", descr)], "Hello I am dog\n") `expectRight`
parsePage
"---\n\
\description: A long description that would look better if it\n\
\ spanned multiple lines and was indented\n\
\---\n\
\Hello I am dog\n"
where
descr :: String
descr =
"A long description that would look better if it \
\spanned multiple lines and was indented"
--------------------------------------------------------------------------------
meta :: Yaml.ToJSON a => [(String, a)] -> Metadata
meta pairs = HMS.fromList [(T.pack k, Yaml.toJSON v) | (k, v) <- pairs]
--------------------------------------------------------------------------------
-- | This is useful when the 'Left' side of 'Either' doesn't have an 'Eq'
-- instance.
expectRight :: (Eq b, Show a, Show b) => b -> Either a b -> Assertion
expectRight _ (Left err) = assertFailure (show err)
expectRight expected (Right res) = expected @=? res