dejafu/tests/Tests/Logger.hs

77 lines
2.1 KiB
Haskell
Raw Normal View History

2015-01-23 18:11:37 +03:00
-- Modification (to introduce bug) of an example in Parallel and
-- Concurrent Programming in Haskell, chapter 7.
module Tests.Logger
( badLogger
, validResult, isGood, isBad
2015-01-23 18:11:37 +03:00
) where
2015-01-28 20:48:26 +03:00
import Control.Concurrent.CVar
2015-01-23 18:11:37 +03:00
import Control.Monad.Conc.Class
2015-01-31 18:50:54 +03:00
import Test.DejaFu
2015-01-23 18:11:37 +03:00
data Logger m = Logger (CVar m LogCommand) (CVar m [String])
2015-01-23 18:11:37 +03:00
data LogCommand = Message String | Stop
-- | Create a new logger with no internal log.
initLogger :: MonadConc m => m (Logger m)
2015-01-23 18:11:37 +03:00
initLogger = do
cmd <- newEmptyCVar
log <- newCVar []
let l = Logger cmd log
fork $ logger l
return l
logger :: MonadConc m => Logger m -> m ()
2015-01-23 18:11:37 +03:00
logger (Logger cmd log) = loop where
loop = do
command <- takeCVar cmd
case command of
Message str -> do
strs <- takeCVar log
putCVar log (strs ++ [str])
loop
Stop -> return ()
-- | Add a string to the log.
logMessage :: MonadConc m => Logger m -> String -> m ()
2015-01-23 18:11:37 +03:00
logMessage (Logger cmd _) str = putCVar cmd $ Message str
-- | Stop the logger and return the contents of the log.
logStop :: MonadConc m => Logger m -> m [String]
2015-01-23 18:11:37 +03:00
logStop (Logger cmd log) = do
putCVar cmd Stop
readCVar log
-- | Race condition! Can you see where?
badLogger :: MonadConc m => m [String]
badLogger = do
2015-01-23 18:11:37 +03:00
l <- initLogger
logMessage l "Hello"
logMessage l "World"
logMessage l "Foo"
logMessage l "Bar"
logMessage l "Baz"
logStop l
-- | Test that the result is always in the set of allowed values, and
-- doesn't deadlock.
validResult :: Predicate [String]
validResult = alwaysTrue check where
check (Right strs) = strs `elem` [ ["Hello", "World", "Foo", "Bar", "Baz"]
, ["Hello", "World", "Foo", "Bar"]
]
check _ = False
2015-01-23 18:11:37 +03:00
-- | Test that the "proper" result occurs at least once.
isGood :: Predicate [String]
isGood = somewhereTrue check where
check (Right a) = length a == 5
check _ = False
2015-01-23 18:11:37 +03:00
-- | Test that the erroneous result occurs at least once.
isBad :: Predicate [String]
isBad = somewhereTrue check where
check (Right a) = length a == 4
check _ = False