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
|
# -*- tcl -*-
# This file contains support code for the "Trf" test suite. It is
# normally sourced by the individual files in the test suite before
# they run their tests. This improved approach to testing was designed
# and initially implemented by Mary Ann May-Pumphrey of Sun Microsystems.
#
# Copyright (c) 1990-1994 The Regents of the University of California.
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
# Copyright (c) 1998 by Scriptics Corporation
#
# Modified 1999 Andreas Kupries (andreas_kupries@users.sourceforge.net)
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: defs,v 1.12 2003/03/27 07:51:05 andreas_kupries Exp $
if {[info tclversion] < 8.0} {
package require -exact Memchan 1.2
} else {
package require Memchan
}
package require Trf
if {![info exists VERBOSE]} {
set VERBOSE 0
}
if {![info exists TESTS]} {
set TESTS {}
}
# If tests are being run as root, issue a warning message and set a
# variable to prevent some tests from running at all.
set user {}
if {$tcl_platform(platform) == "unix"} {
catch {set user [exec whoami]}
if {$user == ""} {
catch {regexp {^[^(]*\(([^)]*)\)} [exec id] dummy user}
}
if {$user == ""} {set user root}
if {$user == "root"} {
puts stdout "Warning: you're executing as root. I'll have to"
puts stdout "skip some of the tests, since they'll fail as root."
set testConfig(root) 1
}
}
# Some of the tests don't work on some system configurations due to
# differences in word length, file system configuration, etc. In order
# to prevent false alarms, these tests are generally only run in the
# master development directory for Tcl. The presence of a file
# "doAllTests" in this directory is used to indicate that the non-portable
# tests should be run.
# If there is no "memory" command (because memory debugging isn't
# enabled), generate a dummy command that does nothing.
if {[info commands memory] == ""} {
proc memory args {}
}
# Check configuration information that will determine which tests
# to run. To do this, create an array testConfig. Each element
# has a 0 or 1 value, and the following elements are defined:
# unixOnly - 1 means this is a UNIX platform, so it's OK
# to run tests that only work under UNIX.
# macOnly - 1 means this is a Mac platform, so it's OK
# to run tests that only work on Macs.
# pcOnly - 1 means this is a PC platform, so it's OK to
# run tests that only work on PCs.
# unixOrPc - 1 means this is a UNIX or PC platform.
# macOrPc - 1 means this is a Mac or PC platform.
# macOrUnix - 1 means this is a Mac or UNIX platform.
# nonPortable - 1 means this the tests are being running in
# the master Tcl/Tk development environment;
# Some tests are inherently non-portable because
# they depend on things like word length, file system
# configuration, window manager, etc. These tests
# are only run in the main Tcl development directory
# where the configuration is well known. The presence
# of the file "doAllTests" in this directory indicates
# that it is safe to run non-portable tests.
# knownBug - The test is known to fail and the bug is not yet
# fixed. The test will be run only if the file
# "doBuggyTests" exists (intended for Tcl dev. group
# internal use only).
# tempNotPc - The inverse of pcOnly. This flag is used to
# temporarily disable a test.
# tempNotMac - The inverse of macOnly. This flag is used to
# temporarily disable a test.
# nonBlockFiles - 1 means this platform supports setting files into
# nonblocking mode.
# asyncPipeClose- 1 means this platform supports async flush and
# async close on a pipe.
# unixExecs - 1 means this machine has commands such as 'cat',
# 'echo' etc available.
# notIfCompiled - 1 means this that it is safe to run tests that
# might fail if the bytecode compiler is used. This
# element is set 1 if the file "doAllTests" exists in
# this directory. Normally, this element is 0 so that
# tests that fail with the bytecode compiler are
# skipped. As of 11/2/96 these are the history tests
# since they depend on accurate source location
# information.
catch {unset testConfig}
if {$tcl_platform(platform) == "unix"} {
set testConfig(unixOnly) 1
set testConfig(tempNotPc) 1
set testConfig(tempNotMac) 1
} else {
set testConfig(unixOnly) 0
}
if {$tcl_platform(platform) == "macintosh"} {
set testConfig(tempNotPc) 1
set testConfig(macOnly) 1
} else {
set testConfig(macOnly) 0
}
if {$tcl_platform(platform) == "windows"} {
set testConfig(tempNotMac) 1
set testConfig(pcOnly) 1
} else {
set testConfig(pcOnly) 0
}
set testConfig(unixOrPc) [expr {$testConfig(unixOnly) || $testConfig(pcOnly)}]
set testConfig(macOrPc) [expr {$testConfig(macOnly) || $testConfig(pcOnly)}]
set testConfig(macOrUnix) [expr {$testConfig(macOnly) || $testConfig(unixOnly)}]
set testConfig(nonPortable) [expr {[file exists doAllTests] || [file exists doAllTe]}]
set testConfig(knownBug) [expr {[file exists doBuggyTests] || [file exists doBuggyT]}]
set testConfig(notIfCompiled) [file exists doAllCompilerTests]
set testConfig(unix) $testConfig(unixOnly)
set testConfig(mac) $testConfig(macOnly)
set testConfig(pc) $testConfig(pcOnly)
set testConfig(nt) [expr {$tcl_platform(os) == "Windows NT"}]
set testConfig(95) [expr {$tcl_platform(os) == "Windows 95"}]
set testConfig(win32s) [expr {$tcl_platform(os) == "Win32s"}]
# The following config switches are used to mark tests that crash on
# certain platforms, so that they can be reactivated again when the
# underlying problem is fixed.
set testConfig(pcCrash) $testConfig(macOrUnix)
set testConfig(macCrash) $testConfig(unixOrPc)
set testConfig(unixCrash) $testConfig(macOrPc)
if {[catch {set f [open defs r]}]} {
set testConfig(nonBlockFiles) 1
} else {
if {[catch {fconfigure $f -blocking off}] == 0} {
set testConfig(nonBlockFiles) 1
} else {
set testConfig(nonBlockFiles) 0
}
close $f
}
trace variable testConfig r safeFetch
proc safeFetch {n1 n2 op} {
global testConfig
if {($n2 != {}) && ([info exists testConfig($n2)] == 0)} {
set testConfig($n2) 0
}
}
# Test for SCO Unix - cannot run async flushing tests because a potential
# problem with select is apparently interfering. (Mark Diekhans).
if {$tcl_platform(platform) == "unix"} {
if {[catch {exec uname -X | fgrep {Release = 3.2v}}] == 0} {
set testConfig(asyncPipeClose) 0
} else {
set testConfig(asyncPipeClose) 1
}
} else {
set testConfig(asyncPipeClose) 1
}
# Test to see if we have a broken version of sprintf with respect to the
# "e" format of floating-point numbers.
set testConfig(eformat) 1
if {[string compare "[format %g 5e-5]" "5e-05"] != 0} {
set testConfig(eformat) 0
puts stdout "(will skip tests that depend on the \"e\" format of floating-point numbers)"
}
# Test to see if execed commands such as cat, echo, rm and so forth are
# present on this machine.
set testConfig(unixExecs) 1
if {$tcl_platform(platform) == "macintosh"} {
set testConfig(unixExecs) 0
}
if {($testConfig(unixExecs) == 1) && ($tcl_platform(platform) == "windows")} {
if {[catch {exec cat defs}] == 1} {
set testConfig(unixExecs) 0
}
if {($testConfig(unixExecs) == 1) && ([catch {exec echo hello}] == 1)} {
set testConfig(unixExecs) 0
}
if {($testConfig(unixExecs) == 1) && \
([catch {exec sh -c echo hello}] == 1)} {
set testConfig(unixExecs) 0
}
if {($testConfig(unixExecs) == 1) && ([catch {exec wc defs}] == 1)} {
set testConfig(unixExecs) 0
}
if {$testConfig(unixExecs) == 1} {
exec echo hello > removeMe
if {[catch {exec rm removeMe}] == 1} {
set testConfig(unixExecs) 0
}
}
if {($testConfig(unixExecs) == 1) && ([catch {exec sleep 1}] == 1)} {
set testConfig(unixExecs) 0
}
if {($testConfig(unixExecs) == 1) && \
([catch {exec fgrep unixExecs defs}] == 1)} {
set testConfig(unixExecs) 0
}
if {($testConfig(unixExecs) == 1) && ([catch {exec ps}] == 1)} {
set testConfig(unixExecs) 0
}
if {($testConfig(unixExecs) == 1) && \
([catch {exec echo abc > removeMe}] == 0) && \
([catch {exec chmod 644 removeMe}] == 1) && \
([catch {exec rm removeMe}] == 0)} {
set testConfig(unixExecs) 0
} else {
catch {exec rm -f removeMe}
}
if {($testConfig(unixExecs) == 1) && \
([catch {exec mkdir removeMe}] == 1)} {
set testConfig(unixExecs) 0
} else {
catch {exec rm -r removeMe}
}
if {$testConfig(unixExecs) == 0} {
puts stdout "Warning: Unix-style executables are not available, so"
puts stdout "some tests will be skipped."
}
}
proc print_verbose {name description constraints script code answer} {
puts stdout "\n"
if {[string length $constraints]} {
puts stdout "==== $name $description\t--- ($constraints) ---"
} else {
puts stdout "==== $name $description"
}
puts stdout "==== Contents of test case:"
puts stdout "$script"
if {$code != 0} {
if {$code == 1} {
puts stdout "==== Test generated error:"
puts stdout $answer
} elseif {$code == 2} {
puts stdout "==== Test generated return exception; result was:"
puts stdout $answer
} elseif {$code == 3} {
puts stdout "==== Test generated break exception"
} elseif {$code == 4} {
puts stdout "==== Test generated continue exception"
} else {
puts stdout "==== Test generated exception $code; message was:"
puts stdout $answer
}
} else {
puts stdout "==== Result was:"
puts stdout "$answer"
}
}
# test --
# This procedure runs a test and prints an error message if the
# test fails. If VERBOSE has been set, it also prints a message
# even if the test succeeds. The test will be skipped if it
# doesn't match the TESTS variable, or if one of the elements
# of "constraints" turns out not to be true.
#
# Arguments:
# name - Name of test, in the form foo-1.2.
# description - Short textual description of the test, to
# help humans understand what it does.
# constraints - A list of one or more keywords, each of
# which must be the name of an element in
# the array "testConfig". If any of these
# elements is zero, the test is skipped.
# This argument may be omitted.
# script - Script to run to carry out the test. It must
# return a result that can be checked for
# correctness.
# answer - Expected result from script.
proc test {name description script answer args} {
global VERBOSE TESTS testConfig
if {[string compare $TESTS ""] != 0} {
set ok 0
foreach test $TESTS {
if {[string match $test $name]} {
set ok 1
break
}
}
if {!$ok} {
return
}
}
set i [llength $args]
if {$i == 0} {
set constraints {}
} elseif {$i == 1} {
# "constraints" argument exists; shuffle arguments down, then
# make sure that the constraints are satisfied.
set constraints $script
set script $answer
set answer [lindex $args 0]
set doTest 0
if {[string match {*[$\[]*} $constraints] != 0} {
# full expression, e.g. {$foo > [info tclversion]}
catch {set doTest [uplevel #0 expr [list $constraints]]} msg
} elseif {[regexp {[^.a-zA-Z0-9 ]+} $constraints] != 0} {
# something like {a || b} should be turned into
# $testConfig(a) || $testConfig(b).
regsub -all {[.a-zA-Z0-9]+} $constraints {$testConfig(&)} c
catch {set doTest [eval expr $c]}
} else {
# just simple constraints such as {unixOnly fonts}.
set doTest 1
foreach constraint $constraints {
if {![info exists testConfig($constraint)]
|| !$testConfig($constraint)} {
set doTest 0
break
}
}
}
if {$doTest == 0} {
if {$VERBOSE} {
puts stdout "++++ $name SKIPPED: $constraints"
}
return
}
} else {
error "wrong # args: must be \"test name description ?constraints? script answer\""
}
memory tag $name
set code [catch {uplevel $script} result]
if {$code != 0} {
print_verbose $name $description $constraints $script \
$code $result
} elseif {[string compare $result $answer] == 0} {
if {$VERBOSE} {
if {$VERBOSE > 0} {
print_verbose $name $description $constraints $script \
$code $result
}
if {$VERBOSE != -2} {
puts stdout "++++ $name PASSED"
}
}
} else {
print_verbose $name $description $constraints $script \
$code $result
puts stdout "---- Result should have been:"
puts stdout "$answer"
puts stdout "---- $name FAILED"
}
}
proc dotests {file args} {
global TESTS
set savedTests $TESTS
set TESTS $args
source $file
set TESTS $savedTests
}
proc normalizeMsg {msg} {
regsub "\n$" [string tolower $msg] "" msg
regsub -all "\n\n" $msg "\n" msg
regsub -all "\n\}" $msg "\}" msg
return $msg
}
proc makeFile {contents name} {
set fd [open $name w]
fconfigure $fd -translation lf
if {[string index $contents [expr {[string length $contents] - 1}]] == "\n"} {
puts -nonewline $fd $contents
} else {
puts $fd $contents
}
close $fd
return $name
}
proc removeFile {name} {
file delete $name
}
proc makeDirectory {name} {
file mkdir $name
}
proc removeDirectory {name} {
file delete -force $name
}
proc viewFile {name} {
global tcl_platform testConfig
if {($tcl_platform(platform) == "macintosh") || \
($testConfig(unixExecs) == 0)} {
set f [open $name]
set data [read -nonewline $f]
close $f
return $data
} else {
exec cat $name
}
}
# Locate tcltest executable
set tcltest [info nameofexecutable]
if {$tcltest == "{}"} {
set tcltest {}
puts stdout "Unable to find tcltest executable, multiple process tests will fail."
}
if {$tcl_platform(os) != "Win32s"} {
# Don't even try running another copy of tcltest under win32s, or you
# get an error dialog about multiple instances.
catch {
file delete -force tmp
set f [open tmp w]
puts $f {
exit
}
close $f
set f [open "|[list $tcltest tmp]" r]
close $f
set testConfig(stdio) 1
}
catch {file delete -force tmp}
}
if {($tcl_platform(platform) == "windows") && ($testConfig(stdio) == 0)} {
puts stdout "(will skip tests that redirect stdio of exec'd 32-bit applications)"
}
catch {socket} msg
set testConfig(socket) [expr {$msg != "sockets are not available on this system"}]
if {$testConfig(socket) == 0} {
puts stdout "(will skip tests that use sockets)"
}
# -- attention procs --
# utilities for easy specification and use of constant values (hex)
proc defblock {name hexdata} {
upvar $name x
regsub -all { *} $hexdata {} hexdata
regsub -all "\n" $hexdata {} hexdata
# single long hex string now
set x $hexdata
}
proc defblock_decimal {name list_of_decimals} {
upvar $name $name
set hex ""
foreach i $list_of_decimals {append hex [format %02x $i]}
defblock $name $hex
}
proc hex2chan {hexdata} {
set x [memchan]
fconfigure $x -translation binary
hex -attach $x -mode decode
puts -nonewline $x $hexdata
unstack $x
seek $x 0
return $x
}
proc text2hex {data} {
set x [memchan]
fconfigure $x -translation binary
hex -attach $x -mode encode
puts -nonewline $x $data
unstack $x
seek $x 0
set data [read $x]
close $x
return $data
}
proc text2chan {data} {
set x [memchan]
fconfigure $x -translation binary
puts -nonewline $x $data
seek $x 0
return $x
}
if {[info tclversion] < 8.0} {
proc exec_md {md hexinput} {
set in [memchan]
hex -attach $in -m d
puts -nonewline $in $hexinput
unstack $in
seek $in 0
set out [memchan]
hex -attach $out -m e
$md -in $in -out $out
close $in
unstack $out
seek $out 0
set res [read -nonewline $out]
close $out
set res
}
} else {
proc exec_md {md hexinput} {
error "don't use exec_md with tcl 8.x and higher"
}
}
proc xx_cmp {a b blocksize} {
set bsi [expr {$blocksize - 1}]
while {([string length $a] > 0) || ([string length $b] > 0)} {
set af [string range $a 0 $bsi]
set bf [string range $b 0 $bsi]
set a [string range $a $blocksize end]
set b [string range $b $blocksize end]
if {0 != [string compare $af $bf]} {
puts -nonewline stdout "* "
} else {
puts -nonewline stdout " "
}
puts stdout "$af $bf"
}
}
proc string_rep {n text} {
# @comment Replicates <a n> times the string <a text>.
# @argument text: string to be replicated
# @argument n: number of replications
# @result <a text> replicated <a n> times
# no replication required ?
if {$n <= 0} {return ""}
# use iteration to build up the result
set result ""
for {} {$n > 0} {incr n -1} {append result $text}
return $result
}
proc defConstraints {args} {
global testConfig
foreach k $args {
set testConfig($k) 1
}
}
proc read_file {file} {
set fd [open $file]
fconfigure $fd -translation binary
set data [read $fd]
close $fd
return $data
}
proc write_file {file data} {
set fd [open $file w]
fconfigure $fd -translation binary
puts -nonewline $fd $data
close $fd
}
proc read_zip {file} {
set fd [open $file]
fconfigure $fd -translation binary
zip -attach $fd -mode compress
fconfigure $fd -translation binary
set data [read $fd]
close $fd
return $data
}
proc write_zip {file data} {
set fd [open $file w]
fconfigure $fd -translation binary
zip -attach $fd -mode compress
fconfigure $fd -translation binary
puts -nonewline $fd $data
close $fd
}
|