chuchu-0.2: src/Test/Chuchu.hs
-- |
-- Module : Test.Chuchu
-- Copyright : (c) Marco Túlio Pimenta Gontijo <marcotmarcot@gmail.com> 2012
-- License : Apache 2.0 (see the file LICENSE)
--
-- Maintainer : Marco Túlio Pimenta Gontijo <marcotmarcot@gmail.com>
-- Stability : unstable
-- Portability : non-portable (DeriveDataTypeable)
--
-- Chuchu is a system similar to Ruby's Cucumber for Behaviour Driven
-- Development. It works with a language similar to Cucumber's Gherkin, which
-- is parsed using package abacate.
--
-- This module provides the main function for a test file based on Behaviour
-- Driven Development for Haskell.
--
-- Example for a Stack calculator:
--
-- @calculator.feature@:
--
-- @
--Feature: Division
-- In order to avoid silly mistakes
-- Cashiers must be able to calculate a fraction
--
-- Scenario: Regular numbers
-- Given that I have entered 3 into the calculator
-- And that I have entered 2 into the calculator
-- When I press divide
-- Then the result should be 1.5 on the screen
-- @
--
-- @calculator.hs@:
--
-- @
--import Control.Applicative
--import Control.Monad.IO.Class
--import Control.Monad.Trans.State
--import Test.Chuchu
--import Test.HUnit
--
--type CalculatorT m = StateT \[Double\] m
--
--enterNumber :: Monad m => Double -> CalculatorT m ()
--enterNumber = modify . (:)
--
--getDisplay :: Monad m => CalculatorT m Double
--getDisplay
-- = do
-- ns <- get
-- return $ head $ ns ++ [0]
--
--divide :: Monad m => CalculatorT m ()
--divide = do
-- (n1:n2:ns) <- get
-- put $ (n2 / n1) : ns
--
--defs :: Chuchu (CalculatorT IO)
--defs
-- = do
-- Given
-- (\"that I have entered \" *> number <* \" into the calculator\")
-- enterNumber
-- When \"I press divide\" $ const divide
-- Then (\"the result should be \" *> number <* \" on the screen\")
-- $ \\n
-- -> do
-- d <- getDisplay
-- liftIO $ d \@?= n
--
--main :: IO ()
--main = chuchuMain defs (\`evalStateT\` [])
-- @
module
Test.Chuchu
(chuchuMain, module Test.Chuchu.Types, module Test.Chuchu.Parser)
where
-- base
import Control.Applicative
import Control.Monad
import System.Environment
import System.Exit
import System.IO
import qualified Data.IORef as I
-- text
import qualified Data.Text as T
-- transformers
import Control.Monad.IO.Class
import Control.Monad.Trans.Class
import Control.Monad.Trans.Reader
-- parsec
import Text.Parsec
import Text.Parsec.Text
-- cmdargs
import System.Console.CmdArgs
-- ansi-wl-pprint
import qualified Text.PrettyPrint.ANSI.Leijen as D
-- abacate
import Language.Abacate hiding (StepKeyword (..))
-- chuchu
import Test.Chuchu.Types
import Test.Chuchu.Parser
----------------------------------------------------------------------
-- | The main function for the test file. It expects the @.feature@ file as the
-- first parameter on the command line. If you want to use it inside a library,
-- consider using 'withArgs'.
chuchuMain :: (MonadIO m, Applicative m) => Chuchu m -> (m () -> IO ()) -> IO ()
chuchuMain cc runMIO
= do
path <- getPath
parsed <- parseFile path
case parsed of
Right abacate -> do
ret <- processAbacate cc runMIO abacate
unless ret exitFailure
Left e -> error $ "Could not parse " ++ path ++ ": " ++ show e
----------------------------------------------------------------------
-- | An execution plan for a scenario. Currently just a simple
-- record with a background (optional) and a scenario.
data ExecutionPlan =
ExecutionPlan
{ epBackground :: Maybe Background
, epScenario :: FeatureElement
}
deriving (Show)
-- | Creates an execution plan for a feature.
createExecutionPlans :: Abacate -> [ExecutionPlan]
createExecutionPlans feature =
ExecutionPlan (fBackground feature) `map` fFeatureElements feature
----------------------------------------------------------------------
-- | Monad used when executing a feature's scenario. 'ReaderT'
-- is used to carry along the step parser.
type Execution m a = ReaderT (Parser (m ())) m a
-- | Print a 'D.Doc' describing what we're currently processing.
putDoc :: (MonadIO m, Applicative m) => D.Doc -> m ()
putDoc = liftIO . D.putDoc . (D.<> D.linebreak)
-- | Same as 'D.text' but using 'T.Text'.
t2d :: T.Text -> D.Doc
t2d = D.text . T.unpack
-- | Run the 'Execution' monad.
runExecution :: (MonadIO m, Applicative m) =>
Chuchu m -> (m () -> IO ()) -> Execution m () -> IO ()
runExecution cc runMIO act = runMIO $ runReaderT act $ runChuchu cc
----------------------------------------------------------------------
-- | Process a whole Abacate file, that is, a whole feature.
-- Runs each background+scenario combination on a different
-- instance of the 'Execution' monad.
processAbacate :: (MonadIO m, Applicative m) =>
Chuchu m
-> (m () -> IO ())
-> Abacate
-> IO Bool
processAbacate cc runMIO feature = do
-- Print feature description.
putDoc $ describeAbacate feature
-- Execute features.
let plans = createExecutionPlans feature
retVar <- liftIO $ I.newIORef True
let checkRet ret = unless ret $ liftIO $ I.writeIORef retVar False
mapM_ (runExecution cc runMIO . (>>= checkRet) . processExecutionPlan) plans
liftIO $ I.readIORef retVar
-- | Process a single execution plan, a combination of
-- background+scenario, inside the 'Execution' monad.
processExecutionPlan :: (MonadIO m, Applicative m) => ExecutionPlan -> Execution m Bool
processExecutionPlan (ExecutionPlan mbackground scenario) = do
putDoc D.empty -- empty line
(&&) <$> maybe (return True) (processBasicScenario BackgroundKind) mbackground
<*> processFeatureElement scenario
-- | Creates a pretty description of the feature.
describeAbacate :: Abacate -> D.Doc
describeAbacate feature =
D.vsep $
describeTags (fTags feature) ++ [D.white $ t2d $ fHeader feature]
-- | Creates a vertical list of tags.
describeTags :: Tags -> [D.Doc]
describeTags = map (D.dullcyan . ("@" D.<>) . t2d)
----------------------------------------------------------------------
processFeatureElement :: (MonadIO m, Applicative m) => FeatureElement -> Execution m Bool
processFeatureElement (FESO _)
= liftIO (hPutStrLn stderr "Scenario Outlines are not supported yet.")
>> return False
processFeatureElement (FES sc) =
processBasicScenario (ScenarioKind $ scTags sc) $ scBasicScenario sc
data BasicScenarioKind = BackgroundKind | ScenarioKind Tags
processBasicScenario :: (MonadIO m, Applicative m) => BasicScenarioKind -> BasicScenario -> Execution m Bool
processBasicScenario kind scenario = do
putDoc $ describeBasicScenario kind scenario
processSteps (bsSteps scenario)
-- | Creates a pretty description of the basic scenario's header.
describeBasicScenario :: BasicScenarioKind -> BasicScenario -> D.Doc
describeBasicScenario kind scenario =
D.indent 2 $
prettyTags kind $
D.bold ((describeBasicScenarioKind kind) D.<+> t2d (bsName scenario))
where describeBasicScenarioKind BackgroundKind = "Background:"
describeBasicScenarioKind (ScenarioKind _) = "Scenario:"
prettyTags BackgroundKind = id
prettyTags (ScenarioKind tags) = D.vsep . (describeTags tags ++) . (:[])
----------------------------------------------------------------------
processSteps :: (MonadIO m, Applicative m) => Steps -> Execution m Bool
processSteps steps
= do
codes <- mapM processStep steps
return $ and codes
processStep :: (MonadIO m, Applicative m) => Step -> Execution m Bool
processStep step
= do
cc <- ask
case parse cc "processStep" $ stBody step of
Left e
-> do
putDoc $ describeStep UnknownStep step
liftIO
$ hPutStrLn stderr
$ "The step "
++ show (stBody step)
++ " doesn't match any step definitions I know."
++ show e
return False
Right m -> do
-- TODO: Catch failures and treat them nicely.
putDoc $ describeStep SuccessfulStep step
lift m
return True
data StepResult = SuccessfulStep | UnknownStep
-- | Pretty-prints a step that has already finished executing.
describeStep :: StepResult -> Step -> D.Doc
describeStep result step =
D.indent 4 $
color result (D.text (show $ stStepKeyword step) D.<+> t2d (stBody step))
where
color SuccessfulStep = D.green
color UnknownStep = D.yellow
----------------------------------------------------------------------
data Options
= Options {file_ :: FilePath}
deriving (Eq, Show, Typeable, Data)
getPath :: IO FilePath
getPath
= do
progName <- getProgName
file_
<$> cmdArgs
(Options (def &= typ "PATH" &= argPos 0)
&= program progName
&= details
["Run test scenarios specified on the abacate file at PATH."])