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.Int.Test where
11 import Test.Tasty.HUnit
13 import Control.Arrow (left)
14 -- import Data.Functor.Identity (Identity)
15 -- import Control.Monad.IO.Class (MonadIO(..))
16 import Data.Proxy (Proxy(..))
17 import Data.Text (Text)
18 import Data.Type.Equality ((:~:)(Refl))
19 import Prelude hiding ((&&), not, (||), (+), negate)
21 import Language.Symantic.Repr
22 import Language.Symantic.Expr
23 import Language.Symantic.Type
24 -- import Language.Symantic.Trans
28 -- * Class 'Sym_Int_Vars'
30 -- | A few boolean variables.
31 class Sym_Int_Vars repr where
35 instance Sym_Int_Vars (Repr_Text fun) where
36 x = Repr_Text $ \_p _v -> "x"
37 y = Repr_Text $ \_p _v -> "y"
38 z = Repr_Text $ \_p _v -> "z"
42 e2 = (int 1 + int 0) + negate (int 1 + int 1)
43 e3 = (int 1 + negate (int 0)) + (int 1 + negate (int 1))
44 e4 = int 0 + negate (int 1)
51 type Ex lam = Expr_Root (Expr_Lambda lam .|. Expr_Int)
52 ex_from = root_expr_from (Proxy::Proxy (Ex lam)) (Proxy::Proxy lam)
57 Left err -> Left err @?= snd `left` expected
58 Right (Exists_Type_and_Repr ty (Forall_Repr r)) ->
60 Left (_, err) -> Right ("…"::String) @?= Left err
61 Right (ty_expected::Type_Root_of_Expr (Ex IO) h, _::h, _::Text) ->
62 (>>= (@?= (\(_::Proxy h, err) -> err) `left` expected)) $
63 case ty `type_eq` ty_expected of
64 Nothing -> return $ Left $
65 error_expr (Proxy::Proxy (Ex IO)) $
66 Error_Expr_Type_mismatch ast
68 (Exists_Type ty_expected)
76 -- , (text_from_expr :: Repr_Text IO h -> String) r
80 tests = testGroup "Int" $
81 [ AST "int" [AST "1" []] ==> Right
85 , AST "bool" [AST "True" []] ==> Left (Proxy::Proxy Bool,
87 Error_Expr_Unsupported $ AST "bool" [AST "True" []])
89 [ AST "int" [AST "1" []]
90 , AST "int" [AST "1" []]
96 [ AST "int" [AST "1" []]
97 , AST "int" [AST "1" []]
98 ] in ast ==> Left (Proxy::Proxy Int,
100 Error_Expr_Type_mismatch ast
101 (Exists_Type (type_var SZero `type_fun` type_var (SSucc SZero)
102 ::Type_Root (Type_Var :|: Type_Fun IO :|: Type_Int)
103 (IO Zero -> IO (Succ Zero))))
104 (Exists_Type type_int))
109 , AST "var" [AST "x" []]
111 , AST "int" [AST "1" []]
121 [ AST "var" [AST "x" []]
122 , AST "int" [AST "1" []]
125 , AST "int" [AST "1" []]
129 , "(\\x0 -> x0 + 1) 1" )
132 , AST "int" [AST "1" []]
134 [ AST "var" [AST "x" []]
135 , AST "int" [AST "1" []]
140 , "let x0 = 1 in x0 + 1" )