tomland-1.1.0.0: test/Test/Toml/Printer/Golden.hs
-- | This module contains golden tests for @Toml.Printer@.
module Test.Toml.Printer.Golden
( test_prettyGolden
) where
import Data.List.NonEmpty (NonEmpty ((:|)))
import Data.Ord (comparing)
import Test.Tasty (TestTree, testGroup)
import Test.Tasty.Silver (goldenVsAction)
import Toml (TOML, Value (..))
import Toml.Edsl (empty, mkToml, table, tableArray, (=:))
import Toml.PrefixTree (Key (..), (<|))
import Toml.Printer (PrintOptions (..), defaultOptions, prettyOptions)
example :: TOML
example = mkToml $ do
"b" =: "bb"
"a" =: "a"
"d" =: "ddd"
"c" =: "cccc"
table ("qux" <| "doo") $ do
"spam" =: "!"
"egg" =: "?"
table "foo" empty
table "doo" empty
table "baz" empty
tableArray "deepest" $
"ping" =: "pong"
:| [empty]
tableArray "deeper" $
"green" =: Bool True
:| [table "blue" ("red" =: Integer 255)]
noFormatting :: PrintOptions
noFormatting = PrintOptions
{ printOptionsSorting = Nothing
, printOptionsIndent = 0
}
-- | Decorate keys as tuples so spam comes before egg
spamEggDecorate :: Key -> (Int, Key)
spamEggDecorate k
| k == "spam" = (0, "spam")
| k == "egg" = (1, "egg")
| otherwise = (2, k)
spamEgg :: Key -> Key -> Ordering
spamEgg = comparing spamEggDecorate
test_prettyGolden :: TestTree
test_prettyGolden =
testGroup "Toml.Printer"
[ test "pretty_default" defaultOptions
, test "pretty_sorted_only" noFormatting { printOptionsSorting = Just compare }
, test "pretty_indented_only" noFormatting { printOptionsIndent = 4 }
, test "pretty_unformatted" noFormatting
, test "pretty_custom_sorted" noFormatting { printOptionsSorting = Just spamEgg }
]
where
test name options =
goldenVsAction name ("test/golden/" ++ name ++ ".golden")
(pure $ prettyOptions options example) id