pandoc/test/Tests/Readers/Jira.hs
2022-01-02 11:59:22 -08:00

204 lines
5.8 KiB
Haskell

{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
{- |
Module : Tests.Readers.Jira
Copyright : © 2019-2022 Albert Krewinel
License : GNU GPL, version 2 or above
Maintainer : Albert Krewinkel <tarleb@zeitkraut.de>
Stability : alpha
Portability : portable
Tests for the RST reader.
-}
module Tests.Readers.Jira (tests) where
import Prelude hiding (unlines)
import Data.Text (Text, unlines)
import Test.Tasty (TestTree, testGroup)
import Tests.Helpers (ToString, purely, test, (=?>))
import Text.Pandoc (def)
import Text.Pandoc.Readers.Jira (readJira)
import Text.Pandoc.Builder
jira :: Text -> Pandoc
jira = purely $ readJira def
infix 4 =:
(=:) :: ToString c
=> String -> (Text, c) -> TestTree
(=:) = test jira
tests :: [TestTree]
tests =
[ testGroup "para"
[ "Simple sentence" =:
"Hello, World!" =?> para "Hello, World!"
, "leading blank lines" =:
"\n\ntext" =?> para "text"
]
, testGroup "header"
[ "header" =:
"h1. Main\n" =?> header 1 "Main"
]
, testGroup "list"
[ "simple list" =:
"* foo\n* bar\n" =?> bulletList [para "foo", para "bar"]
, "list with minus as bullets" =:
"- foo\n- bar\n" =?> bulletList [para "foo", para "bar"]
, "ordered list / enumeration" =:
"# first\n# second\n" =?> orderedList [para "first", para "second"]
]
, testGroup "block quote"
[ "simple block quote" =:
"bq. _Don't_ quote me on this." =?>
blockQuote (para $ emph "Don't" <> space <> "quote me on this.")
, "block quote between paragraphs" =:
unlines [ "Regular text."
, "bq.This is a blockquote"
, "More text."
] =?>
mconcat [ para "Regular text."
, blockQuote (para "This is a blockquote")
, para "More text."
]
]
, testGroup "table"
[ "table without header" =:
"| one | two |\n| three | four |\n" =?>
simpleTable []
[ [para "one", para "two"]
, [para "three", para "four"]]
, "table with header" =:
"|| one || two ||\n| three | four |\n| five | six |\n" =?>
simpleTable [para "one", para "two"]
[ [para "three", para "four"]
, [para "five", para "six"]]
, "table with column header" =:
"|| language | haskell | lua |\n|| type | static | dynamic |\n" =?>
simpleTable []
[ [para "language", para "haskell", para "lua"]
, [para "type", para "static", para "dynamic"]]
, "table after paragraph" =:
"*tabletest*\n||Name|\n|Test|\n" =?>
para (strong "tabletest") <>
simpleTable [para "Name"] [[para "Test"]]
]
, testGroup "panel"
[ "simple panel" =:
"{panel}\nInterviewer: Jane Doe{panel}\n" =?>
divWith ("", ["panel"], []) (para "Interviewer: Jane Doe")
]
, testGroup "inlines"
[ "emphasis" =:
"*quid pro quo*" =?>
para (strong "quid pro quo")
, "deleted" =:
"-old-" =?>
para (strikeout "old")
, "monospaced" =:
"{{this *is* monospace}}" =?>
para (code "this is monospace")
, "sub- and superscript" =:
"HCO ~3~^-^" =?>
para ("HCO " <> subscript "3" <> superscript "-")
, "citation" =:
"Et tu, Brute? ??Caesar??" =?>
para ("Et tu, Brute? — " <> emph "Caesar")
, "color" =:
"This is {color:red}red{color}." =?>
para ("This is " <> spanWith ("", [], [("color", "red")]) "red" <> ".")
, "hexcolor" =:
"{color:#00875A}green{color}" =?>
para (spanWith ("", [], [("color", "#00875A")]) "green")
, "linebreak" =:
"first\nsecond" =?>
para ("first" <> linebreak <> "second")
, testGroup "links"
[ "external" =:
"[Example|https://example.org]" =?>
para (link "https://example.org" "" "Example")
, "URL in alias" =:
"[See https://example.com|https://example.com]" =?>
para (link "https://example.com" "" "See https://example.com")
, "email" =:
"[mailto:me@example.org]" =?>
para (link "mailto:me@example.org" "" "me@example.org")
, "email with description" =:
"[email|mailto:me@example.org]" =?>
para (link "mailto:me@example.org" "" "email")
, "attachment" =:
"[^example.txt]" =?>
para (linkWith ("", ["attachment"], []) "example.txt" "" "example.txt")
, "attachment with description" =:
"[an example^example.txt]" =?>
para (linkWith ("", ["attachment"], []) "example.txt" "" "an example")
, "user" =:
"[~johndoe]" =?>
para (linkWith ("", ["user-account"], []) "~johndoe" "" "~johndoe")
, "user with description" =:
"[John Doe|~johndoe]" =?>
para (linkWith ("", ["user-account"], []) "~johndoe" "" "John Doe")
, "'smart' link" =:
"[x|http://example.com|smart-link]" =?>
para (linkWith ("", ["smart-link"], []) "http://example.com" "" "x")
, "'smart' card" =:
"[x|http://example.com|smart-card]" =?>
para (linkWith ("", ["smart-card"], []) "http://example.com" "" "x")
]
, "image" =:
"!https://example.com/image.jpg!" =?>
para (image "https://example.com/image.jpg" "" mempty)
, "thumbnail image" =:
"!image.jpg|thumbnail!" =?>
para (imageWith ("", ["thumbnail"], []) "image.jpg" "" mempty)
, "image with attributes" =:
"!image.gif|align=right, vspace=4, title=Hello!" =?>
let attr = ("", [], [("align", "right"), ("vspace", "4")])
in para $ imageWith attr "image.gif" "Hello" mempty
, "inserted text" =:
"+the new version+" =?>
para (underline "the new version")
, "HTML entity" =:
"me &amp; you" =?> para "me & you"
, "non-strikeout dashes" =:
"20.09-15 2-678" =?>
para "20.09-15 2-678"
]
]