summaryrefslogtreecommitdiff
path: root/testsuite/tests/lib/should_run/dynamic001.hs
blob: 7a3fd515e9daa17f0b262a462359ce4a198a6bab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
-- !!! Dynamic library regression tests
module Main(main) where

import Data.Dynamic

main :: IO ()
main = do
   test   "toDyn"   toDyn_list
   testIO "fromDyn" fromDyn_test

toDyn_list :: [Dynamic]
toDyn_list =
    [ toDyn (1::Int)
    , toDyn ('a')
    , toDyn False
    , toDyn ((-1.0)::Float)
    , toDyn (0.0::Double)
    , toDyn (1394::Integer)
    , toDyn (print "hello")
    , toDyn toDyn_list
    , toDyn ([]::[Int])
    , toDyn (Nothing  :: Maybe Int)
    , toDyn ((Just 2) :: Maybe Int)
    , toDyn ((Just 2) :: Maybe Int)
    , toDyn ((Left 3) :: Either Int Bool)
    , toDyn ((Right 3) :: Either Char Int)
    , toDyn ()
    , toDyn LT
    , toDyn ((),2::Int)
    , toDyn ((),2::Int,'a')
    , toDyn ((),2::Int,'a',1.0::Double)
    , toDyn ((),2::Int,'a',1.0::Double,Nothing::Maybe Bool)
    , toDyn ((+) :: Int -> Int -> Int)
    , toDyn ((+) :: Integer -> Integer -> Integer)
    , toDyn ((++) :: [Char] -> [Char] -> [Char])
    ]

-- Testing the conversion from Dynamic values:
fromDyn_test :: IO ()
fromDyn_test = do
   print (fromDyn (toDyn (1::Int)) (0::Int))
   print (fromDyn (toDyn ('a'::Char)) (0::Int))
   print (fromDyn (toDyn 'a') 'b')
   print (fromDyn (toDyn (1::Float)) (0::Float))
   print (fromDyn (toDyn (2::Float)) (0::Int))
   print (fromDyn (toDyn (3::Double)) (0::Double))
   print (fromDyn (toDyn (4::Double)) (0::Int))
   print (fromDyn (toDyn (5::Integer)) (0::Integer))
   print (fromDyn (toDyn (6::Integer)) False)
   print (fromDyn (toDyn [1,3,5::Integer]) ([]::[Integer]))
   print (fromDyn (toDyn (Just True)) (Nothing::Maybe Bool))
   print (fromDyn (toDyn (Left True::Either Bool Bool)) (Right False :: Either Bool Bool))
   print (fromDyn (toDyn LT) GT)
   print (fromDyn (toDyn ((+1)::Int->Int)) False)
   print ((fromDyn (toDyn ((+1)::Int->Int)) ((+2)::Int->Int)) 3)
   print ((fromDyn (toDyn ((++)::[Int]->[Int]->[Int])) ((undefined)::[Int]->[Int]->[Int])) [1] [2])

    
-- Misc test utilities:
test :: Show a => String -> [a] -> IO ()
test str ls = do
  putStrLn ("*** Testing: " ++ str ++ " ***")
  putStrLn (showListLn ls)

testIO :: String -> IO () -> IO ()
testIO str tst = do
  putStrLn ("*** Testing: " ++ str ++ " ***")
  tst


-- showListLn presents a list in a diff-friendly format.
-- showListLn [a1,..an]
--  =>
--      [ a1
--      , a2
--      ..
--      , an
--      ]
--   
showListLn :: Show a => [a] -> String
showListLn [] = ""
showListLn ls = '[' : ' ' : go ls
 where
   go    [x] = show x ++ "\n]"
   go (x:xs) = show x ++ '\n':',':' ':go xs

{-
test8 = toDyn (mkAppTy listTc)
test9 :: Float
test9 = fromDyn test8 0

printf :: String -> [Dynamic] -> IO ()
printf str args = putStr (decode str args)
 where
  decode [] [] = []
  decode ('%':'n':cs) (d:ds) =
    (\ v -> show v++decode cs ds) (fromDyn  d (0::Int))
  decode ('%':'c':cs) (d:ds) =
    (\ v -> show v++decode cs ds) (fromDyn  d ('\0'))
  decode ('%':'b':cs) (d:ds) =
    (\ v -> show v++decode cs ds) (fromDyn  d (False::Bool))
  decode (x:xs) ds = x:decode xs ds

test10 :: IO ()
test10 = printf "%n = %c, that much is %b\n" [toDyn (3::Int),toDyn 'a', toDyn False]

-}