diff --git a/ChangeLog.md b/ChangeLog.md index 41c477f..6f26a1a 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,7 @@ +## 0.3.2 + +- Add 'ediffGolden1', a variant of 'ediffGolden' with an additional argument. + ## 0.3.1 - Support GHC-8.6.5...9.10.1 diff --git a/src/Data/TreeDiff/Golden.hs b/src/Data/TreeDiff/Golden.hs index f827e02..5670965 100644 --- a/src/Data/TreeDiff/Golden.hs +++ b/src/Data/TreeDiff/Golden.hs @@ -1,6 +1,7 @@ -- | "Golden tests" using 'ediff' comparison. module Data.TreeDiff.Golden ( ediffGolden, + ediffGolden1, ) where import Data.TreeDiff @@ -41,9 +42,23 @@ ediffGolden -> FilePath -- ^ path to "golden file" -> IO a -- ^ result value -> testTree -ediffGolden impl testName fp x = impl testName expect actual cmp wrt +ediffGolden impl testName fp x = ediffGolden1 impl' testName fp (\() -> x) where + impl' n expect actual = impl n expect (actual ()) + +-- | Like 'ediffGolden1' but with an additional argument for generation of actual value. +-- +-- @since 0.3.2 +-- +ediffGolden1 + :: (Eq a, ToExpr a) + => (testName -> IO Expr -> (arg -> IO Expr) -> (Expr -> Expr -> IO (Maybe String)) -> (Expr -> IO ()) -> testTree) -- ^ 'goldenTest' + -> testName -- ^ test name + -> FilePath -- ^ path to "golden file" + -> (arg -> IO a) -- ^ result value + -> testTree +ediffGolden1 impl testName fp x = impl testName expect actual cmp wrt where - actual = fmap toExpr x + actual arg = fmap toExpr (x arg) expect = do contents <- BS.readFile fp case parse (exprParser <* eof) fp $ TE.decodeUtf8 contents of diff --git a/tree-diff.cabal b/tree-diff.cabal index e1986a7..d1dc439 100644 --- a/tree-diff.cabal +++ b/tree-diff.cabal @@ -1,7 +1,6 @@ cabal-version: 2.2 name: tree-diff -version: 0.3.1 -x-revision: 1 +version: 0.3.2 synopsis: Diffing of (expression) trees. category: Data, Testing description: