]> Git — Sourcephile - haskell/symantic.git/blob - symantic-lib/Language/Symantic/Lib/Map/Test.hs
Reduce compile time of tests with -O0 -fmax-simplifier-iterations=0.
[haskell/symantic.git] / symantic-lib / Language / Symantic / Lib / Map / Test.hs
1 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
2 {-# OPTIONS_GHC -O0 -fmax-simplifier-iterations=0 #-}
3 module Lib.Map.Test where
4
5 import Test.Tasty
6
7 import Data.Map.Strict (Map)
8 import qualified Data.Map.Strict as Map
9 import Data.Proxy (Proxy(..))
10 import Prelude hiding (zipWith)
11
12 import Language.Symantic.Typing
13 import Compiling.Term.Test
14
15 type Ifaces =
16 [ Proxy (->)
17 , Proxy []
18 , Proxy Int
19 , Proxy Integer
20 , Proxy Map
21 , Proxy Char
22 , Proxy (,)
23 , Proxy Num
24 , Proxy Monoid
25 ]
26 (==>) = test_compile @Ifaces
27
28 tests :: TestTree
29 tests = testGroup "Map"
30 [ "Map.fromList (zipWith (\\(x:Integer) (y:Char) -> (x, y)) [1, 2, 3] ['a', 'b', 'c'])" ==> Right
31 ( (ty @Map :$ ty @Integer) :$ ty @Char
32 , Map.fromList [(1, 'a'), (2, 'b'), (3, 'c')]
33 , "Map.fromList (((\\x0 -> (\\x1 -> zipWith (\\x2 -> (\\x3 -> (x2, x3))) x0 x1)) (1 : 2 : 3 : [])) ('a' : 'b' : 'c' : []))" )
34 , concat
35 [ "Map.foldrWithKey"
36 , " (\\(k:Integer) (v:Char) (acc:(Integer,[Char])) ->"
37 , " (k + fst acc, v : snd acc))"
38 , " (0, [] @Char)"
39 , " (Map.fromList (zipWith (\\(x:Integer) (y:Char) -> (x,y)) [1, 2, 3] ['a', 'b', 'c']))"
40 ] ==> Right
41 ( (ty @(,) :$ ty @Integer) :$ (ty @[] :$ ty @Char)
42 , (6, "abc")
43 , "((\\x0 -> (\\x1 -> Map.foldrWithKey (\\x2 -> (\\x3 -> (\\x4 -> ((\\x5 -> x2 + x5) (fst x4), x3 : snd x4)))) x0 x1)) (0, [])) (Map.fromList (((\\x0 -> (\\x1 -> zipWith (\\x2 -> (\\x3 -> (x2, x3))) x0 x1)) (1 : 2 : 3 : [])) ('a' : 'b' : 'c' : [])))" )
44 ]