dejafu/tests/Tests/Logger.hs

81 lines
2.2 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
( Logger
, initLogger
, logMessage
, logStop
, bad
, testLA, testLP, testLE
) 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
import Control.Monad.Conc.SCT.Tests
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?
bad :: MonadConc m => m [String]
2015-01-23 18:11:37 +03:00
bad = do
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.
testLA :: Result [String]
2015-01-23 18:11:37 +03:00
testLA = runTest (alwaysTrue listContents) bad where
listContents (Just strs) = strs `elem` [ ["Hello", "World", "Foo", "Bar", "Baz"]
, ["Hello", "World", "Foo", "Bar"]
]
listContents Nothing = False
-- | Test that the "proper" result occurs at least once.
testLP :: Result [String]
2015-01-23 18:11:37 +03:00
testLP = runTest (somewhereTrue loggedAll) bad where
loggedAll (Just a) = length a == 5
loggedAll Nothing = False
-- | Test that the erroneous result occurs at least once.
testLE :: Result [String]
2015-01-23 18:11:37 +03:00
testLE = runTest (somewhereTrue loggedAlmostAll) bad where
loggedAlmostAll (Just a) = length a == 4
loggedAlmostAll Nothing = False