1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
|
{-# LANGUAGE CPP,ScopedTypeVariables,DeriveDataTypeable #-}
module Main where
import Test.Framework (defaultMain, testGroup)
import Test.Framework.Providers.HUnit
import Test.HUnit
import Control.Concurrent.STM
import Control.Concurrent.Async
import Control.Exception
import Data.IORef
import Data.Typeable
import Control.Concurrent
import Control.Monad
import Control.Applicative
import Data.List (sort, permutations)
import Data.Foldable (foldMap)
import Data.Maybe
import Prelude hiding (catch)
main = defaultMain tests
tests = [
testCase "async_wait" async_wait
, testCase "async_waitCatch" async_waitCatch
, testCase "async_exwait" async_exwait
, testCase "async_exwaitCatch" async_exwaitCatch
, testCase "withasync_waitCatch" withasync_waitCatch
, testCase "withasync_wait2" withasync_wait2
, testGroup "async_cancel_rep" $
replicate 1000 $
testCase "async_cancel" async_cancel
, testCase "async_cancelmany" async_cancelmany
, testCase "async_poll" async_poll
, testCase "async_poll2" async_poll2
, testCase "withasync_waitCatch_blocked" withasync_waitCatch_blocked
, testCase "withasync_wait_blocked" withasync_wait_blocked
, testGroup "children surviving too long"
[ testCase "concurrently+success" concurrently_success
, testCase "concurrently+failure" concurrently_failure
, testCase "concurrentlyE+success" concurrentlyE_success
, testCase "concurrentlyE+failure" concurrentlyE_failure
, testCase "race+success" race_success
, testCase "race+failure" race_failure
, testCase "cancel" cancel_survive
, testCase "withAsync" withasync_survive
]
, testCase "concurrently_" case_concurrently_
, testCase "replicateConcurrently_" case_replicateConcurrently
, testCase "replicateConcurrently" case_replicateConcurrently_
, testCase "link1" case_link1
, testCase "link2" case_link2
, testCase "link1_cancel" case_link1cancel
, testCase "concurrently_deadlock" case_concurrently_deadlock
, testCase "concurrentlyE_deadlock" case_concurrentlyE_deadlock
, testGroup "concurrentlyE" [
testCase "concurrentlyE_right" concurrentlyE_right
, testCase "concurrentlyE_left1" concurrentlyE_left1
, testCase "concurrentlyE_left2" concurrentlyE_left2
, testCase "concurrentlyE_earlyException" concurrentlyE_earlyException
, testCase "concurrentlyE_lateException" concurrentlyE_lateException
#if MIN_VERSION_base(4,9,0)
, testCase "concurrentlyE_Monoid" concurrentlyE_Monoid
, testCase "concurrentlyE_Monoid_fail" concurrentlyE_Monoid_fail
#endif
]
]
value = 42 :: Int
data TestException = TestException deriving (Eq,Show,Typeable)
instance Exception TestException
async_waitCatch :: Assertion
async_waitCatch = do
a <- async (return value)
r <- waitCatch a
case r of
Left _ -> assertFailure ""
Right e -> e @?= value
async_wait :: Assertion
async_wait = do
a <- async (return value)
r <- wait a
assertEqual "async_wait" r value
async_exwaitCatch :: Assertion
async_exwaitCatch = do
a <- async (throwIO TestException)
r <- waitCatch a
case r of
Left e -> fromException e @?= Just TestException
Right _ -> assertFailure ""
async_exwait :: Assertion
async_exwait = do
a <- async (throwIO TestException)
(wait a >> assertFailure "") `catch` \e -> e @?= TestException
withasync_waitCatch :: Assertion
withasync_waitCatch = do
withAsync (return value) $ \a -> do
r <- waitCatch a
case r of
Left _ -> assertFailure ""
Right e -> e @?= value
withasync_wait2 :: Assertion
withasync_wait2 = do
a <- withAsync (threadDelay 1000000) $ return
r <- waitCatch a
case r of
Left e -> fromException e @?= Just AsyncCancelled
Right _ -> assertFailure ""
async_cancel :: Assertion
async_cancel = do
a <- async (return value)
cancelWith a TestException
r <- waitCatch a
case r of
Left e -> fromException e @?= Just TestException
Right r -> r @?= value
async_cancelmany :: Assertion -- issue 59
async_cancelmany = do
r <- newIORef []
a <- async $ forConcurrently_ ['a'..'z'] $ \c ->
delay 2 `finally` atomicModifyIORef r (\i -> (c:i,()))
delay 1
cancel a
v <- readIORef r
assertEqual "cancelmany" 26 (length v)
where
delay sec = threadDelay (sec * 1000000)
async_poll :: Assertion
async_poll = do
a <- async (threadDelay 1000000)
r <- poll a
when (isJust r) $ assertFailure ""
r <- poll a -- poll twice, just to check we don't deadlock
when (isJust r) $ assertFailure ""
async_poll2 :: Assertion
async_poll2 = do
a <- async (return value)
wait a
r <- poll a
when (isNothing r) $ assertFailure ""
r <- poll a -- poll twice, just to check we don't deadlock
when (isNothing r) $ assertFailure ""
withasync_waitCatch_blocked :: Assertion
withasync_waitCatch_blocked = do
r <- withAsync (newEmptyMVar >>= takeMVar) waitCatch
case r of
Left e ->
case fromException e of
Just BlockedIndefinitelyOnMVar -> return ()
Nothing -> assertFailure $ show e
Right () -> assertFailure ""
withasync_wait_blocked :: Assertion
withasync_wait_blocked = do
r <- try $ withAsync (newEmptyMVar >>= takeMVar) wait
case r of
Left e ->
case fromException e of
Just BlockedIndefinitelyOnMVar -> return ()
Nothing -> assertFailure $ show e
Right () -> assertFailure ""
concurrently_success :: Assertion
concurrently_success = do
finalRes <- newIORef "never filled"
baton <- newEmptyMVar
let quick = return ()
slow = threadDelay 10000 `finally` do
threadDelay 10000
writeIORef finalRes "slow"
putMVar baton ()
_ <- concurrently quick slow
writeIORef finalRes "parent"
takeMVar baton
res <- readIORef finalRes
res @?= "parent"
concurrentlyE_success :: Assertion
concurrentlyE_success = do
finalRes <- newIORef "never filled"
baton <- newEmptyMVar
let quick = return (Right ())
slow = threadDelay 10000 *> return (Right ()) `finally` do
threadDelay 10000
writeIORef finalRes "slow"
putMVar baton ()
_ <- concurrentlyE quick slow
writeIORef finalRes "parent"
takeMVar baton
res <- readIORef finalRes
res @?= "parent"
concurrently_failure :: Assertion
concurrently_failure = do
finalRes <- newIORef "never filled"
let quick = error "a quick death"
slow = threadDelay 10000 `finally` do
threadDelay 10000
writeIORef finalRes "slow"
_ :: Either SomeException ((), ()) <- try (concurrently quick slow)
writeIORef finalRes "parent"
threadDelay 1000000 -- not using the baton, can lead to deadlock detection
res <- readIORef finalRes
res @?= "parent"
concurrentlyE_failure :: Assertion
concurrentlyE_failure = do
finalRes <- newIORef "never filled"
let quick = error "a quick death"
slow = threadDelay 10000 *> return (Right ()) `finally` do
threadDelay 10000
writeIORef finalRes "slow"
_ :: Either SomeException (Either () ((), ())) <- try (concurrentlyE quick slow)
writeIORef finalRes "parent"
threadDelay 1000000 -- not using the baton, can lead to deadlock detection
res <- readIORef finalRes
res @?= "parent"
race_success :: Assertion
race_success = do
finalRes <- newIORef "never filled"
let quick = return ()
slow = threadDelay 10000 `finally` do
threadDelay 10000
writeIORef finalRes "slow"
race_ quick slow
writeIORef finalRes "parent"
threadDelay 1000000 -- not using the baton, can lead to deadlock detection
res <- readIORef finalRes
res @?= "parent"
race_failure :: Assertion
race_failure = do
finalRes <- newIORef "never filled"
baton <- newEmptyMVar
let quick = error "a quick death"
slow restore = restore (threadDelay 10000) `finally` do
threadDelay 10000
writeIORef finalRes "slow"
putMVar baton ()
_ :: Either SomeException () <-
try $ mask $ \restore ->
race_ quick (slow restore)
writeIORef finalRes "parent"
takeMVar baton
res <- readIORef finalRes
res @?= "parent"
cancel_survive :: Assertion
cancel_survive = do
finalRes <- newIORef "never filled"
a <- async $ threadDelay 10000 `finally` do
threadDelay 10000
writeIORef finalRes "child"
cancel a
writeIORef finalRes "parent"
threadDelay 1000000 -- not using the baton, can lead to deadlock detection
res <- readIORef finalRes
res @?= "parent"
withasync_survive :: Assertion
withasync_survive = do
finalRes <- newIORef "never filled"
let child = threadDelay 10000 `finally` do
threadDelay 10000
writeIORef finalRes "child"
withAsync child (\_ -> return ())
writeIORef finalRes "parent"
threadDelay 1000000 -- not using the baton, can lead to deadlock detection
res <- readIORef finalRes
res @?= "parent"
case_concurrently_ :: Assertion
case_concurrently_ = do
ref <- newIORef 0
() <- concurrently_
(atomicModifyIORef ref (\x -> (x + 1, True)))
(atomicModifyIORef ref (\x -> (x + 2, 'x')))
res <- readIORef ref
res @?= 3
case_replicateConcurrently :: Assertion
case_replicateConcurrently = do
ref <- newIORef 0
let action = atomicModifyIORef ref (\x -> (x + 1, x + 1))
resList <- replicateConcurrently 100 action
resVal <- readIORef ref
resVal @?= 100
sort resList @?= [1..100]
case_replicateConcurrently_ :: Assertion
case_replicateConcurrently_ = do
ref <- newIORef 0
let action = atomicModifyIORef ref (\x -> (x + 1, x + 1))
() <- replicateConcurrently_ 100 action
resVal <- readIORef ref
resVal @?= 100
case_link1 :: Assertion
case_link1 = do
m1 <- newEmptyMVar
m2 <- newEmptyMVar
let ex = ErrorCall "oops"
a <- async $ do takeMVar m1; throwIO ex; putMVar m2 ()
link a
e <- try $ (do
putMVar m1 ()
takeMVar m2)
assertBool "link1" $
case e of
Left (ExceptionInLinkedThread a' e') ->
compareAsyncs a' a == EQ &&
case fromException e' of
Just (ErrorCall s) -> s == "oops"
_otherwise -> False
_other -> False
case_link2 :: Assertion
case_link2 = do
let
setup = do
m1 <- newEmptyMVar
m2 <- newEmptyMVar
let ex1 = ErrorCall "oops1"; ex2 = ErrorCall "oops2"
a <- async $ do takeMVar m1; throwIO ex1
b <- async $ do takeMVar m2; throwIO ex2
link2 a b
return (m1,m2,a,b)
(m1,m2,a,b) <- setup
e <- try $ do
putMVar m1 ()
wait b
putMVar m2 () -- ensure the other thread is not deadlocked
assertBool "link2a" $
case e of
Left (ExceptionInLinkedThread a' e') ->
compareAsyncs a' a == EQ &&
case fromException e' of
Just (ErrorCall s) -> s == "oops1"
_otherwise -> False
_other -> False
(m1,m2,a,b) <- setup
e <- try $ do
putMVar m2 ()
wait a
putMVar m1 () -- ensure the other thread is not deadlocked
assertBool "link2b" $
case e of
Left (ExceptionInLinkedThread a' e') ->
compareAsyncs a' b == EQ &&
case fromException e' of
Just (ErrorCall s) -> s == "oops2"
_otherwise -> False
_other -> False
case_link1cancel :: Assertion
case_link1cancel = do
m1 <- newEmptyMVar
let ex = ErrorCall "oops"
a <- async $ do takeMVar m1
link a
e <- try $ do cancel a; wait a
putMVar m1 ()
assertBool "link1cancel" $
case e of
Left AsyncCancelled -> True -- should not be ExceptionInLinkedThread
_other -> False
-- See Issue #62
case_concurrently_deadlock :: Assertion
case_concurrently_deadlock = do
tvar <- newTVarIO False :: IO (TVar Bool)
e <- try $ void $ join (concurrently) (atomically $ readTVar tvar >>= check)
-- should throw BlockedIndefinitelyOnSTM not BlockedIndefinitelyOnMVar
assertBool "concurrently_deadlock" $
case e of
Left BlockedIndefinitelyOnSTM{} -> True
_other -> False
-- See Issue #62
case_concurrentlyE_deadlock :: Assertion
case_concurrentlyE_deadlock = do
tvar <- newTVarIO False :: IO (TVar Bool)
e <- try $ void $ join (concurrentlyE) (fmap Right $ atomically $ readTVar tvar >>= check)
-- should throw BlockedIndefinitelyOnSTM not BlockedIndefinitelyOnMVar
assertBool "concurrentlyE_deadlock" $
case e of
Left BlockedIndefinitelyOnSTM{} -> True
_other -> False
concurrentlyE_right :: Assertion
concurrentlyE_right = do
r :: Either () (Bool,Bool) <- concurrentlyE (Right . const False <$> threadDelay 10000) (Right . const True <$> threadDelay 10000)
assertEqual "should be Right" (Right (False,True)) r
concurrentlyE_left1 :: Assertion
concurrentlyE_left1 = do
r :: Either () ((),()) <- concurrentlyE (Left <$> threadDelay 10000) (Right <$> forever (threadDelay 10000))
assertEqual "should be Left" (Left ()) r
concurrentlyE_left2 :: Assertion
concurrentlyE_left2 = do
r :: Either () ((),()) <- concurrentlyE (Right <$> forever (threadDelay 10000)) (Left <$> threadDelay 10000)
assertEqual "should be Left" (Left ()) r
concurrentlyE_earlyException :: Assertion
concurrentlyE_earlyException = do
ref <- newIORef "never filled"
r :: Either TestException (Either () (Bool,Bool)) <- try $
concurrentlyE
((Right . const False <$> forever (threadDelay 10000)) `onException` writeIORef ref "finalized")
(threadDelay 1000 *> throwIO TestException)
refVal <- readIORef ref
assertEqual "should be Exception" (Left TestException, "finalized") (r, refVal)
concurrentlyE_lateException :: Assertion
concurrentlyE_lateException = do
ref <- newIORef "never filled"
r :: Either TestException (Either () (Bool,Bool)) <- try $
concurrentlyE
((Right . const False <$> threadDelay 100) `onException` writeIORef ref "finalized")
(threadDelay 100000 *> throwIO TestException)
refVal <- readIORef ref
assertEqual "should be Exception" (Left TestException, "never filled") (r, refVal)
#if MIN_VERSION_base(4,9,0)
concurrentlyE_Monoid :: Assertion
concurrentlyE_Monoid = do
let delays :: [Int]
delays = [1000, 10000, 100000]
actions = zipWith (*>) (threadDelay <$> delays) (pure . Right . (:[]) <$> ['a'..])
r :: Either () String <- runConcurrentlyE $ foldMap ConcurrentlyE $ actions
assertEqual "Combined result in order" (Right "abc") r
concurrentlyE_Monoid_fail :: Assertion
concurrentlyE_Monoid_fail = do
let delays :: [Int]
delays = [1000, 200000]
actions = zipWith (*>) (threadDelay <$> delays) (pure . Right . (:[]) <$> ['a'..])
failDelays = [10000, 100000]
failActions = zipWith (*>) (threadDelay <$> delays) (pure . Left <$> ['u'..])
forM_ (permutations (actions ++ failActions)) $ \current -> do
r :: Either Char [Char] <- runConcurrentlyE $ foldMap ConcurrentlyE $ current
assertEqual "The earliest failure" (Left 'u') r
#endif
|