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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
|
(* Auxiliary functions for test cases *)
infix 1 seq
fun e1 seq e2 = e2;
fun check b = if b then "OK" else "WRONG";
fun check' f = (if f () then "OK" else "WRONG") handle _ => "EXN";
fun range (from, to) p =
let open Int
in
(from > to) orelse (p from) andalso (range (from+1, to) p)
end;
fun checkrange bounds = check o range bounds;
fun tst0 s s' = print (s ^ " \t" ^ s' ^ "\n");
fun tst s b = tst0 s (check b);
fun tst' s f = tst0 s (check' f);
fun tstrange s bounds = (tst s) o range bounds
(* test/string.sml
PS 1994-12-10, 1995-06-14, 1996-05-16 *)
(*KILL 05/11/1997 11:02. tho.:
use "auxil.sml";
*)
val _ = print "Testing String...\n";
local
val map' = map
open Char String
val map = map'
val s1 = "" (* size s1 = 0 *)
and s2 = "ABCDE\tFGHI"; (* size s2 = 10 *)
val ABCDE = List.map chr [65,66,67,68,69];
in
val test1 = tst' "test1" (fn _ => (size s1 = 0 andalso size s2 = 10));
val test2 = tst' "test2" (fn _ => (sub(s2,6) = chr 70 andalso sub(s2,9) = chr 73));
val test3 = tst0 "test3" ((sub(s1, 0) seq "WRONG") handle Subscript => "OK" | _ => "WRONG");
val test4 = tst0 "test4" ((sub(s2, ~1) seq "WRONG") handle Subscript => "OK" | _ => "WRONG");
val test5 = tst0 "test5" ((sub(s2, 10) seq "WRONG") handle Subscript => "OK" | _ => "WRONG");
val test6 =
tst' "test6" (fn _ =>
"" = concat [] andalso "" = concat [s1]
andalso s2 = concat [s2] andalso s2^s2 = concat [s2,s2]
andalso "ABCD" = concat ["A","B","C","D"]);
val test7 = tst' "test7" (fn _ => "A" = str(chr 65));
val test8 =
tst' "test8" (fn _ => "" = implode [] andalso "ABCDE" = implode ABCDE);
val test9 =
tst' "test9" (fn _ => [] = explode "" andalso ABCDE = explode "ABCDE");
val test10 =
tst' "test10" (fn _ =>
s1 < s2 andalso s1 <= s1
andalso s2 > s1 andalso s2 >=s2);
val test11a =
tst' "test11a" (fn _ =>
s2 = extract(s2, 0, SOME (size s2))
andalso s2 = extract(s2, 0, NONE)
andalso "" = extract(s2, size s2, SOME 0)
andalso "" = extract(s2, size s2, NONE)
andalso "" = extract(s1, 0, SOME 0)
andalso "" = extract(s1, 0, NONE));
val test11b = tst0 "test11b" ((extract(s2, ~1, SOME 0) seq "WRONG")
handle Subscript => "OK" | _ => "WRONG");
val test11c = tst0 "test11c" ((extract(s2, 11, SOME 0) seq "WRONG")
handle Subscript => "OK" | _ => "WRONG");
val test11d = tst0 "test11d" ((extract(s2, 0, SOME 11) seq "WRONG")
handle Subscript => "OK" | _ => "WRONG");
val test11e = tst0 "test11e" ((extract(s2, 10, SOME 1) seq "WRONG")
handle Subscript => "OK" | _ => "WRONG");
val test11f = tst0 "test11f" ((extract(s2, ~1, NONE) seq "WRONG")
handle Subscript => "OK" | _ => "WRONG");
val test11g = tst0 "test11g" ((extract(s2, 11, NONE) seq "WRONG")
handle Subscript => "OK" | _ => "WRONG");
val test11h =
tst' "test11h" (fn _ =>
"ABCDE" = extract(s2, 0, SOME 5)
andalso "FGHI" = extract(s2, 6, SOME 4)
andalso "FGHI" = extract(s2, 6, NONE));
val test12a =
tst' "test12a" (fn _ =>
s2 = substring(s2, 0, size s2)
andalso "" = substring(s2, size s2, 0)
andalso "" = substring(s1, 0, 0));
val test12b = tst0 "test12b" ((substring(s2, ~1, 0) seq "WRONG")
handle Subscript => "OK" | _ => "WRONG");
val test12c = tst0 "test12c" ((substring(s2, 11, 0) seq "WRONG")
handle Subscript => "OK" | _ => "WRONG");
val test12d = tst0 "test12d" ((substring(s2, 0, 11) seq "WRONG")
handle Subscript => "OK" | _ => "WRONG");
val test12e = tst0 "test12e" ((substring(s2, 10, 1) seq "WRONG")
handle Subscript => "OK" | _ => "WRONG");
val test12f =
tst' "test12f" (fn _ =>
"ABCDE" = substring(s2, 0, 5)
andalso "FGHI" = substring(s2, 6, 4));
val test12g =
tst0 "test12g" (case (Int.minInt, Int.maxInt) of
(SOME min, SOME max) =>
((substring("", max, max); substring("", min, min); "WRONG")
handle Subscript => "OK" | _ => "WRONG")
| _ => "OK");
val test13a =
tst' "test13a" (fn _ =>
(translate (fn _ => "") s2 = ""
andalso translate (fn x => str x) "" = ""
andalso translate (fn x => str x) s2 = s2));
val test13b =
tst' "test13b" (fn _ =>
(translate (fn c => if c = #"\t" then "XYZ " else str c) s2
= "ABCDEXYZ FGHI"));
val test14 =
tst' "test14" (fn _ =>
(tokens isSpace "" = []
andalso tokens isSpace " \t \n" = []
andalso tokens (fn c => c = #",") ",asd,,def,fgh"
= ["asd","def","fgh"]));
val test15 =
tst' "test15" (fn _ =>
(fields isSpace "" = [""]
andalso fields isSpace " \t \n" = ["","","","","","",""]
andalso fields (fn c => c = #",") ",asd,,def,fgh"
= ["","asd","","def","fgh"]));
val test16a =
tst' "test16a" (fn _ =>
EQUAL = compare(s1,s1) andalso EQUAL = compare(s2,s2)
andalso LESS = compare("A", "B")
andalso GREATER = compare("B", "A")
andalso LESS = compare("ABCD", "ABCDE")
andalso GREATER = compare("ABCDE", "ABCD"));
val test16b =
tst' "test16b" (fn _ =>
EQUAL = compare(s1,s1) andalso EQUAL = compare(s2,s2)
andalso LESS = compare("A", "a")
andalso GREATER = compare("b", "B")
andalso LESS = compare("abcd", "abcde")
andalso GREATER = compare("abcde", "abcd"));
(* Test cases for SML string escape functions. *)
val test17 =
let fun chk (arg, res) = toString (str arg) = res
val argResList =
[(#"\000", "\\^@"),
(#"\001", "\\^A"),
(#"\006", "\\^F"),
(#"\007", "\\a"),
(#"\008", "\\b"),
(#"\009", "\\t"),
(#"\010", "\\n"),
(#"\011", "\\v"),
(#"\012", "\\f"),
(#"\013", "\\r"),
(#"\014", "\\^N"),
(#"\031", "\\^_"),
(#"\032", " "),
(#"\126", "~"),
(#"\\", "\\\\"),
(#"\"", "\\\""),
(#"A", "A"),
(#"\127", "\\127"),
(#"\128", "\\128"),
(#"\255", "\\255")]
val (arg, res) = (implode (map #1 argResList),
concat (map #2 argResList))
in tst' "test17" (fn _ => List.all chk argResList
andalso toString arg = res)
end;
val test18 =
let val chars = CharVector.tabulate(256, chr)
val l = CharVector.foldl (fn (e,l) => e :: l) [] chars
val chars = implode l
in tst' "test18" (fn _ => fromString(toString chars) = SOME chars) end
val test19 =
let fun chkFromString (arg, res) = fromString arg = SOME (str res)
val argResList =
[("A", #"A"),
("z", #"z"),
("@", #"@"),
("~", #"~"),
("\\a", #"\007"),
("\\b", #"\008"),
("\\t", #"\009"),
("\\n", #"\010"),
("\\v", #"\011"),
("\\f", #"\012"),
("\\r", #"\013"),
("\\\\", #"\\"),
("\\\"", #"\""),
("\\^@", #"\000"),
("\\^A", #"\001"),
("\\^Z", #"\026"),
("\\^_", #"\031"),
("\\000", #"\000"),
("\\097", #"a"),
("\\255", #"\255"),
("\\ \t\n\n \\A", #"A"),
("\\ \t\n\n \\z", #"z"),
("\\ \t\n\n \\@", #"@"),
("\\ \t\n\n \\~", #"~"),
("\\ \t\n\n \\\\n", #"\n"),
("\\ \t\n\n \\\\t", #"\t"),
("\\ \t\n\n \\\\\\", #"\\"),
("\\ \t\n\n \\\\\"", #"\""),
("\\ \t\n\n \\\\^@", #"\000"),
("\\ \t\n\n \\\\^A", #"\001"),
("\\ \t\n\n \\\\^Z", #"\026"),
("\\ \t\n\n \\\\^_", #"\031"),
("\\ \t\n\n \\\\000", #"\000"),
("\\ \t\n\n \\\\097", #"a"),
("\\ \t\n\n \\\\255", #"\255")]
val (arg, res) = (concat (map #1 argResList),
implode (map #2 argResList))
in
tst' "test19" (fn _ => List.all chkFromString argResList
andalso fromString arg = SOME res)
end;
val test20 =
tst' "test20" (fn _ => List.all (fn arg => isSome (fromString arg))
["\\",
"\\c",
"\\F",
"\\e",
"\\g",
"\\N",
"\\T",
"\\1",
"\\11",
"\\256",
"\\-65",
"\\~65",
"\\?",
"\\^`",
"\\^a",
"\\^z",
"\\ a",
"\\ a\\B",
"\\ \\"]);
(* Test cases for C string escape functions *)
val test21 =
let val chars = CharVector.tabulate(256, chr)
val l = CharVector.foldl (fn (e,l) => e :: l) [] chars
val chars = implode l
in tst' "test21" (fn _ => fromCString(toCString chars) = SOME chars) end;
val test22 =
let val argResList =
[("\010", "\\n"),
("\009", "\\t"),
("\011", "\\v"),
("\008", "\\b"),
("\013", "\\r"),
("\012", "\\f"),
("\007", "\\a"),
("\\", "\\\\"),
("?", "\\?"),
("'", "\\'"),
("\"", "\\\"")]
val (arg, res) = (concat (map #1 argResList),
concat (map #2 argResList))
in
tst' "test22" (fn _ =>
List.all (fn (arg, res) => toCString arg = res) argResList
andalso toCString arg = res)
end;
val test23 =
let fun checkFromCStringSucc (arg, res) = fromCString arg = SOME res
val argResList =
[("\\n", "\010"),
("\\t", "\009"),
("\\v", "\011"),
("\\b", "\008"),
("\\r", "\013"),
("\\f", "\012"),
("\\a", "\007"),
("\\\\", "\\"),
("\\?", "?"),
("\\'", "'"),
("\\\"", "\""),
("\\1", "\001"),
("\\11", "\009"),
("\\111", "\073"),
("\\1007", "\0647"),
("\\100A", "\064A"),
("\\0", "\000"),
("\\377", "\255"),
("\\18", "\0018"),
("\\178", "\0158"),
("\\1C", "\001C"),
("\\17C", "\015C"),
("\\x0", "\000"),
("\\xff", "\255"),
("\\xFF", "\255"),
("\\x1", "\001"),
("\\x11", "\017"),
("\\xag", "\010g"),
("\\xAAg", "\170g"),
("\\x0000000a", "\010"),
("\\x0000000a2", "\162"),
("\\x0000000ag", "\010g"),
("\\x0000000A", "\010"),
("\\x0000000A2", "\162"),
("\\x0000000Ag", "\010g"),
("\\x00000000000000000000000000000000000000000000000000000000000000011+",
"\017+")]
val (arg, res) = (concat (map #1 argResList),
concat (map #2 argResList))
in
tst' "test23" (fn _ => List.all checkFromCStringSucc argResList
andalso fromCString arg = SOME res)
end;
val test24 =
let fun checkFromCStringFail arg = isSome (fromCString arg)
in
tst' "test24" (fn _ => List.all checkFromCStringFail
["\\",
"\\X",
"\\=",
"\\400",
"\\777",
"\\8",
"\\9",
"\\c",
"\\d",
"\\x",
"\\x100",
"\\xG"])
end;
val test25 =
tst' "test25" (fn _ =>
isPrefix "" ""
andalso isPrefix "" "abcde"
andalso isPrefix "a" "abcde"
andalso isPrefix "abcd" "abcde"
andalso isPrefix "abcde" "abcde"
andalso not (isPrefix "abcde" "")
andalso not (isPrefix "abcdef" "abcde")
andalso not (isPrefix "Abcde" "abcde")
andalso not (isPrefix "abcdE" "abcde"))
end
|