fa719d0264
* XML.toEntities: changed type to Text -> Text. * Shared.tabFilter -- fixed so it strips out CRs as before. * Modified writers to take Text. * Updated tests, benchmarks, trypandoc. [API change] Closes #3731.
72 lines
2 KiB
Haskell
72 lines
2 KiB
Haskell
{-# LANGUAGE OverloadedStrings #-}
|
|
module Tests.Writers.ConTeXt (tests) where
|
|
|
|
import Data.Text (unpack)
|
|
import Test.Tasty
|
|
import Test.Tasty.QuickCheck
|
|
import Tests.Helpers
|
|
import Text.Pandoc
|
|
import Text.Pandoc.Arbitrary ()
|
|
import Text.Pandoc.Builder
|
|
|
|
context :: (ToPandoc a) => a -> String
|
|
context = unpack . purely (writeConTeXt def) . toPandoc
|
|
|
|
context' :: (ToPandoc a) => a -> String
|
|
context' = unpack . purely (writeConTeXt def{ writerWrapText = WrapNone }) . toPandoc
|
|
|
|
{-
|
|
"my test" =: X =?> Y
|
|
|
|
is shorthand for
|
|
|
|
test context "my test" $ X =?> Y
|
|
|
|
which is in turn shorthand for
|
|
|
|
test context "my test" (X,Y)
|
|
-}
|
|
|
|
infix 4 =:
|
|
(=:) :: (ToString a, ToPandoc a)
|
|
=> String -> (a, String) -> TestTree
|
|
(=:) = test context
|
|
|
|
tests :: [TestTree]
|
|
tests = [ testGroup "inline code"
|
|
[ "with '}'" =: code "}" =?> "\\mono{\\}}"
|
|
, "without '}'" =: code "]" =?> "\\type{]}"
|
|
, testProperty "code property" $ \s -> null s ||
|
|
if '{' `elem` s || '}' `elem` s
|
|
then (context' $ code s) == "\\mono{" ++
|
|
(context' $ str s) ++ "}"
|
|
else (context' $ code s) == "\\type{" ++ s ++ "}"
|
|
]
|
|
, testGroup "headers"
|
|
[ "level 1" =:
|
|
headerWith ("my-header",[],[]) 1 "My header" =?> "\\section[my-header]{My header}"
|
|
]
|
|
, testGroup "bullet lists"
|
|
[ "nested" =:
|
|
bulletList [
|
|
plain (text "top")
|
|
<> bulletList [
|
|
plain (text "next")
|
|
<> bulletList [plain (text "bot")]
|
|
]
|
|
] =?> unlines
|
|
[ "\\startitemize[packed]"
|
|
, "\\item"
|
|
, " top"
|
|
, " \\startitemize[packed]"
|
|
, " \\item"
|
|
, " next"
|
|
, " \\startitemize[packed]"
|
|
, " \\item"
|
|
, " bot"
|
|
, " \\stopitemize"
|
|
, " \\stopitemize"
|
|
, "\\stopitemize" ]
|
|
]
|
|
]
|
|
|