blob: 66460b6df7b104d2a241a6c10e6ef6ecccfe7618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
--------------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
module Hakyll.Web.Template.Context.Tests
( tests
) where
--------------------------------------------------------------------------------
import Test.Tasty (TestTree, testGroup)
import Test.Tasty.HUnit (Assertion, testCase, (@=?))
--------------------------------------------------------------------------------
import Hakyll.Core.Compiler
import Hakyll.Core.Identifier
import Hakyll.Core.Provider
import Hakyll.Core.Store (Store)
import Hakyll.Web.Template.Context
import TestSuite.Util
--------------------------------------------------------------------------------
tests :: TestTree
tests = testGroup "Hakyll.Web.Template.Context.Tests"
[ testCase "testDateField" testDateField
]
--------------------------------------------------------------------------------
testDateField :: Assertion
testDateField = do
store <- newTestStore
provider <- newTestProvider store
date1 <- testContextDone store provider "example.md" "date" $
dateField "date" "%B %e, %Y"
date1 @=? "October 22, 2012"
date2 <- testContextDone store provider
"posts/2010-08-26-birthday.md" "date" $
dateField "date" "%B %e, %Y"
date2 @=? "August 26, 2010"
date3 <- testContextDone store provider
"posts/2018-09-26.md" "date" $
dateField "date" "%B %e, %Y"
date3 @=? "September 26, 2018"
date4 <- testContextDone store provider
"posts/2019/05/10/tomorrow.md" "date" $
dateField "date" "%B %e, %Y"
date4 @=? "May 10, 2019"
cleanTestEnv
--------------------------------------------------------------------------------
testContextDone :: Store -> Provider -> Identifier -> String
-> Context String -> IO String
testContextDone store provider identifier key context =
testCompilerDone store provider identifier $ do
item <- getResourceBody
cf <- unContext context key [] item
case cf of
StringField str -> return str
_ -> error $
"Hakyll.Web.Template.Context.Tests.testContextDone: " ++
"expected StringField"
|