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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
(*testdyn1.sml*)
(* ------------------------------------------------------------------- *)
(* testdyn1, 08/02/1995 19:17, Martin *)
(* Dynamic test of primitives... except for input/output *)
(* ------------------------------------------------------------------- *)
(*
MEMO : 'sin', 'cos', 'arctan', 'ln' and 'exp' are not checked yet.
*)
infix ==
val epsilon = 0.000666
fun r1 == r2 = abs (r1 - r2) < epsilon (*no perfect world*)
fun digit n = chr(ord #"0" + n)
fun digits(n,acc) =
if n >=0 andalso n<=9 then digit n:: acc
else digits (n div 10, digit(n mod 10) :: acc)
fun int_to_string(n) = if n >= 0 then implode(digits(n,[]))
else "~" ^ int_to_string(~n)
fun error b s = print ((if b then "Ok - " else "Error - ") ^ s ^ "...\n")
(* testing stuff *)
val _ =
let
val _ = print "Testing list operations:\n\
\ [rev, @, map]...\n"
in
error (rev [3,34,2,23] = [23,2,34,3]) "rev";
error (map (fn a:int => 2 * a) [3,34,2] = [6,68,4]) "map";
error ([34,56] @ [12,67] = [34,56,12,67]) "@"
end
val _ =
let
val _ = print "Testing string operations:\n\
\ [implode, explode, chr, ord, size]...\n"
fun hds [] = #"-"
| hds (x::_) = x
in
error (int_to_string 232 = "232") "int_to_string";
error (implode [#"h", #"e", #"l", #"l", #" "] = "hell ") "implode";
error (hds (explode "hello") = #"h") "explode";
error (chr 66 = #"B") "chr";
error (ord #"B" = 66) "ord";
error (((chr 1000) handle Chr => #"h") = #"h") "Chr";
error (((chr 1000) handle Div => #"h"
| Chr => #"k") = #"k") "Chr2";
error (size "hello I'm 19 long.." = 19) "size"
end
val _ =
let
val _ = print "Testing ref [ref, :=, !]...\n"
val a = ref "hello"
val g = ref 45
in
error (!a = "hello") "!1";
error ((a := "hej") = ()) ":=1";
error (!a = "hej") "!2";
error ((g := !g + 1) = ()) ":=2";
error (!g = 46) "!3"
end
val _ =
let
val _ = print "Testing polymorphic equality...\n"
val a = [(34,"hejsa"), (4, "bw")]
val b = [[3,23], [~34,23]]
val c = (56, ref "hello")
val d = ref "hej"
datatype k = A of int * string | B | C of k * k
val k1 = C (A(5,"hello"), B)
val k2 = C (A(5,"hello2"), B)
val k3 = C (A(5,"hello2"), B)
in
error (a = [(34,"hejsa"), (4, "bw")]) "equal";
error ((a = [(34,"hejsa"), (4, "cw")]) = false) "equal2";
error (b = [[3,23], [~34,23]]) "equal3";
error ((b = [[3,23], [~34,21]]) = false) "equal4";
error ((c = (56, ref "hello")) = false) "equal5 (ref1)";
error ((34,d) = (34,d)) "equal5 (ref2)";
error (k1 <> k2) "equal6 (dat k)";
error (k2 = k3) "equal7 (dat k)"
end
val _ =
let
val _ = print "Testing arithmetic integer operations:\n\
\ [~, abs, floor, +, -, *, div, mod, <, >, <=, >=] ...\n"
fun checkdivmod (i, d) =
let
val (r, q) = (i mod d, i div d)
val gt_zero = fn a => a > 0
in
error (gt_zero r = gt_zero d andalso d * q + r = i)
("intdivmod - " ^ int_to_string i ^ " mod " ^ int_to_string d ^
" = " ^ int_to_string r ^ ", " ^ int_to_string i ^ " div "
^ int_to_string d ^ " = " ^ int_to_string q)
end
in
error (~ 5 = ~5) "~1";
error (~ (~2) = 2) "~2";
error (abs 5 = 5) "abs1";
error (abs (~23) = 23) "abs2";
error (floor (23.23) = 23) "floor1";
error (floor (~23.23) = ~24) "floor2";
error (((floor (23.0E23)) handle Overflow => 4) = 4) "floor3";
error (23 + 12 = 35 andalso ~4 + 5 = 1) "+";
error (34 - 12 = 22 andalso ~23 - 15 = ~38) "-";
error (12 * 3 = 36 andalso ~23 * 2 = ~46) "*";
map checkdivmod [(2,3), (34, ~3), (5, ~2), (~7, 3)];
error (((3 div 0) handle Div => 60) = 60) "Div1";
error (((3 mod 0) handle Div => 45) = 45) "Div2";
error ((23 < 40) = true) "<1";
error ((54 < 40) = false) "<2";
error ((40 < 40) = false) "<3";
error ((23 > 40) = false) ">1";
error ((54 > 40) = true) ">2";
error ((40 > 40) = false) ">3";
error ((23 <= 40) = true) "<=1";
error ((54 <= 40) = false) "<=2";
error ((40 <= 40) = true) "<=3";
error ((23 >= 40) = false) ">=1";
error ((54 >= 40) = true) ">=2";
error ((40 >= 40) = true) ">=3"
end
val _ =
let
val _ = print "Testing arithmetic real operations:\n\
\ [+, -, *, /, ~, abs, real, sqrt, <, >, <=, >=] ...\n"
in
error (4.0 + 3.0 == 7.0) "+";
error (4.0 - 1.0 == 3.0) "-";
error (4.0 * 3.0 == 12.0) "*";
error (9.0 / 2.0 == 4.5) "/";
error (~ 5.3 == ~5.3) "~1";
error (~ (~2.23) == 2.23) "~2";
error (abs 5.23 == 5.23) "abs1";
error (abs (~23.12) == 23.12) "abs2";
error (real 5 == 5.0) "real1";
error (real ~5 == ~5.0) "real2";
error (Math.sqrt 0.0 == 0.0) "sqrt1";
error (Math.sqrt 2.0 > 1.4) "sqrt2";
error (Math.sqrt 2.0 < 1.5) "sqrt3";
error ((23.34 < 40.23) = true) "<1";
error ((54.12 < 40.45) = false) "<2";
error ((40.12 < 40.12) = false) "<3";
error ((23.34 > 40.12) = false) ">1";
error ((54.45 > 40.23) = true) ">2";
error ((40.23 > 40.23) = false) ">3";
error ((23.12 <= 40.34) = true) "<=1";
error ((54.23 <= 40.23) = false) "<=2";
error ((40.23 <= 40.23) = true) "<=3";
error ((23.75 >= 40.75) = false) ">=1";
error ((54.57 >= 40.57) = true) ">=2";
error ((40.23 >= 40.23) = true) ">=3"
end
val _ =
let
val _ = print "Testing composition o:\n"
fun f x = 3 + x
fun g y = (y, 2*y)
in
error ((g o f) 7 = (10,20)) "o"
end
val _ =
let
val _ = print "Testing generative exceptions:\n"
fun g a =
let
fun f x =
let
exception E
in
if x < 1 then raise E
else ((f (x-1)) handle E => 7) (* should not handle this.. *)
end
in
(f a) handle _ => a
end (* a *)
in
error (g 10 = 10) "exn - generative"
end
fun etst b s = if b then () else print ("Error - " ^ s ^ "...\n");
val _ = etst ("\u0041\u000a\\u0041\n" = "A\n\092" ^ "u0041\010")
"backslash u does not work or somepin";
val _ = etst (map ord [#"a", #"A", #" ", chr 42, #"\117"] =
[97, 65, 32, 42, 117]) "char problem, maybe #"
val _ = print "End of test.\n"
|