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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DerivingVia #-}
{-# LANGUAGE ExistentialQuantification #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE ImplicitParams #-}
module Test.Framework (
TestTree,
testGroup,
testGroupCollapse,
testProperty,
withResource,
withResource',
runTests,
defaultMain,
Options(..),
-- * Compatibility
TestName,
) where
import Control.Monad (forM)
import Control.Monad.Trans.Writer.CPS
import Control.Monad.IO.Class
import Control.Monad.IO.Unlift
import Data.IORef (newIORef, readIORef, atomicModifyIORef')
import Data.List (isInfixOf)
import Data.Maybe (isJust, mapMaybe, fromJust)
import Data.Monoid (Sum(..))
import Data.String (fromString)
import Data.Time.Clock
import GHC.Generics (Generic, Generically(..))
import System.Environment
import System.Exit
import System.IO (hFlush, hPutStrLn, stdout, stderr)
import qualified Hedgehog as H
import qualified Hedgehog.Internal.Config as H
import qualified Hedgehog.Internal.Property as H
import qualified Hedgehog.Internal.Report as H
import qualified Hedgehog.Internal.Runner as H
import qualified Hedgehog.Internal.Seed as H.Seed
data TestTree
= Group Bool String [TestTree]
| forall a. Resource (IO a) (a -> IO ()) (a -> TestTree)
| HP String H.Property
type TestName = String
testGroup :: String -> [TestTree] -> TestTree
testGroup = Group False
testGroupCollapse :: String -> [TestTree] -> TestTree
testGroupCollapse = Group True
-- | The @a -> TestTree@ function must use the @a@ only inside properties: when
-- not actually running properties, it will be passed 'undefined'.
withResource :: IO a -> (a -> IO ()) -> (a -> TestTree) -> TestTree
withResource = Resource
-- | Same caveats as 'withResource'.
withResource' :: IO a -> (a -> TestTree) -> TestTree
withResource' make fun = withResource make (\_ -> return ()) fun
testProperty :: String -> H.Property -> TestTree
testProperty = HP
filterTree :: Options -> TestTree -> Maybe TestTree
filterTree (Options { optsPattern = pat }) = go ""
where
go path (Group collapse name trees) =
case mapMaybe (go (path++"/"++name)) trees of
[] -> Nothing
trees' -> Just (Group collapse name trees')
go path (Resource make free fun) =
case go path (fun undefined) of
Nothing -> Nothing
Just _ -> Just $ Resource make free (fromJust . go path . fun)
go path hp@(HP name _)
| pat `isInfixOf` (path ++ "/" ++ name) = Just hp
| otherwise = Nothing
computeMaxLen :: TestTree -> Int
computeMaxLen = go 0
where
go :: Int -> TestTree -> Int
go indent (Group True name trees) = maximum (2*indent + length name : map (go (indent+1)) trees)
go indent (Group False _ trees) = maximum (0 : map (go (indent+1)) trees)
go indent (Resource _ _ fun) = go indent (fun undefined)
go indent (HP name _) = 2 * indent + length name
data Options = Options
{ optsPattern :: String
, optsHelp :: Bool }
deriving (Show)
defaultOptions :: Options
defaultOptions = Options "" False
parseOptions :: [String] -> Options -> Either String Options
parseOptions [] opts = pure opts
parseOptions ("-h":args) opts = parseOptions args opts { optsHelp = True }
parseOptions ("--help":args) opts = parseOptions args opts { optsHelp = True }
parseOptions ("-p":arg:args) opts
| optsPattern opts == "" = parseOptions args opts { optsPattern = arg }
| otherwise = Left "Multiple '-p' arguments given"
parseOptions (arg:_) _ = Left $ "Unrecognised argument: '" ++ arg ++ "'"
printUsage :: IO ()
printUsage = do
progname <- getProgName
putStr $ unlines
["Usage: " ++ progname ++ " [options]"
,"Options:"
," -h / --help Show this help"
," -p PATTERN Only tests whose path contains PATTERN are run. The path of a"
," test looks like: '/group1/group2/testname'."]
defaultMain :: TestTree -> IO ()
defaultMain tree = do
args <- getArgs
case parseOptions args defaultOptions of
Left err -> die err
Right opts
| optsHelp opts -> printUsage >> exitSuccess
| otherwise -> runTests opts tree >>= exitWith
data Stats = Stats
{ statsOK :: Sum Int
, statsTotal :: Sum Int }
deriving (Show, Generic)
deriving (Semigroup, Monoid) via (Generically Stats)
newtype M a = M (WriterT Stats IO a)
deriving newtype (Functor, Applicative, Monad, MonadIO)
-- | Not totally exception-safe (may lose writes if an exception gets thrown),
-- but we don't care about that here.
instance MonadUnliftIO M where
withRunInIO f = M $ writerT $ do
accum <- newIORef mempty
res <- f $ \(M w) -> do (x, s') <- runWriterT w
atomicModifyIORef' accum (\s -> (s <> s', x))
output <- readIORef accum
return (res, output)
tellStats :: Stats -> M ()
tellStats s = M (tell s)
runM :: M a -> IO (a, Stats)
runM (M w) = runWriterT w
runTests :: Options -> TestTree -> IO ExitCode
runTests options = \tree' ->
case filterTree options tree' of
Nothing -> do hPutStrLn stderr "No tests matched the given pattern."
return (ExitFailure 1)
Just tree -> do
let !maxlen = computeMaxLen tree
starttm <- getCurrentTime
(success, stats) <- runM $ let ?maxlen = maxlen in go 0 tree
endtm <- getCurrentTime
printStats stats (diffUTCTime endtm starttm)
return (if isJust success then ExitSuccess else ExitFailure 1)
where
-- If all tests are successful, returns the number of output lines produced
go :: (?maxlen :: Int) => Int -> TestTree -> M (Maybe Int)
go indent (Group collapse name trees) = do
liftIO $ putStrLn (replicate (2 * indent) ' ' ++ name)
starttm <- liftIO getCurrentTime
mlns <- fmap (fmap sum . sequence) . forM trees $ go (indent + 1)
endtm <- liftIO getCurrentTime
case mlns of
Just lns | collapse -> do
let thislen = 2*indent + length name
liftIO $ putStrLn $ concat (replicate (lns+1) "\x1B[A\x1B[2K") ++ "\x1B[G" ++
replicate (2 * indent) ' ' ++ name ++ ": " ++ replicate (?maxlen - thislen) ' ' ++
"\x1B[32mOK\x1B[0m" ++
prettyDuration False (realToFrac (diffUTCTime endtm starttm))
return (Just 1)
_ -> return mlns
go indent (Resource make cleanup fun) = do
value <- liftIO make
success <- go indent (fun value)
liftIO $ cleanup value
return success
go indent (HP name (H.Property config test)) = do
let thislen = 2*indent + length name
liftIO $ putStr (replicate (2*indent) ' ' ++ name ++ ": " ++ replicate (?maxlen - thislen) ' ')
liftIO $ hFlush stdout
seed <- H.Seed.random
starttm <- liftIO getCurrentTime
report <- liftIO $ H.checkReport config 0 seed test (outputProgress (?maxlen + 2))
endtm <- liftIO getCurrentTime
liftIO $ printResult report (diffUTCTime endtm starttm)
let ok = H.reportStatus report == H.OK
tellStats $ Stats { statsOK = Sum (fromEnum ok), statsTotal = 1 }
return (if ok then Just 1 else Nothing)
outputProgress :: Int -> H.Report H.Progress -> IO ()
outputProgress indent report = do
str <- H.renderProgress H.EnableColor (Just (fromString "")) report
putStr (replace '\n' " " str ++ "\x1B[" ++ show (indent+1) ++ "G")
hFlush stdout
printResult :: H.Report H.Result -> NominalDiffTime -> IO ()
printResult report timeTaken = do
str <- H.renderResult H.EnableColor (Just (fromString "")) report
if H.reportStatus report == H.OK
then putStrLn ("\x1B[K" ++ str ++ prettyDuration False (realToFrac timeTaken))
else putStrLn ("\x1B[K" ++ str)
printStats :: Stats -> NominalDiffTime -> IO ()
printStats stats timeTaken
| statsOK stats == statsTotal stats = do
putStrLn $ "\x1B[32mAll " ++ show (statsTotal stats) ++
" tests passed." ++ prettyDuration True (realToFrac timeTaken) ++ "\x1B[0m"
| otherwise =
let nfailed = statsTotal stats - statsOK stats
in putStrLn $ "\x1B[31mFailed " ++ show nfailed ++ " out of " ++ show (statsTotal stats) ++
" tests." ++ prettyDuration True (realToFrac timeTaken) ++ "\x1B[0m"
prettyDuration :: Bool -> Double -> String
prettyDuration False x | x < 0.5 = ""
prettyDuration _ x =
let str = show (round (x * 100) :: Int)
str' = replicate (3 - length str) '0' ++ str
(pre, post) = splitAt (length str' - 2) str'
in " (" ++ pre ++ "." ++ post ++ "s)"
replace :: Eq a => a -> [a] -> [a] -> [a]
replace x ys = concatMap (\y -> if y == x then ys else [y])
|