forked from UnkindPartition/tasty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRun.hs
More file actions
687 lines (620 loc) · 25.5 KB
/
Run.hs
File metadata and controls
687 lines (620 loc) · 25.5 KB
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
-- | Running tests
{-# LANGUAGE ScopedTypeVariables, ExistentialQuantification, RankNTypes,
FlexibleContexts, CPP, LambdaCase,
RecordWildCards, NamedFieldPuns #-}
module Test.Tasty.Run
( Status(..)
, StatusMap
, launchTestTree
, applyTopLevelPlusTestOptions
, DependencyException(..)
) where
import qualified Data.IntMap.Strict as IntMap
import qualified Data.Sequence as Seq
import qualified Data.Foldable as F
import Data.Int (Int64)
import Data.Maybe
import Data.List (intercalate)
import Data.Graph (SCC(..), stronglyConnComp)
import Data.Sequence (Seq, (|>), (<|), (><))
import Control.Monad (forever, guard, join, liftM)
import Control.Monad.IO.Class (liftIO)
import Control.Monad.Trans.Reader (ReaderT(..), local, ask)
import Control.Monad.Trans.Writer (execWriterT, tell)
import Control.Concurrent
import Control.Concurrent.STM
import Control.Concurrent.Async
import Control.Exception as E
import Control.Arrow
import Data.Monoid (First(..))
import GHC.Conc (labelThread)
#if MIN_VERSION_base(4,18,0)
import Data.Traversable (mapAccumM)
#endif
#ifdef MIN_VERSION_unbounded_delays
import Control.Concurrent.Timeout (timeout)
#else
import System.Timeout (timeout)
#endif
import Test.Tasty.Core
import Test.Tasty.Parallel
import Test.Tasty.Patterns
import Test.Tasty.Patterns.Types
import Test.Tasty.Options
import Test.Tasty.Options.Core
import Test.Tasty.Runners.Reducers
import Test.Tasty.Runners.Utils (timed, forceElements)
import Test.Tasty.Providers.ConsoleFormat (noResultDetails)
-- | Current status of a test.
--
-- @since 0.1
data Status
= NotStarted
-- ^ test has not started running yet
| Executing Progress
-- ^ test is being run
| Done Result
-- ^ test finished with a given result
deriving
( Show -- ^ @since 1.2
)
-- | Mapping from test numbers (starting from 0) to their status variables.
--
-- This is what an ingredient uses to analyse and display progress, and to
-- detect when tests finish.
--
-- @since 0.1
type StatusMap = IntMap.IntMap (TVar Status)
data Resource r
= NotCreated
| BeingCreated
| FailedToCreate SomeException
| Created r
| BeingDestroyed
| Destroyed
instance Show (Resource r) where
show r = case r of
NotCreated -> "NotCreated"
BeingCreated -> "BeingCreated"
FailedToCreate exn -> "FailedToCreate " ++ show exn
Created {} -> "Created"
BeingDestroyed -> "BeingDestroyed"
Destroyed -> "Destroyed"
data Initializer
= forall res . Initializer
(IO res)
(TVar (Resource res))
data Finalizer
= forall res . Finalizer
(res -> IO ())
(TVar (Resource res))
(TVar Int)
-- | Execute a test taking care of resources
executeTest
:: ((Progress -> IO ()) -> IO Result)
-- ^ the action to execute the test, which takes a progress callback as
-- a parameter
-> TVar Status -- ^ variable to write status to
-> Timeout -- ^ optional timeout to apply
-> HideProgress -- ^ hide progress option
-> Seq Initializer -- ^ initializers (to be executed in this order)
-> Seq Finalizer -- ^ finalizers (to be executed in this order)
-> IO ()
executeTest action statusVar timeoutOpt hideProgressOpt inits fins = mask $ \restore -> do
resultOrExn <- try . restore $ do
-- N.B. this can (re-)throw an exception. It's okay. By design, the
-- actual test will not be run, then. We still run all the
-- finalizers.
--
-- There's no point to transform these exceptions to something like
-- EitherT, because an async exception (cancellation) can strike
-- anyway.
initResources
let
cursorMischiefManaged = do
atomically $ writeTVar statusVar (Executing emptyProgress)
action yieldProgress
-- If all initializers ran successfully, actually run the test.
-- We run it in a separate thread, so that the test's exception
-- handler doesn't interfere with our timeout.
withAsync cursorMischiefManaged $ \asy -> do
labelThread (asyncThreadId asy) "tasty_test_execution_thread"
timed $ applyTimeout timeoutOpt $ do
r <- wait asy
-- Not only wait for the result to be returned, but make sure to
-- evaluate it inside applyTimeout; see #280.
evaluate $
resultOutcome r `seq`
forceElements (resultDescription r) `seq`
forceElements (resultShortDescription r)
return r
-- no matter what, try to run each finalizer
mbExn <- destroyResources restore
atomically . writeTVar statusVar . Done $
case resultOrExn <* maybe (Right ()) Left mbExn of
Left ex -> exceptionResult ex
Right (t,r) -> r { resultTime = t }
where
initResources :: IO ()
initResources =
F.forM_ inits $ \(Initializer doInit initVar) -> do
join $ atomically $ do
resStatus <- readTVar initVar
case resStatus of
NotCreated -> do
-- signal to others that we're taking care of the resource
-- initialization
writeTVar initVar BeingCreated
return $
(do
res <- doInit
atomically $ writeTVar initVar $ Created res
) `E.catch` \exn -> do
atomically $ writeTVar initVar $ FailedToCreate exn
throwIO exn
BeingCreated -> retry
Created {} -> return $ return ()
FailedToCreate exn -> return $ throwIO exn
-- If the resource is destroyed or being destroyed
-- while we're starting a test, the test suite is probably
-- shutting down. We are about to be killed.
-- (In fact we are probably killed already, so these cases are
-- unlikely to occur.)
-- In any case, the most sensible thing to do is to go to
-- sleep, awaiting our fate.
Destroyed -> return $ sleepIndefinitely
BeingDestroyed -> return $ sleepIndefinitely
applyTimeout :: Timeout -> IO Result -> IO Result
applyTimeout NoTimeout a = a
applyTimeout (Timeout t tstr) a = do
let
timeoutResult =
Result
{ resultOutcome = Failure $ TestTimedOut t
, resultDescription =
"Timed out after " ++ tstr
, resultShortDescription = "TIMEOUT"
, resultTime = fromIntegral t
, resultDetailsPrinter = noResultDetails
}
-- If compiled with unbounded-delays then t' :: Integer, otherwise t' :: Int
let t' = fromInteger (min (max 0 t) (toInteger (maxBound :: Int64)))
fromMaybe timeoutResult <$> timeout t' a
-- destroyResources should not be interrupted by an exception
-- Here's how we ensure this:
--
-- * the finalizer is wrapped in 'try'
-- * async exceptions are masked by the caller
-- * we don't use any interruptible operations here (outside of 'try')
destroyResources :: (forall a . IO a -> IO a) -> IO (Maybe SomeException)
destroyResources restore = do
-- remember the first exception that occurred
liftM getFirst . execWriterT . getTraversal $
flip F.foldMap fins $ \fin@(Finalizer _ _ finishVar) ->
Traversal $ do
iAmLast <- liftIO $ atomically $ do
nUsers <- readTVar finishVar
let nUsers' = nUsers - 1
writeTVar finishVar nUsers'
return $ nUsers' == 0
mbExcn <- liftIO $
if iAmLast
then destroyResource restore fin
else return Nothing
tell $ First mbExcn
yieldProgress _newP | getHideProgress hideProgressOpt =
pure ()
yieldProgress newP | newP == emptyProgress =
-- This could be changed to `Maybe Progress` to lets more easily indicate
-- when progress should try to be printed ?
pure ()
yieldProgress newP = liftIO
. atomically
. writeTVar statusVar
$ Executing newP
-- | Traversal type used in 'createTestActions'
type Tr = ReaderT (Path, Seq Dependency) IO (TestActionTree UnresolvedAction)
-- | Exceptions related to dependencies between tests.
--
-- @since 1.2
newtype DependencyException
= DependencyLoop [[Path]]
-- ^ Test dependencies form cycles. In other words, test A cannot start
-- until test B finishes, and test B cannot start until test
-- A finishes. Field lists detected cycles.
--
-- @since 1.5
instance Show DependencyException where
show (DependencyLoop css) = "Test dependencies have cycles:\n" ++ showCycles css
where
showCycles = intercalate "\n" . map showCycle
showPath = intercalate "." . F.toList
-- For clarity in the error message, the first element is repeated at the end
showCycle [] = "- <empty cycle>"
showCycle (x:xs) = "- " ++ intercalate ", " (map showPath (x:xs ++ [x]))
instance Exception DependencyException
-- | Specifies how to calculate a dependency
data DependencySpec
= ExactDep (Seq TestName) (TVar Status)
-- ^ Dependency specified by 'TestGroup'. Note that the first field is only
-- there for dependency cycle detection - which can be introduced by using
-- 'PatternDep'.
| PatternDep Expr
-- ^ All tests matching this 'Expr' should be considered dependencies
deriving (Eq)
instance Show DependencySpec where
show (PatternDep dep) = "PatternDep (" ++ show dep ++ ")"
show (ExactDep testName _) = "ExactDep (" ++ show testName ++ ") (<TVar>)"
-- | Dependency of a test. Either it points to an exact path it depends on, or
-- contains a pattern that should be tested against all tests in a 'TestTree'.
data Dependency = Dependency DependencyType DependencySpec
deriving (Eq, Show)
-- | Is given 'Dependency' a dependency that was introduced with 'After'?
isPatternDependency :: Dependency -> Bool
isPatternDependency (Dependency _ (PatternDep {})) = True
isPatternDependency _ = False
#if !MIN_VERSION_base(4,18,0)
-- The mapAccumM function behaves like a combination of mapM and mapAccumL that
-- traverses the structure while evaluating the actions and passing an accumulating
-- parameter from left to right. It returns a final value of this accumulator
-- together with the new structure. The accumulator is often used for caching the
-- intermediate results of a computation.
mapAccumM :: Monad m => (acc -> x -> m (acc, y)) -> acc -> [x] -> m (acc, [y])
mapAccumM _ acc [] = return (acc, [])
mapAccumM f acc (x:xs) = do
(acc', y) <- f acc x
(acc'', ys) <- mapAccumM f acc' xs
return (acc'', y:ys)
#endif
-- | An action with meta information
data TestAction act = TestAction
{ testAction :: act
-- ^ Some action, typically 'UnresolvedAction', 'ResolvedAction', or 'Action'.
, testPath :: Path
-- ^ Path pointing to this action (a series of group names + a test name)
, testDeps :: Seq Dependency
-- ^ Dependencies introduced by AWK-like patterns
, testStatus :: TVar Status
-- ^ Status var that can be used to monitor test progress
}
-- | A test that still needs to be given its resource initializers and finalizers
type UnresolvedAction = Seq Initializer -> Seq Finalizer -> IO ()
-- | A test that, unlike 'UnresolvedAction', has been given its initializers and
-- finalizers.
type ResolvedAction = IO ()
-- | Number of 'TAction' leafs in a 'TestActionTree'. Used to prevent repeated
-- size calculations.
type Size = Int
-- | Simplified version of 'TestTree' that only includes the tests to be run (as
-- a 'TestAction') and the resources needed to run them (as 'Initializer's and
-- 'Finalizer's).
data TestActionTree act
= TResource Initializer Finalizer (TestActionTree act)
| TGroup Size [TestActionTree act]
-- ^ Note the 'Size' field of this constructor: it stores how many 'TAction's
-- are present in the tree. Functions using constructing this constructor
-- should take care, or use 'tGroup' instead. If this constructor is ever
-- exported, we should probably move it to its own module and expose only a
-- smart constructor using pattern synonyms. For now, this seems more trouble
-- than it's worth, given the number of types it needs defined in this module.
| TAction (TestAction act)
-- | Smart constructor for 'TGroup'. Fills in 'Size' field by summing the size
-- of the given test trees.
tGroup :: [TestActionTree act] -> TestActionTree act
tGroup trees = TGroup (sum (map testActionTreeSize trees)) trees
-- | Size of a 'TestActionTree', i.e. the number of 'TAction's it contains.
testActionTreeSize :: TestActionTree act -> Int
testActionTreeSize = \case
TResource _ _ tree -> testActionTreeSize tree
TGroup size _ -> size
TAction _ -> 1
-- | Collect initializers and finalizers introduced by 'TResource' and apply them
-- to each action.
resolveTestActions :: TestActionTree UnresolvedAction -> TestActionTree ResolvedAction
resolveTestActions = go Seq.empty Seq.empty
where
go inits fins = \case
TResource ini fin tree ->
TResource ini fin $ go (inits |> ini) (fin <| fins) tree
TGroup size trees ->
TGroup size $ map (go inits fins) trees
TAction (TestAction {..})->
TAction $ TestAction { testAction = testAction inits fins, .. }
-- | Turn a test tree into a list of actions to run tests coupled with
-- variables to watch them. Additionally, a collection of finalizers is
-- returned that can be used to clean up resources in case of unexpected
-- events.
createTestActions
:: OptionSet
-> TestTree
-> IO ([TestAction Action], Seq Finalizer)
createTestActions opts0 tree = do
-- Folding the test tree reduces it to a 'TestActionTree', which is a simplified
-- version of 'TestTree' that only includes the tests to be run, resources needed
-- to run them, and meta information needed to watch test progress and calculate
-- dependencies in 'resolveDeps'.
unresolvedTestTree :: TestActionTree UnresolvedAction <-
flip runReaderT (mempty :: (Path, Seq Dependency)) $
foldTestTree0 (pure (tGroup [])) (TreeFold { .. }) opts0 tree
let
finalizers :: Seq Finalizer
finalizers = collectFinalizers unresolvedTestTree
tests :: [TestAction ResolvedAction]
tests = collectTests (resolveTestActions unresolvedTestTree)
case resolveDeps tests of
Right tests' -> return (tests', finalizers)
Left cycles -> throwIO (DependencyLoop cycles)
where
-- * Functions used in 'TreeFold'
foldSingle :: IsTest t => OptionSet -> TestName -> t -> Tr
foldSingle opts name test = do
testStatus <- liftIO $ newTVarIO NotStarted
(parentPath, testDeps) <- ask
let
testPath = parentPath |> name
testAction = executeTest (run opts test) testStatus (lookupOption opts) (lookupOption opts)
pure $ TAction (TestAction {..})
foldResource :: OptionSet -> ResourceSpec a -> (IO a -> Tr) -> Tr
foldResource _opts (ResourceSpec doInit doRelease) a = do
initVar <- liftIO $ newTVarIO NotCreated
testTree <- a (getResource initVar)
finishVar <- liftIO $ newTVarIO (testActionTreeSize testTree)
let
ini = Initializer doInit initVar
fin = Finalizer doRelease initVar finishVar
pure $ TResource ini fin testTree
foldAfter :: OptionSet -> DependencyType -> Expr -> Tr -> Tr
foldAfter _opts depType pat = local (second (Dependency depType (PatternDep pat) <|))
foldGroup :: OptionSet -> TestName -> [Tr] -> Tr
foldGroup opts name trees =
fmap tGroup $ local (first (|> name)) $
case lookupOption opts of
Independent Parallel -> sequence trees
Independent NonParallel -> foldSequential AllFinish trees
Dependent depType -> foldSequential depType trees
foldSequential :: DependencyType -> [Tr] -> ReaderT (Path, Seq Dependency) IO [TestActionTree UnresolvedAction]
foldSequential depType =
fmap snd . mapAccumM (goSeqGroup depType) mempty
-- * Utility functions
collectTests :: TestActionTree act -> [TestAction act]
collectTests = \case
TResource _ _ t -> collectTests t
TGroup _ trees -> concatMap collectTests trees
TAction action -> [action]
collectFinalizers :: TestActionTree act -> Seq Finalizer
collectFinalizers = \case
TResource _ fin t -> collectFinalizers t |> fin
TGroup _ trees -> mconcat (map collectFinalizers trees)
TAction _ -> mempty
goSeqGroup
:: DependencyType
-> Seq Dependency
-> Tr
-> ReaderT (Path, Seq Dependency) IO (Seq Dependency, TestActionTree UnresolvedAction)
goSeqGroup depType prevDeps treeM = do
tree0 <- local (second (prevDeps ><)) treeM
let
toDep TestAction {..} = Dependency depType (ExactDep testPath testStatus)
deps0 = Seq.fromList (toDep <$> collectTests tree0)
-- If this test tree is empty (either due to it being actually empty, or due
-- to all tests being filtered) we need to propagate the previous dependencies.
deps1 = if Seq.null deps0 then prevDeps else deps0
pure (deps1, tree0)
-- | Take care of the dependencies.
--
-- Return 'Left' if there is a dependency cycle, containing the detected cycles.
resolveDeps
:: [TestAction ResolvedAction]
-> Either [[Path]] [TestAction Action]
resolveDeps tests = maybeCheckCycles $ do
TestAction { testAction=run_test, .. } <- tests
let
deps' = concatMap findDeps testDeps
getStatus :: STM ActionStatus
getStatus = foldr
(\(deptype, statusvar, _) k -> do
status <- readTVar statusvar
case status of
Done result
| deptype == AllFinish || resultSuccessful result -> k
| otherwise -> return ActionSkip
_ -> return ActionWait
)
(return ActionReady)
deps'
let
dep_paths = map (\(_, _, path) -> path) deps'
action = Action
{ actionStatus = getStatus
, actionRun = run_test
, actionSkip = writeTVar testStatus $ Done $ Result
-- See Note [Skipped tests]
{ resultOutcome = Failure TestDepFailed
, resultDescription = ""
, resultShortDescription = "SKIP"
, resultTime = 0
, resultDetailsPrinter = noResultDetails
}
}
return (TestAction { testAction = action, .. }, (testPath, dep_paths))
where
-- Skip cycle checking if no patterns are used: sequential test groups can't
-- introduce cycles on their own.
maybeCheckCycles
| any (any isPatternDependency . testDeps) tests = checkCycles
| otherwise = Right . map fst
findDeps :: Dependency -> [(DependencyType, TVar Status, Seq TestName)]
findDeps (Dependency depType depSpec) =
case depSpec of
ExactDep testPath statusVar ->
-- A dependency defined using 'TestGroup' has already been pinpointed
-- to its 'statusVar' in 'createTestActions'.
[(depType, statusVar, testPath)]
PatternDep expr -> do
-- A dependency defined using patterns needs to scan the whole test
-- tree for matching tests.
TestAction{testPath, testStatus} <- tests
guard $ exprMatches expr testPath
[(depType, testStatus, testPath)]
-- | Check a graph, given as an adjacency list, for cycles. Return 'Left' if the
-- graph contained cycles, or return all nodes in the graph as a 'Right' if it
-- didn't.
checkCycles :: Ord b => [(a, (b, [b]))] -> Either [[b]] [a]
checkCycles tests = do
let
result = fst <$> tests
graph = [ (v, v, vs) | (v, vs) <- snd <$> tests ]
sccs = stronglyConnComp graph
cycles =
flip mapMaybe sccs $ \case
AcyclicSCC{} -> Nothing
CyclicSCC vs -> Just vs
case cycles of
[] -> Right result
_ -> Left cycles
-- | Used to create the IO action which is passed in a WithResource node
getResource :: TVar (Resource r) -> IO r
getResource var =
atomically $ do
rState <- readTVar var
case rState of
Created r -> return r
Destroyed -> throwSTM UseOutsideOfTest
_ -> throwSTM $ unexpectedState "getResource" rState
-- | Run a resource finalizer.
--
-- This function is called from two different places:
--
-- 1. A test thread, which is the last one to use the resource.
-- 2. The main thread, if an exception (e.g. Ctrl-C) is received.
--
-- Therefore, it is possible that this function is called multiple
-- times concurrently on the same finalizer.
--
-- This function should be run with async exceptions masked,
-- and the restore function should be passed as an argument.
destroyResource :: (forall a . IO a -> IO a) -> Finalizer -> IO (Maybe SomeException)
destroyResource restore (Finalizer doRelease stateVar _) = join . atomically $ do
rState <- readTVar stateVar
case rState of
Created res -> do
writeTVar stateVar BeingDestroyed
return $
(either Just (const Nothing)
<$> try (restore $ doRelease res))
<* atomically (writeTVar stateVar Destroyed)
BeingCreated -> retry
-- If the resource is being destroyed, wait until it is destroyed.
-- This is so that we don't start destroying the next resource out of
-- order.
BeingDestroyed -> retry
NotCreated -> do
-- prevent the resource from being created by a competing thread
writeTVar stateVar Destroyed
return $ return Nothing
FailedToCreate {} -> return $ return Nothing
Destroyed -> return $ return Nothing
-- While tasty allows to configure 'OptionSet' at any level of test tree,
-- it often has any effect only on options of test providers (class IsTest).
-- But test runners and reporters typically only look into the OptionSet
-- they were given as an argument. This is not unreasonable: e. g., if an option
-- is a log filename you cannot expect to change it in the middle of the run.
-- It is however too restrictive: there is no way to use 'defaultMain' but hardcode
-- a global option, without passing it via command line.
--
-- 'applyTopLevelPlusTestOptions' allows for a compromise: unwrap top-level
-- 'PlusTestOptions' from the 'TestTree' and apply them to the 'OptionSet'
-- from command line. This way a user can wrap their tests in
-- 'adjustOption' / 'localOption' forcing, for instance, 'NumThreads' to 1.
--
-- This function is not publicly exposed.
applyTopLevelPlusTestOptions
:: OptionSet
-- ^ Raw options, typically from the command-line arguments.
-> TestTree
-- ^ Raw test tree.
-> (OptionSet, TestTree)
-- ^ Extended options and test tree stripped of outer layers of 'PlusTestOptions'.
applyTopLevelPlusTestOptions opts (PlusTestOptions f tree) =
applyTopLevelPlusTestOptions (f opts) tree
applyTopLevelPlusTestOptions opts tree = (opts, tree)
-- | Start running the tests (in background, in parallel) and pass control
-- to the callback.
--
-- Once the callback returns, stop running the tests.
--
-- The number of test running threads is determined by the 'NumThreads'
-- option.
--
-- @since 0.10
launchTestTree
:: OptionSet
-> TestTree
-> (StatusMap -> IO (Time -> IO a))
-- ^ A callback. First, it receives the 'StatusMap' through which it
-- can observe the execution of tests in real time. Typically (but not
-- necessarily), it waits until all the tests are finished.
--
-- After this callback returns, the test-running threads (if any) are
-- terminated and all resources acquired by tests are released.
--
-- The callback must return another callback (of type @'Time' -> 'IO'
-- a@) which additionally can report and/or record the total time
-- taken by the test suite. This time includes the time taken to run
-- all resource initializers and finalizers, which is why it is more
-- accurate than what could be measured from inside the first callback.
-> IO a
launchTestTree opts' tree' k0 = do
-- Normally 'applyTopLevelPlusTestOptions' has been already applied by
-- 'Test.Tasty.Ingredients.tryIngredients', but 'launchTestTree' is exposed
-- publicly, so in principle clients could use it outside of 'tryIngredients'.
-- Thus running 'applyTopLevelPlusTestOptions' again, just to be sure.
let (opts, tree) = applyTopLevelPlusTestOptions opts' tree'
(testActions, fins) <- createTestActions opts tree
let NumThreads numThreads = lookupOption opts
(t,k1) <- timed $ do
abortTests <- runInParallel numThreads (testAction <$> testActions)
(do let smap = IntMap.fromDistinctAscList $ zip [0..] (testStatus <$> testActions)
k0 smap)
`finallyRestore` \restore -> do
-- Tell all running tests to wrap up.
abortTests
-- Destroy all allocated resources in the case they didn't get
-- destroyed by their tests. (See #75.)
F.mapM_ (destroyResource restore) fins
-- Wait until all resources are destroyed. (Specifically, those
-- that were being destroyed by their tests, not those that were
-- destroyed by destroyResource above.)
restore $ waitForResources fins
k1 t
where
alive :: Resource r -> Bool
alive r = case r of
NotCreated -> False
BeingCreated -> True
FailedToCreate {} -> False
Created {} -> True
BeingDestroyed -> True
Destroyed -> False
waitForResources fins = atomically $
F.forM_ fins $ \(Finalizer _ rvar _) -> do
res <- readTVar rvar
check $ not $ alive res
unexpectedState :: String -> Resource r -> SomeException
unexpectedState where_ r = toException $ UnexpectedState where_ (show r)
sleepIndefinitely :: IO ()
sleepIndefinitely = forever $ threadDelay (10^(7::Int))
-- | Like 'finally' (which also masks its finalizers), but pass the restore
-- action to the finalizer.
finallyRestore
:: IO a
-- ^ computation to run first
-> ((forall c . IO c -> IO c) -> IO b)
-- ^ computation to run afterward (even if an exception was raised)
-> IO a
-- ^ returns the value from the first computation
a `finallyRestore` sequel =
mask $ \restore -> do
r <- restore a `onException` sequel restore
_ <- sequel restore
return r