tasty-1.3.1: Modern and extensible testing framework

Safe HaskellNone
LanguageHaskell2010

Test.Tasty.Runners

Contents

Description

API for test runners

Synopsis

Working with the test tree

data TestTree Source #

The main data structure defining a test suite.

It consists of individual test cases and properties, organized in named groups which form a tree-like hierarchy.

There is no generic way to create a test case. Instead, every test provider (tasty-hunit, tasty-smallcheck etc.) provides a function to turn a test case into a TestTree.

Groups can be created using testGroup.

Constructors

IsTest t => SingleTest TestName t

A single test of some particular type

TestGroup TestName [TestTree]

Assemble a number of tests into a cohesive group

PlusTestOptions (OptionSet -> OptionSet) TestTree

Add some options to child tests

WithResource (ResourceSpec a) (IO a -> TestTree)

Acquire the resource before the tests in the inner tree start and release it after they finish. The tree gets an IO action which yields the resource, although the resource is shared across all the tests.

AskOptions (OptionSet -> TestTree)

Ask for the options and customize the tests based on them

After DependencyType Expr TestTree

Only run after all tests that match a given pattern finish (and, depending on the DependencyType, succeed)

foldTestTree Source #

Arguments

:: Monoid b 
=> TreeFold b

the algebra (i.e. how to fold a tree)

-> OptionSet

initial options

-> TestTree

the tree to fold

-> b 

Fold a test tree into a single value.

The fold result type should be a monoid. This is used to fold multiple results in a test group. In particular, empty groups get folded into mempty.

Apart from pure convenience, this function also does the following useful things:

  1. Keeping track of the current options (which may change due to PlusTestOptions nodes)
  2. Filtering out the tests which do not match the patterns

Thus, it is preferred to an explicit recursive traversal of the tree.

Note: right now, the patterns are looked up only once, and won't be affected by the subsequent option changes. This shouldn't be a problem in practice; OTOH, this behaviour may be changed later.

data TreeFold b Source #

An algebra for folding a TestTree.

Instead of constructing fresh records, build upon trivialFold instead. This way your code won't break when new nodes/fields are indroduced.

Constructors

TreeFold 

Fields

trivialFold :: Monoid b => TreeFold b Source #

trivialFold can serve as the basis for custom folds. Just override the fields you need.

Here's what it does:

  • single tests are mapped to mempty (you probably do want to override that)
  • test groups are returned unmodified
  • for a resource, an IO action that throws an exception is passed (you want to override this for runners/ingredients that execute tests)

data ResourceSpec a Source #

ResourceSpec describes how to acquire a resource (the first field) and how to release it (the second field).

Constructors

ResourceSpec (IO a) (a -> IO ()) 

newtype Traversal f Source #

Monoid generated by *>

Constructors

Traversal 

Fields

Instances
Applicative f => Semigroup (Traversal f) Source # 
Instance details

Defined in Test.Tasty.Runners.Reducers

Methods

(<>) :: Traversal f -> Traversal f -> Traversal f #

sconcat :: NonEmpty (Traversal f) -> Traversal f #

stimes :: Integral b => b -> Traversal f -> Traversal f #

Applicative f => Monoid (Traversal f) Source # 
Instance details

Defined in Test.Tasty.Runners.Reducers

newtype Ap f a Source #

Monoid generated by liftA2 (<>)

Starting from GHC 8.6, a similar type is available from Data.Monoid. This type is nevertheless kept for compatibility.

Constructors

Ap 

Fields

Instances
Monad f => Monad (Ap f) Source # 
Instance details

Defined in Test.Tasty.Runners.Reducers

Methods

(>>=) :: Ap f a -> (a -> Ap f b) -> Ap f b #

(>>) :: Ap f a -> Ap f b -> Ap f b #

return :: a -> Ap f a #

fail :: String -> Ap f a #

Functor f => Functor (Ap f) Source # 
Instance details

Defined in Test.Tasty.Runners.Reducers

Methods

fmap :: (a -> b) -> Ap f a -> Ap f b #

(<$) :: a -> Ap f b -> Ap f a #

Applicative f => Applicative (Ap f) Source # 
Instance details

Defined in Test.Tasty.Runners.Reducers

Methods

pure :: a -> Ap f a #

(<*>) :: Ap f (a -> b) -> Ap f a -> Ap f b #

liftA2 :: (a -> b -> c) -> Ap f a -> Ap f b -> Ap f c #

(*>) :: Ap f a -> Ap f b -> Ap f b #

(<*) :: Ap f a -> Ap f b -> Ap f a #

(Applicative f, Monoid a) => Semigroup (Ap f a) Source # 
Instance details

Defined in Test.Tasty.Runners.Reducers

Methods

(<>) :: Ap f a -> Ap f a -> Ap f a #

sconcat :: NonEmpty (Ap f a) -> Ap f a #

stimes :: Integral b => b -> Ap f a -> Ap f a #

(Applicative f, Monoid a) => Monoid (Ap f a) Source # 
Instance details

Defined in Test.Tasty.Runners.Reducers

Methods

mempty :: Ap f a #

mappend :: Ap f a -> Ap f a -> Ap f a #

mconcat :: [Ap f a] -> Ap f a #

Ingredients

data Ingredient Source #

Ingredients make your test suite tasty.

Ingredients represent different actions that you can perform on your test suite. One obvious ingredient that you want to include is one that runs tests and reports the progress and results.

Another standard ingredient is one that simply prints the names of all tests.

Similar to test providers (see IsTest), every ingredient may specify which options it cares about, so that those options are presented to the user if the ingredient is included in the test suite.

An ingredient can choose, typically based on the OptionSet, whether to run. That's what the Maybe is for. The first ingredient that agreed to run does its work, and the remaining ingredients are ignored. Thus, the order in which you arrange the ingredients may matter.

Usually, the ingredient which runs the tests is unconditional and thus should be placed last in the list. Other ingredients usually run only if explicitly requested via an option. Their relative order thus doesn't matter.

That's all you need to know from an (advanced) user perspective. Read on if you want to create a new ingredient.

There are two kinds of ingredients.

The first kind is TestReporter. If the ingredient that agrees to run is a TestReporter, then tasty will automatically launch the tests and pass a StatusMap to the ingredient. All the ingredient needs to do then is to process the test results and probably report them to the user in some way (hence the name).

TestManager is the second kind of ingredient. It is typically used for test management purposes (such as listing the test names), although it can also be used for running tests (but, unlike TestReporter, it has to launch the tests manually if it wants them to be run). It is therefore more general than TestReporter. TestReporter is provided just for convenience.

The function's result should indicate whether all the tests passed.

In the TestManager case, it's up to the ingredient author to decide what the result should be. When no tests are run, the result should probably be True. Sometimes, even if some tests run and fail, it still makes sense to return True.

Constructors

TestReporter [OptionDescription] (OptionSet -> TestTree -> Maybe (StatusMap -> IO (Time -> IO Bool)))

For the explanation on how the callback works, see the documentation for launchTestTree.

TestManager [OptionDescription] (OptionSet -> TestTree -> Maybe (IO Bool)) 

type Time = Double Source #

Time in seconds. Used to measure how long the tests took to run.

tryIngredients :: [Ingredient] -> OptionSet -> TestTree -> Maybe (IO Bool) Source #

Run the first Ingredient that agrees to be run.

If no one accepts the task, return Nothing. This is usually a sign of misconfiguration.

ingredientOptions :: Ingredient -> [OptionDescription] Source #

Return the options which are relevant for the given ingredient.

Note that this isn't the same as simply pattern-matching on Ingredient. E.g. options for a TestReporter automatically include NumThreads.

ingredientsOptions :: [Ingredient] -> [OptionDescription] Source #

Like ingredientOption, but folds over multiple ingredients.

Standard console ingredients

NOTE: the exports in this section are deprecated and will be removed in the future. Please import Test.Tasty.Ingredients.Basic if you need them.

Console test reporter

consoleTestReporter :: Ingredient Source #

A simple console UI

Tests list

listingTests :: Ingredient Source #

The ingredient that provides the test listing functionality

testsNames :: OptionSet -> TestTree -> [TestName] Source #

Obtain the list of all tests in the suite

Command line handling

parseOptions :: [Ingredient] -> TestTree -> IO OptionSet Source #

Parse the command-line and environment options passed to tasty.

Useful if you need to get the options before defaultMain is called.

Once within the test tree, askOption should be used instead.

The arguments to this function should be the same as for defaultMainWithIngredients. If you don't use any custom ingredients, pass defaultIngredients.

optionParser :: [OptionDescription] -> ([String], Parser OptionSet) Source #

Generate a command line parser from a list of option descriptions, alongside any related warning messages.

Since: 1.3

suiteOptionParser :: [Ingredient] -> TestTree -> ([String], Parser OptionSet) Source #

The command line parser for the test suite, alongside any related warnings.

Since: 1.3

defaultMainWithIngredients :: [Ingredient] -> TestTree -> IO () Source #

Parse the command line arguments and run the tests using the provided ingredient list.

When the tests finish, this function calls exitWith with the exit code that indicates whether any tests have failed. See defaultMain for details.

Running tests

data Status Source #

Current status of a test

Constructors

NotStarted

test has not started running yet

Executing Progress

test is being run

Done Result

test finished with a given result

Instances
Show Status Source # 
Instance details

Defined in Test.Tasty.Run

data Result Source #

A test result

Constructors

Result 

Fields

Instances
Show Result Source # 
Instance details

Defined in Test.Tasty.Core

data Outcome Source #

Outcome of a test run

Note: this is isomorphic to Maybe FailureReason. You can use the generic-maybe package to exploit that.

Constructors

Success

test succeeded

Failure FailureReason

test failed because of the FailureReason

Instances
Show Outcome Source # 
Instance details

Defined in Test.Tasty.Core

Generic Outcome Source # 
Instance details

Defined in Test.Tasty.Core

Associated Types

type Rep Outcome :: Type -> Type #

Methods

from :: Outcome -> Rep Outcome x #

to :: Rep Outcome x -> Outcome #

type Rep Outcome Source # 
Instance details

Defined in Test.Tasty.Core

type Rep Outcome = D1 (MetaData "Outcome" "Test.Tasty.Core" "tasty-1.3.1-D2vFVsjZ1wMIGdmxYTOIVC" False) (C1 (MetaCons "Success" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Failure" PrefixI False) (S1 (MetaSel (Nothing :: Maybe Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 FailureReason)))

data FailureReason Source #

If a test failed, FailureReason describes why

Constructors

TestFailed

test provider indicated failure of the code to test, either because the tested code returned wrong results, or raised an exception

TestThrewException SomeException

the test code itself raised an exception. Typical cases include missing example input or output files.

Usually, providers do not have to implement this, as their run method may simply raise an exception.

TestTimedOut Integer

test didn't complete in allotted time

TestDepFailed

a dependency of this test failed, so this test was skipped.

Instances
Show FailureReason Source # 
Instance details

Defined in Test.Tasty.Core

resultSuccessful :: Result -> Bool Source #

True for a passed test, False for a failed one.

data Progress Source #

Test progress information.

This may be used by a runner to provide some feedback to the user while a long-running test is executing.

Constructors

Progress 

Fields

Instances
Show Progress Source # 
Instance details

Defined in Test.Tasty.Core

type StatusMap = IntMap (TVar Status) Source #

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.

launchTestTree Source #

Arguments

:: 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 

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.

newtype NumThreads Source #

Number of parallel threads to use for running tests.

Note that this is not included in coreOptions. Instead, it's automatically included in the options for any TestReporter ingredient by ingredientOptions, because the way test reporters are handled already involves parallelism. Other ingredients may also choose to include this option.

Constructors

NumThreads 

Fields

data DependencyException Source #

Exceptions related to dependencies between tests.

Constructors

DependencyLoop

Test dependencies form a loop. In other words, test A cannot start until test B finishes, and test B cannot start until test A finishes.

Options

suiteOptions :: [Ingredient] -> TestTree -> [OptionDescription] Source #

All the options relevant for this test suite. This includes the options for the test tree and ingredients, and the core options.

coreOptions :: [OptionDescription] Source #

The list of all core options, i.e. the options not specific to any provider or ingredient, but to tasty itself. Currently contains TestPattern and Timeout.

Patterns

Utilities

formatMessage :: String -> IO String Source #

Catch possible exceptions that may arise when evaluating a string. For normal (total) strings, this is a no-op.

This function should be used to display messages generated by the test suite (such as test result descriptions).

See e.g. https://github.com/feuerbach/tasty/issues/25

forceElements :: [a] -> () Source #

installSignalHandlers :: IO () Source #

Install signal handlers so that e.g. the cursor is restored if the test suite is killed by SIGTERM. Upon a signal, a SignalException will be thrown to the thread that has executed this action.

This function is called automatically from the defaultMain* family of functions. You only need to call it explicitly if you call tryIngredients yourself.

This function does nothing on non-UNIX systems or when compiled with GHC older than 7.6.

newtype SignalException Source #

This exception is thrown when the program receives a signal, assuming installSignalHandlers was called.

The CInt field contains the signal number, as in Signal. We don't use that type synonym, however, because it's not available on non-UNIXes.

Constructors

SignalException CInt 

timed :: IO a -> IO (Time, a) Source #

Measure the time taken by an IO action to run

getTime :: IO Time Source #

Get monotonic time

Warning: This is not the system time, but a monotonically increasing time that facilitates reliable measurement of time differences.