Setup golden value testing

This commit is contained in:
Nathan McCarty 2025-02-21 15:29:25 -05:00
parent 4e83ca8d48
commit 72b102d071
10 changed files with 50 additions and 6 deletions

2
.gitignore vendored
View file

@ -1,2 +1,4 @@
build/
*.*~
test/failures
test/*/*/output

View file

@ -55,4 +55,5 @@ export
renderHtml : List Block -> Html "html"
renderHtml xs =
let (_ ** xs) = renderBlocks xs
in Normal "html" ["lang" =$ "en"] xs
in Normal "html" ["lang" =$ "en"]
[ Normal "body" [] xs ]

8
test/Main.idr Normal file
View file

@ -0,0 +1,8 @@
module Main
import Test.Golden.RunnerHelper
main : IO ()
main = goldenRunner
[ "Djot -> HTML Golden Values" `atDir` "djot-to-html"
]

View file

@ -0,0 +1,16 @@
module Main
import SSG.Djot
import SSG.HTML
import System
import System.File
main : IO ()
main = do
Right contents <- readFile "test.dj"
| Left err => do
printLn err
exitFailure
let parsed = djot contents
putStr . render . renderHtml $ parsed

View file

@ -0,0 +1,6 @@
<!DOCTYPE HTML>
<html lang=en>
<body>
<p>Hello World!</p>
</body>
</html>

View file

@ -0,0 +1,6 @@
rm -rf build/
flock "$1" pack -q install-deps test.ipkg
pack -q run test.ipkg
rm -rf build/

View file

@ -0,0 +1 @@
Hello World!

View file

@ -0,0 +1,7 @@
package a-test
depends = SSG
main = Main
executable = test

View file

@ -1,4 +0,0 @@
module Main
main : IO ()
main = putStrLn "Test successful!"

View file

@ -14,6 +14,7 @@ authors = "Nathan McCarty"
-- packages to add to search path
depends = SSG
, golden-runner-helper
-- modules to install
-- modules =
@ -24,7 +25,7 @@ main = Main
-- name of executable
executable = "SSG-test"
-- opts =
sourcedir = "src"
-- sourcedir = "."
-- builddir =
-- outputdir =