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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
module Page
( pageGroup
) where
import qualified Data.Map as M
import Control.Monad.Reader (runReaderT)
import Data.Binary
import Test.Framework (testGroup)
import Test.Framework.Providers.HUnit
import Test.Framework.Providers.QuickCheck2
import Test.HUnit
import System.Directory (getTemporaryDirectory, removeFile)
import System.FilePath ((</>))
import Text.Hakyll.Internal.Page
import Text.Hakyll.Context
import Text.Hakyll.HakyllAction
import Text.Hakyll
-- Page test group.
pageGroup = testGroup "Page"
[ testCase "test_readPage_1" test_readPage_1
, testCase "test_readPage_2" test_readPage_2
, testCase "test_readPage_3" test_readPage_3
, testCase "test_readPage_4" test_readPage_4
]
-- | An abstract function to test page reading.
test_readPage :: FilePath -- ^ Filename to give to the temporary file.
-> String -- ^ Content to put in the file.
-> (Context -> Bool) -- ^ Assertion to run on the result Context.
-> IO Bool -- ^ Result of the assertion.
test_readPage fileName content assertion = do
temporaryDir <- getTemporaryDirectory
let temporaryFile = temporaryDir </> fileName
writeFile temporaryFile content
page <- runDefaultHakyll (readPage temporaryFile)
removeFile temporaryFile
return $ assertion page
-- | readPage test case 1.
test_readPage_1 = test_readPage fileName content assertion @? "test_readPage_1"
where
fileName = "test_readPage_1.markdown"
content = unlines [ "---"
, "author: Eric Cartman"
, "---"
, "This is a simple test."
]
assertion page = M.lookup "author" (unContext page) == Just "Eric Cartman"
-- | readPage test case 2.
test_readPage_2 = test_readPage fileName content assertion @? "test_readPage_2"
where
fileName = "test_readPage_2.txt"
content = unlines [ "--- someSection"
, "This is a section."
, "---"
, "This is the body."
]
assertion page =
let m = unContext page
in M.lookup "someSection" m == Just "This is a section.\n"
&& M.lookup "body" m == Just "This is the body.\n"
-- | readPage test case 3.
test_readPage_3 = test_readPage fileName content assertion @? "test_readPage_3"
where
fileName = "test_readPage_3.txt"
content = unlines [ "No metadata here, sorry."
]
assertion page =
M.lookup "body" (unContext page) == Just "No metadata here, sorry.\n"
-- | readPage test case 4.
test_readPage_4 = test_readPage fileName content assertion @? "test_readPage_4"
where
fileName = "test_readPage_4.txt"
content = unlines [ "--- section"
, "This is a section."
, "---"
, "Header"
, "------"
, "The header is not a separate section."
]
assertion page = M.lookup "body" (unContext page) == Just body
body = unlines [ "Header"
, "------"
, "The header is not a separate section."
]
|