hakyll/tests/Hakyll/Web/Template/Tests.hs

52 lines
1.7 KiB
Haskell
Raw Normal View History

2012-11-19 13:59:55 +00:00
--------------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
module Hakyll.Web.Template.Tests
( tests
) where
2012-11-19 13:59:55 +00:00
--------------------------------------------------------------------------------
2012-11-19 14:12:53 +00:00
import Data.Monoid (mconcat)
2012-11-19 13:59:55 +00:00
import Test.Framework (Test, testGroup)
import Test.Framework.Providers.HUnit (testCase)
import Test.HUnit (Assertion, (@=?))
--------------------------------------------------------------------------------
import Hakyll.Core.Item
import Hakyll.Core.Provider
2012-12-15 17:02:47 +00:00
import Hakyll.Web.Pandoc
2012-11-19 13:59:55 +00:00
import Hakyll.Web.Template
import Hakyll.Web.Template.Context
import TestSuite.Util
--------------------------------------------------------------------------------
tests :: Test
tests = testGroup "Hakyll.Core.Template.Tests"
[ testCase "case01" case01
]
2012-11-19 13:59:55 +00:00
--------------------------------------------------------------------------------
case01 :: Assertion
2013-01-06 17:33:00 +00:00
case01 = do
store <- newTestStore
2012-11-19 13:59:55 +00:00
provider <- newTestProvider store
2012-11-19 14:12:53 +00:00
out <- resourceString provider "template.html.out"
2013-01-06 17:33:00 +00:00
tpl <- testCompilerDone store provider "template.html" $
templateCompiler
2012-11-19 13:59:55 +00:00
item <- testCompilerDone store provider "example.md" $
2012-12-15 17:02:47 +00:00
pandocCompiler >>= applyTemplate (itemBody tpl) testContext
2012-11-19 13:59:55 +00:00
out @=? itemBody item
2012-11-19 14:12:53 +00:00
--------------------------------------------------------------------------------
testContext :: Context String
testContext = mconcat
[ functionField "echo" (\args _ -> return $ unwords args)
, defaultContext
]