packages feed

auto-update-0.1.1.2: test/Control/AutoUpdateSpec.hs

module Control.AutoUpdateSpec (spec) where

import Test.Hspec
import Test.Hspec.QuickCheck
import Data.IORef
import Control.Concurrent (threadDelay)
import Control.Monad (replicateM_, forM_)
import Control.AutoUpdate

spec :: Spec
spec = do
    prop "incrementer" $ \st' -> do
        let st = abs st' `mod` 10000
        ref <- newIORef 0
        next <- mkAutoUpdate defaultUpdateSettings
            { updateAction = atomicModifyIORef ref $ \i ->
                let i' = succ i in i' `seq` (i', i')
            , updateSpawnThreshold = st
            , updateFreq = 10000
            }

        forM_ [1..st + 1] $ \i -> do
            j <- next
            j `shouldBe` i

        replicateM_ 50 $ do
            i <- next
            i `shouldBe` st + 2

        threadDelay 60000
        last1 <- readIORef ref
        threadDelay 20000
        last2 <- readIORef ref
        last2 `shouldBe` last1