1 {-# LANGUAGE FlexibleContexts #-}
3 {-# LANGUAGE NoMonomorphismRestriction #-}
4 {-# LANGUAGE Rank2Types #-}
5 {-# LANGUAGE ScopedTypeVariables #-}
6 {-# LANGUAGE TypeOperators #-}
7 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
8 module Expr.Maybe.Test where
11 import Test.Tasty.HUnit
13 import Control.Arrow (left)
14 import Data.Proxy (Proxy(..))
15 import Data.Text (Text)
16 import Data.Type.Equality ((:~:)(Refl))
17 import Prelude hiding (maybe, not)
19 import Language.Symantic.Repr
20 import Language.Symantic.Expr
21 import Language.Symantic.Type
26 e1 = maybe (bool True) (val not) (just $ bool True)
29 type Ex lam = Expr_Root (Expr_Lambda lam .|. Expr_Maybe lam .|. Expr_Bool)
30 ex_from = root_expr_from (Proxy::Proxy (Ex lam)) (Proxy::Proxy lam)
35 Left err -> Left err @?= snd `left` expected
36 Right (Exists_Type_and_Repr ty (Forall_Repr r)) ->
38 Left (_, err) -> Right ("…"::String) @?= Left err
39 Right (ty_expected::Type_Root_of_Expr (Ex IO) h, _::h, _::Text) ->
40 (>>= (@?= (\(_::Proxy h, err) -> err) `left` expected)) $
41 case ty `eq_type` ty_expected of
42 Nothing -> return $ Left $
43 error_expr (Proxy::Proxy (Ex IO)) $
44 Error_Expr_Type_mismatch ast
46 (Exists_Type ty_expected)
54 -- , (text_from_expr :: Repr_String IO h -> Text) r
58 tests = testGroup "Maybe"
59 [ AST "just" [AST "bool" [AST "True" []]] ==> Right
60 ( type_maybe type_bool
66 , AST "bool" [AST "True" []]
67 , AST "var" [AST "x" []]
70 ( type_maybe type_bool
72 , "just (let x0 = True in x0)" )
74 [ AST "bool" [AST "True" []]
78 , AST "not" [AST "var" [AST "x" []]]
86 , "maybe True (\\x0 -> !x0) nothing" )
88 [ AST "bool" [AST "False" []]
92 , AST "not" [AST "var" [AST "x" []]]
95 [ AST "bool" [AST "True" []]
100 , "maybe False (\\x0 -> !x0) (just True)" )