egison-3.2.14: test/UnitTest.hs
module Main where
import Control.Applicative
import Control.Monad
import Data.IORef
import Test.Framework (defaultMain)
import Test.Framework.Providers.HUnit (hUnitTestToTests)
import Test.HUnit
import System.FilePath.Glob (glob)
import Language.Egison.Types
import Language.Egison.Core
import Language.Egison.Primitives
import Language.Egison
main = do
testCases <- glob "test/**/*.egi"
defaultMain $ hUnitTestToTests $ test $ map runTestCase testCases
runTestCase :: FilePath -> Test
runTestCase file = TestLabel file . TestCase $ do
env <- primitiveEnv >>= loadCoreLibraries
assertEgisonM $ do
exprs <- loadFile file
let (bindings, tests) = foldr collectDefsAndTests ([], []) exprs
env' <- recursiveBind env bindings
forM_ tests $ evalExprDeep env'
where
assertEgisonM :: EgisonM a -> Assertion
assertEgisonM m = fromEgisonM m >>= assertString . either show (const "")
collectDefsAndTests (Define name expr) (bindings, tests) =
((name, expr) : bindings, tests)
collectDefsAndTests (Test expr) (bindings, tests) =
(bindings, expr : tests)
collectDefsAndTests _ r = r