]> Git — Sourcephile - haskell/symantic.git/blob - Language/Symantic/Expr/Applicative/Test.hs
fix Num requiring Integer
[haskell/symantic.git] / Language / Symantic / Expr / Applicative / Test.hs
1 {-# LANGUAGE FlexibleContexts #-}
2 {-# LANGUAGE FlexibleInstances #-}
3 {-# LANGUAGE GADTs #-}
4 {-# LANGUAGE NoMonomorphismRestriction #-}
5 {-# LANGUAGE ScopedTypeVariables #-}
6 {-# LANGUAGE TypeOperators #-}
7 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
8
9 module Expr.Applicative.Test where
10
11 import Test.Tasty
12 import Test.Tasty.HUnit
13
14 import qualified Control.Arrow as Arrow
15 import qualified Control.Monad as Monad
16 import Data.Proxy (Proxy(..))
17 import Data.Text (Text)
18 import Data.Type.Equality ((:~:)(Refl))
19 import Prelude hiding ((&&), not, (||), (==), (<$>), (+), Applicative(..))
20
21 import Language.Symantic.Type
22 import Language.Symantic.Expr as Expr
23 import Language.Symantic.Repr
24
25 import AST.Test
26
27 -- * Expressions
28 t = bool True
29 f = bool False
30 e1 = lam (\x -> lam $ \y -> x + y)
31 <$> just (int 1)
32 <*> just (int 2)
33
34 -- * Tests
35 type Ex = Expr_Root
36 ( Expr_Lambda
37 .|. Expr_List
38 .|. Expr_Maybe
39 .|. Expr_Int
40 .|. Expr_Integer
41 .|. Expr_Num
42 .|. Expr_Bool
43 .|. Expr_Functor
44 .|. Expr_Applicative
45 )
46 ex_from = root_expr_from (Proxy::Proxy Ex)
47
48 (==>) ast expected =
49 testCase (show ast) $
50 case ex_from ast of
51 Left err -> Left err @?= Prelude.snd `Arrow.left` expected
52 Right (Exists_Type0_and_Repr ty (Forall_Repr r)) ->
53 case expected of
54 Left (_, err) -> Right ("…"::String) @?= Left err
55 Right (ty_expected::Type_Root_of_Expr Ex h, _::h, _::Text) ->
56 (Monad.>>= (@?= (\(_::Proxy h, err) -> err) `Arrow.left` expected)) $
57 case ty `type0_eq` ty_expected of
58 Nothing -> Monad.return $ Left $
59 error_expr (Proxy::Proxy Ex) $
60 Error_Expr_Type_mismatch ast
61 (Exists_Type0 ty)
62 (Exists_Type0 ty_expected)
63 Just Refl -> do
64 let h = host_from_expr r
65 Monad.return $
66 Right
67 ( ty
68 , h
69 , text_from_expr r
70 -- , (text_from_expr :: Repr_Text h -> Text) r
71 )
72
73 tests :: TestTree
74 tests = testGroup "Applicative"
75 [ AST "<*>"
76 [ AST "<$>"
77 [ AST "\\"
78 [ AST "x" [], AST "Int" []
79 , AST "\\"
80 [ AST "y" [], AST "Int" []
81 , AST "+" [ AST "var" [AST "x" []]
82 , AST "var" [AST "y" []] ]
83 ]
84 ]
85 , AST "just" [ AST "int" [AST "1" []] ]
86 ]
87 , AST "just" [ AST "int" [AST "2" []] ]
88 ] ==> Right
89 ( type_maybe type_int
90 , Just 3
91 , "fmap (\\x0 -> (\\x1 -> x0 + x1)) (just 1) <*> just 2" )
92 ]