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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
{-# LANGUAGE OverloadedStrings #-}
module Tests.Writers.ConTeXt (tests) where
import Data.Text (unpack, pack)
import Test.Tasty
import Test.Tasty.HUnit (HasCallStack)
import Test.Tasty.QuickCheck
import Tests.Helpers
import Text.Pandoc
import Text.Pandoc.Arbitrary ()
import Text.Pandoc.Builder
import qualified Data.Text as T
context :: (ToPandoc a) => a -> String
context = unpack . purely (writeConTeXt def) . toPandoc
context' :: (ToPandoc a) => a -> String
context' = unpack . purely (writeConTeXt def{ writerWrapText = WrapNone }) . toPandoc
contextNtb :: (ToPandoc a) => a -> String
contextNtb = unpack . purely (writeConTeXt def{ writerExtensions = enableExtension Ext_ntb pandocExtensions }) . toPandoc
contextSection :: (ToPandoc a) => a -> String
contextSection = unpack
. purely (writeConTeXt def{ writerTopLevelDivision = TopLevelSection })
. 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, HasCallStack)
=> String -> (a, String) -> TestTree
(=:) = test context
tests :: [TestTree]
tests =
[ testGroup "inline code"
[ "with '}'" =: code "}" =?> "\\type\"}\""
, "without '}'" =: code "]" =?> "\\type{]}"
, "span with ID" =:
spanWith ("city", [], []) "Berlin" =?>
"\\reference[city]{}Berlin"
, testProperty "code property" $ \s ->
null s || '\n' `elem` s ||
case T.stripPrefix "\\type" (pack $ context' (code $ pack s))
>>= T.uncons of
Just (c, _) -> c `notElem` s
Nothing -> False
]
, testGroup "headers"
[ "level 1" =:
headerWith ("my-header",[],[]) 1 "My header" =?>
"\\startsectionlevel[title={My header},reference={my-header}]\n" <>
"\n" <>
"\\stopsectionlevel"
, test contextSection "Section as top-level" $
( headerWith ("header1", [], []) 1 (text "Header1")
<> headerWith ("header2", [], []) 2 (text "Header2")
<> headerWith ("header3", [], []) 3 (text "Header3")
<> headerWith ("header4", [], []) 4 (text "Header4")
<> headerWith ("header5", [], []) 5 (text "Header5")
<> headerWith ("header6", [], []) 6 (text "Header6"))
=?>
unlines
[ "\\startsection[title={Header1},reference={header1}]\n"
, "\\startsubsection[title={Header2},reference={header2}]\n"
, "\\startsubsubsection[title={Header3},reference={header3}]\n"
, "\\startsubsubsubsection[title={Header4},reference={header4}]\n"
, "\\startsubsubsubsubsection[title={Header5},reference={header5}]\n"
, "\\startsubsubsubsubsubsection[title={Header6},reference={header6}]\n"
, "\\stopsubsubsubsubsubsection\n"
, "\\stopsubsubsubsubsection\n"
, "\\stopsubsubsubsection\n"
, "\\stopsubsubsection\n"
, "\\stopsubsection\n"
, "\\stopsection" ]
]
, 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" ]
]
, testGroup "natural tables"
[ test contextNtb "table with header and caption" $
let capt = text "Table 1"
aligns = [ (AlignRight, ColWidthDefault)
, (AlignLeft, ColWidthDefault)
, (AlignCenter, ColWidthDefault)
, (AlignDefault, ColWidthDefault) ]
headers = [plain $ text "Right",
plain $ text "Left",
plain $ text "Center",
plain $ text "Default"]
rows = [[plain $ text "1.1",
plain $ text "1.2",
plain $ text "1.3",
plain $ text "1.4"]
,[plain $ text "2.1",
plain $ text "2.2",
plain $ text "2.3",
plain $ text "2.4"]
,[plain $ text "3.1",
plain $ text "3.2",
plain $ text "3.3",
plain $ text "3.4"]]
toRow = Row nullAttr . map simpleCell
in table (simpleCaption $ plain capt)
aligns
(TableHead nullAttr [toRow headers])
[TableBody nullAttr 0 [] $ map toRow rows]
(TableFoot nullAttr [])
=?> unlines [ "\\startplacetable[title={Table 1}]"
, "\\setupTABLE[column][1][align=left]"
, "\\setupTABLE[column][2][align=right]"
, "\\setupTABLE[column][3][align=middle]"
, "\\setupTABLE[column][4][align=left]"
, "\\bTABLE"
, "\\bTABLEhead"
, "\\bTR"
, "\\bTH Right\\eTH"
, "\\bTH Left\\eTH"
, "\\bTH Center\\eTH"
, "\\bTH Default\\eTH"
, "\\eTR"
, "\\eTABLEhead"
, "\\bTABLEbody"
, "\\bTR"
, "\\bTD 1.1\\eTD"
, "\\bTD 1.2\\eTD"
, "\\bTD 1.3\\eTD"
, "\\bTD 1.4\\eTD"
, "\\eTR"
, "\\bTR"
, "\\bTD 2.1\\eTD"
, "\\bTD 2.2\\eTD"
, "\\bTD 2.3\\eTD"
, "\\bTD 2.4\\eTD"
, "\\eTR"
, "\\bTR"
, "\\bTD 3.1\\eTD"
, "\\bTD 3.2\\eTD"
, "\\bTD 3.3\\eTD"
, "\\bTD 3.4\\eTD"
, "\\eTR"
, "\\eTABLEbody"
, "\\bTABLEfoot"
, "\\eTABLEfoot"
, "\\eTABLE"
, "\\stopplacetable" ]
]
]
|