module EasyTest.Internal
(
crash
, note
, scope
,
Status(..)
, Env(..)
, Test(..)
, actionAllowed
, putResult
, runWrap
, combineStatus
) where
import Control.Applicative
import Control.Concurrent.STM
import Control.Exception
import Control.Monad
import Control.Monad.IO.Class
import Control.Monad.Reader
import Data.List (isPrefixOf)
#if !(MIN_VERSION_base(4,11,0))
import Data.Semigroup
#endif
import Data.String (IsString(..))
import Data.Text (Text)
import qualified Data.Text as T
#if MIN_VERSION_base(4,9,0)
import GHC.Stack
#else
import Data.CallStack
#endif
import qualified System.Random as Random
data Status = Failed | Passed !Int | Skipped
combineStatus :: Status -> Status -> Status
combineStatus Skipped s = s
combineStatus s Skipped = s
combineStatus Failed _ = Failed
combineStatus _ Failed = Failed
combineStatus (Passed n) (Passed m) = Passed (n + m)
instance Semigroup Status where
(<>) = combineStatus
instance Monoid Status where
mempty = Passed 0
#if !MIN_VERSION_base(4,11,0)
mappend = combineStatus
#endif
data Env =
Env { envRng :: TVar Random.StdGen
, envMessages :: [Text]
, envResults :: TBQueue (Maybe (TMVar ([Text], Status)))
, envNote :: Text -> IO ()
, envAllow :: [Text] }
newtype Test a = Test (ReaderT Env IO (Maybe a))
#if !MIN_VERSION_base(4,9,0)
prettyCallStack :: CallStack -> String
prettyCallStack = show
#endif
crash :: HasCallStack => Text -> Test a
crash msg = do
let trace = callStack
msg' = msg <> " " <> T.pack (prettyCallStack trace)
Test (Just <$> putResult Failed)
noteScoped ("FAILURE " <> msg')
Test (pure Nothing)
putResult :: Status -> ReaderT Env IO ()
putResult passed = do
msgs <- asks envMessages
allow <- asks envAllow
r <- liftIO . atomically $ newTMVar
(msgs, if allow `isPrefixOf` msgs then passed else Skipped)
q <- asks envResults
lift . atomically $ writeTBQueue q (Just r)
scope :: Text -> Test a -> Test a
scope msg (Test t) = Test $ do
env <- ask
let msg' = T.splitOn "." msg
messages' = envMessages env <> msg'
env' = env { envMessages = messages' }
passes = actionAllowed env'
if passes
then liftIO $ runReaderT t env'
else putResult Skipped >> pure Nothing
noteScoped :: Text -> Test ()
noteScoped msg = do
s <- currentScope
note (T.intercalate "." s <> (if null s then "" else " ") <> msg)
note :: Text -> Test ()
note msg = do
note_ <- asks envNote
liftIO $ note_ msg
pure ()
currentScope :: Test [Text]
currentScope = asks envMessages
wrap :: Test a -> Test a
wrap (Test t) = Test $ do
env <- ask
lift $ runWrap env t
runWrap :: Env -> ReaderT Env IO (Maybe a) -> IO (Maybe a)
runWrap env t = do
result <- try $ runReaderT t env
case result of
Left e -> do
envNote env $
T.intercalate "." (envMessages env)
<> " EXCEPTION: "
<> T.pack (show (e :: SomeException))
runReaderT (putResult Failed) env
pure Nothing
Right a -> pure a
actionAllowed :: Env -> Bool
actionAllowed Env{envMessages = messages, envAllow = allow}
= allow `isPrefixOf` messages || messages `isPrefixOf` allow
instance MonadReader Env Test where
ask = Test $ do
allowed <- asks actionAllowed
if allowed
then Just <$> ask
else pure Nothing
local f (Test t) = Test (local f t)
reader f = Test (Just <$> reader f)
instance Monad Test where
fail = crash . T.pack
return a = Test $ do
allowed <- asks actionAllowed
pure $ if allowed
then Just a
else Nothing
Test a >>= f = Test $ do
a' <- a
case a' of
Nothing -> pure Nothing
Just a'' -> let Test t = f a'' in t
instance Functor Test where
fmap = liftM
instance Applicative Test where
pure = return
(<*>) = ap
instance MonadIO Test where
liftIO action = do
allowed <- asks actionAllowed
if allowed
then wrap $ Test (Just <$> liftIO action)
else Test (pure Nothing)
instance Alternative Test where
empty = Test (pure Nothing)
Test t1 <|> Test t2 = Test $ do
env <- ask
(rng1, rng2) <- liftIO . atomically $ do
currentRng <- readTVar (envRng env)
let (rng1, rng2) = Random.split currentRng
(,) <$> newTVar rng1 <*> newTVar rng2
lift $ do
_ <- runWrap (env { envRng = rng1 }) t1
runWrap (env { envRng = rng2 }) t2
instance MonadPlus Test where
mzero = empty
mplus = (<|>)
instance IsString (Test a -> Test a) where
fromString str = scope (T.pack str)