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 qualified Control.Arrow as Arrow
14 import qualified Control.Monad as Monad
15 import Data.Proxy (Proxy(..))
16 import Data.Text (Text)
17 import Data.Type.Equality ((:~:)(Refl))
18 import Prelude hiding ((&&), not, (||), (+), negate)
20 import Language.Symantic.Repr
21 import Language.Symantic.Expr
22 import Language.Symantic.Type
23 -- import Language.Symantic.Trans
27 -- * Class 'Sym_Int_Vars'
29 -- | A few boolean variables.
30 class Sym_Int_Vars repr where
34 instance Sym_Int_Vars Repr_Text where
35 x = Repr_Text $ \_p _v -> "x"
36 y = Repr_Text $ \_p _v -> "y"
37 z = Repr_Text $ \_p _v -> "z"
41 e2 = (int 1 + int 0) + negate (int 1 + int 1)
42 e3 = (int 1 + negate (int 0)) + (int 1 + negate (int 1))
43 e4 = int 0 + negate (int 1)
54 ex_from = root_expr_from (Proxy::Proxy Ex)
59 Left err -> Left err @?= Prelude.snd `Arrow.left` expected
60 Right (Exists_Type_and_Repr ty (Forall_Repr r)) ->
62 Left (_, err) -> Right ("…"::String) @?= Left err
63 Right (ty_expected::Type_Root_of_Expr Ex h, _::h, _::Text) ->
64 (Monad.>>= (@?= (\(_::Proxy h, err) -> err) `Arrow.left` expected)) $
65 case ty `eq_type` ty_expected of
66 Nothing -> Monad.return $ Left $
67 error_expr (Proxy::Proxy Ex) $
68 Error_Expr_Type_mismatch ast
70 (Exists_Type ty_expected)
72 let h = host_from_expr r
78 -- , (text_from_expr :: Repr_Text h -> Text) r
82 tests = testGroup "Int" $
83 [ AST "int" [AST "1" []] ==> Right
87 , AST "bool" [AST "True" []] ==> Left (Proxy::Proxy Bool,
89 Error_Expr_Unsupported $ AST "bool" [AST "True" []])
91 [ AST "int" [AST "1" []]
92 , AST "int" [AST "1" []]
98 [ AST "int" [AST "1" []]
99 , AST "int" [AST "1" []]
100 ] in ast ==> Left (Proxy::Proxy Int,
101 Error_Expr_Alt_Curr $
102 Error_Expr_Type_mismatch ast
103 (Exists_Type (type_var0 SZero `type_fun` type_var0 (SSucc SZero)
104 ::Type_Root (Type_Var0 :|: Type_Var1 :|: Type_Fun :|: Type_Int)
106 (Exists_Type type_int))
111 , AST "var" [AST "x" []]
113 , AST "int" [AST "1" []]
123 [ AST "var" [AST "x" []]
124 , AST "int" [AST "1" []]
127 , AST "int" [AST "1" []]
131 , "(\\x0 -> x0 + 1) 1" )
134 , AST "int" [AST "1" []]
136 [ AST "var" [AST "x" []]
137 , AST "int" [AST "1" []]
142 , "let x0 = 1 in x0 + 1" )