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 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
|
#
# $Id: test.tcl,v 1.2 2003/07/29 18:13:37 xuanc Exp $
#
# Copyright 1993 Massachusetts Institute of Technology
#
# Permission to use, copy, modify, distribute, and sell this software and its
# documentation for any purpose is hereby granted without fee, provided that
# the above copyright notice appear in all copies and that both that
# copyright notice and this permission notice appear in supporting
# documentation, and that the name of M.I.T. not be used in advertising or
# publicity pertaining to distribution of the software without specific,
# written prior permission. M.I.T. makes no representations about the
# suitability of this software for any purpose. It is provided "as is"
# without express or implied warranty.
#
#
#
# a meta-class for test objects, and a class for test suites
#
Class TestClass -superclass Class
Class TestSuite
#
# check basic argument dispatch and unknown
#
TestSuite objectdispatch
objectdispatch proc run {{n 50}} {
Object adispatch
adispatch proc unknown {m args} {eval list [list $m] $args}
adispatch proc cycle {l n args} {
if {$l>=$n} then {return ok}
set i [llength $args]
foreach a $args {
if {$a != $i} then {
error "wrong order in arguments: $l $n $args"
}
incr i -1
}
incr l
set ukn [eval [list $self] $args]
if {$ukn != $args} then {
error "wrong order in unknown: $ukns"
}
eval [list $self] [list $proc] [list $l] [list $n] [list $l] $args
}
if {[catch {adispatch cycle 1 $n 1} msg]} then {
error "FAILED $self: cycle: $msg"
}
return "PASSED $self"
}
#
# examples from the workshop paper
#
TestSuite paperexamples
paperexamples proc example1 {} {
Object astack
astack set things {}
astack proc put {thing} {
$self instvar things
set things [concat [list $thing] $things]
return $thing
}
astack proc get {} {
$self instvar things
set top [lindex $things 0]
set things [lrange $things 1 end]
return $top
}
astack put bagel
astack get
astack destroy
}
paperexamples proc example2 {} {
Class Safety
Safety instproc init {} {
$self next
$self set count 0
}
Safety instproc put {thing} {
$self instvar count
incr count
$self next $thing
}
Safety instproc get {} {
$self instvar count
if {$count == 0} then { return {empty!} }
incr count -1
$self next
}
Class Stack
Stack instproc init {} {
$self next
$self set things {}
}
Stack instproc put {thing} {
$self instvar things
set things [concat [list $thing] $things]
return $thing
}
Stack instproc get {} {
$self instvar things
set top [lindex $things 0]
set things [lrange $things 1 end]
return $top
}
Class SafeStack -superclass {Safety Stack}
SafeStack s
s put bagel
s get
s get
s destroy
SafeStack destroy
Stack destroy
Safety destroy
}
paperexamples proc run {} {
set msg {}
if {[catch {$self example1; $self example2} msg] == "0"} then {
return "PASSED $self"
} else {
error "FAILED $self: $msg"
}
}
#
# create a graph of classes
#
TestSuite classcreate
classcreate proc factorgraph {{n 3600}} {
TestClass $n
for {set i [expr {$n/2}]} {$i>1} {incr i -1} {
if {($n % $i) == 0} then {
#
# factors become subclasses, direct or indirect
#
if {[TestClass info instances $i] == {}} then {
$self factorgraph $i
$i superclass $n
} elseif {[$i info superclass $n] == 0} then {
$i superclass [concat [$i info superclass] $n]
}
}
}
}
classcreate proc run {} {
set msg {}
if {[catch {$self factorgraph} msg] == "0"} then {
return "PASSED $self"
} else {
error "FAILED $self: $msg"
}
}
#
# lookup superclasses and combine inherited methods
#
TestSuite inheritance
inheritance proc meshes {s l} {
set p -1
foreach j $s {
set n [lsearch -exact $l $j]
if {$n == -1} then {
error "FAILED $self - missing superclass"
}
if {$n <= $p} then {
error "FAILED $self - misordered heritage: $s : $l"
}
set p $n
}
}
inheritance proc superclass {} {
foreach i [TestClass info instances] {
set s [$i info superclass]
set h [$i info heritage]
#
# superclasses should mesh with heritage
#
$self meshes $s $h
}
}
inheritance proc combination {} {
foreach i [TestClass info instances] {
#
# combination should mesh with heritage
#
$i anumber
set obj [lrange [anumber combineforobj] 1 end]
set h [$i info heritage]
$self meshes $obj $h
anumber destroy
if {[$i info procs combineforclass] != {}} then {
set cls [lrange [$i combineforclass] 1 end]
$self meshes $cls $h
}
}
}
inheritance proc run {} {
#
# add combine methods to "random" half of the graph
#
set t [TestClass info instances]
for {set i 0} {$i < [llength $t]} {incr i 2} {
set o [lindex $t $i]
$o instproc combineforobj {} {
return [concat [list $class] [$self next]]
}
$o proc combineforclass {} {
return [concat [list $class] [$self next]]
}
}
#
# and to Object as a fallback
#
Object instproc combineforobj {} {
return [concat [list $class] [$self next]]
}
Object proc combineforclass {} {
return [concat [list $class] [$self next]]
}
$self superclass
$self combination
return "PASSED $self"
}
#
# destroy graph of classes
#
TestSuite classdestroy
classdestroy proc run {} {
#
# remove half of the graph at a time
#
TestClass instproc destroy {} {
global TCdestroy
set TCdestroy $self
$self next
}
while {[TestClass info instances] != {}} {
set t [TestClass info instances]
for {set i 0} {$i < [llength $t]} {incr i} {
set o [lindex $t $i]
#
# quarter dies directly, quarter indirectly, quarter renamed
#
if {($i % 2) == 0} then {
global TCdestroy
set sb [$o info subclass]
if {[info tclversion] >= 7.4 && ($i % 4) == 0} then {
rename $o {}
} else {
$o destroy
}
if {[catch {set TCdestroy}] || $TCdestroy != $o} then {
error "FAILED $self - destroy instproc not run for $o"
}
if {[info commands $o] != {}} then {
error "FAILED $self - $o not removed from interpreter"
}
unset TCdestroy
#
# but everyone must still have a superclass
#
foreach j $sb {
if {[$j info superclass] == {}} then {
$j superclass Object
}
}
} elseif {[info tclversion] >= 7.4 && ($i % 3) == 0} then {
rename $o $o.$i
}
}
inheritance superclass
inheritance combination
}
return "PASSED $self"
}
TestSuite objectinits
objectinits proc prepare {n} {
#
# head of a chain of classes that do add inits
#
TestClass 0
0 instproc init {args} {
eval $self next $args
$self set order {}
}
#
# and the rest
#
for {set i 1} {$i < $n} {incr i} {
TestClass $i -superclass [expr {$i-1}]
#
# record the reverse order of inits
#
$i instproc init {args} {
eval $self next $args
$self instvar order
lappend order $class
}
#
# add instproc for init options
#
$i instproc $i.set {val} {
$self instvar $class
set $class $proc.$val
}
}
}
objectinits proc run {{n 15}} {
$self prepare $n
set il {}
for {set i 1} {$i < $n} {incr i} {
lappend il $i
set al {}
set args {}
for {set j $i} {$j > 0} {incr j -1} {
lappend al $j
lappend args -$j.set $j
#
# create obj of increasing class with increasing options
#
if {[catch {eval $i $i.$j $args} msg] != 0} then {
error "FAILED $self - $msg"
}
if {[$i.$j set order] != $il} then {
error "FAILED $self - inited order was wrong"
}
set vl [lsort -decreasing -integer [$i.$j info vars {[0-9]*}]]
if {$vl != $al} then {
error "FAILED $self - wrong instvar names: $vl : $al"
}
foreach k $vl {
set val $k.set.$k
if {[$i.$j set $k] != $val} then {
error "FAILED $self - wrong instvar values"
}
}
}
}
return "PASSED $self"
}
TestSuite objectvariables
objectvariables proc run {{n 100}} {
TestClass Variables
Variables avar
foreach obj {avar Variables TestClass Class Object} {
#
# set up some variables
#
$obj set scalar 0
$obj set array() {}
$obj unset array()
$obj set unset.$n {}
#
# mess with them recursively
#
$obj proc recurse {n} {
$self instvar scalar array
incr scalar
set array($n) $n
$self instvar unset.$n
unset unset.$n
incr n -1
$self instvar unset.$n
set unset.$n [array names array]
if {$n > 0} then {
$self recurse $n
}
}
$obj recurse $n
#
# check the result and clean up
#
if {[$obj set scalar] != $n} then {
error "FAILED $self - scalar"
}
$obj unset scalar
for {set i $n} {$i > 0} {incr i -1} {
if {[$obj set array($i)] != $i} then {
error "FAILED $self - array"
}
}
$obj unset array
if {[$obj info vars] != "unset.0"} then {
error "FAILED $self - unset: [$obj info vars]"
}
}
#
# trace variables
#
Variables avar2
avar2 proc trace {var ops} {
$self instvar $var
trace variable $var $ops "avar2 traceproc"
}
avar2 proc traceproc {maj min op} {
global trail; lappend trail [list $maj $min $op]
}
global guide trail
avar2 trace array wu
for {set i 0} {$i < $n} {incr i} {
avar2 trace scalar$i wu
avar2 set scalar$i $i
lappend guide [list scalar$i {} w]
avar2 set array($i) [avar2 set scalar$i]
lappend guide [list array $i w]
}
if {$guide != $trail} then {
error "FAILED $self - trace: expected $guide, got $trail"
}
#
# destroy must trigger unset traces
#
set trail {}
set guide {}
lappend guide [list array {} u]
for {set i 0} {$i < $n} {incr i} {
lappend guide [list scalar$i {} u]
}
avar2 destroy
if {[lsort $guide] != [lsort $trail]} then {
error "FAILED $self - trace: expected $guide, got $trail"
}
Variables destroy
return "PASSED $self"
}
#
# c api, if compiled with -DTESTCAPI
#
TestSuite capi
capi proc run {{n 50}} {
set start [dawnoftime read]
for {set i 0} {$i < $n} {incr i} {
Timer atime$i
if {$i % 3} {atime$i stop}
if {$i % 7} {atime$i read}
if {$i % 2} {atime$i start}
if {$i % 5} {atime$i stop}
}
set end [dawnoftime read]
if {$end < $start} {
error "FAILED $self: timer doesn't work"
}
foreach i [Timer info instances] {$i destroy}
Timer destroy
return "PASSED $self"
}
#
# high and low level autoload
#
TestSuite autoload
autoload proc atest {} {
}
autoload proc run {{n 10}} {
global auto_path
foreach i [glob -nocomplain tmpld*.tcl] {exec rm -f $i}
set prev Object
for {set i 0} {$i <= $n} {incr i} {
set fid [open "tmpld$i.tcl" w]
puts $fid "Class AutoTest$i -superclass $prev"
puts $fid "AutoTest0 instproc $i {args} {return 1}"
set prev AutoTest$i
close $fid
}
catch {exec mv -f tclIndex tclIndex.saved}
otcl_mkindex Class . tmpld*.tcl
lappend auto_path .
auto_reset
# why use AutoTest5?
# fine for 0, but not others
# if enable print out in otcl.c, seg fault
# xuanc, 7/29/03
set m [expr {$n/2}]
if {[catch {AutoTest$m atest} msg]} then {
error "FAILED $self - $msg"
}
for {set i $n} {$i > $m} {incr i -1} {
if {[AutoTest0 info instprocs $i] == {}} then {
error "FAILED $self - missing loader stub"
}
if {![catch {AutoTest0 info instbody $i}]} then {
error "FAILED $self - premature load"
}
}
for {set i 0} {$i <= $m} {incr i} {
if {[AutoTest0 info instprocs $i] == {}} then {
error "FAILED $self - missing instproc"
}
if {[catch {AutoTest0 info instbody 0}]} then {
error "FAILED $self - failed load"
}
}
# why 0-10? AutoTest5 can only load procs 0-5
# hangs when i = 6
# need to fix, xuanc, 7/29/2003
for {set i 0} {$i <= $n} {incr i} {
if {![atest $i]} then {
error "FAILED $self - wrong proc result"
}
}
puts "after atest"
exec rm -f tclIndex
foreach i [glob -nocomplain tmpld*.tcl] {exec rm -f $i}
catch {exec mv -f tclIndex.saved tclIndex}
return "PASSED $self"
}
TestSuite proc run {} {
#
# run individual tests in needed order
#
puts [objectdispatch run]
puts [paperexamples run]
puts [classcreate run]
puts [inheritance run]
puts [classdestroy run]
puts [objectinits run]
puts [objectvariables run]
if {[info commands Timer] != {}} then {
puts [capi run]
}
# autoload hangs---xuanc, 7/29/03
puts [autoload run]
}
TestSuite run
exit
# Local Variables:
# mode: tcl
# tcl-indent-level: 2
# End:
|