tasty-0.2: Test/Tasty/CmdLine.hs
-- | Parsing options supplied on the command line
{-# LANGUAGE ScopedTypeVariables #-}
module Test.Tasty.CmdLine
( treeOptionParser
, optionParser
, defaultMainWithRunner
) where
import Options.Applicative
import Data.Monoid
import Data.Proxy
import Data.Tagged
import qualified Data.Map as Map
import Data.Typeable
import Control.Arrow
import System.Exit
import Test.Tasty.Core
import Test.Tasty.CoreOptions
import Test.Tasty.Run
import Test.Tasty.Options
-- | Generate a command line parser for all the options relevant for this
-- test tree. Also includes 'coreOptions'.
treeOptionParser :: TestTree -> Parser OptionSet
treeOptionParser = optionParser . (coreOptions ++) . getTreeOptions
-- | Generate a command line parser from a list of option descriptions
optionParser :: [OptionDescription] -> Parser OptionSet
optionParser = foldr addOption (pure mempty) where
addOption :: OptionDescription -> Parser OptionSet -> Parser OptionSet
addOption (Option (px :: Proxy v)) p =
setOption <$> (optionCLParser :: Parser v) <*> p
-- | Parse the command line arguments and run the tests using the provided
-- runner
defaultMainWithRunner :: Runner -> TestTree -> IO ()
defaultMainWithRunner runner testTree = do
opts <- execParser $
info (helper <*> treeOptionParser testTree)
( fullDesc <>
header "Mmm... tasty test suite"
)
ok <- execRunner runner opts testTree
if ok then exitSuccess else exitFailure