home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / tcltest.tcl < prev    next >
Text File  |  2003-09-01  |  95KB  |  3,262 lines

  1. # tcltest.tcl --
  2. #
  3. #    This file contains support code for the Tcl test suite.  It
  4. #       defines the tcltest namespace and finds and defines the output
  5. #       directory, constraints available, output and error channels,
  6. #    etc. used by Tcl tests.  See the tcltest man page for more
  7. #    details.
  8. #
  9. #       This design was based on the Tcl testing approach designed and
  10. #       initially implemented by Mary Ann May-Pumphrey of Sun
  11. #    Microsystems.
  12. #
  13. # Copyright (c) 1994-1997 Sun Microsystems, Inc.
  14. # Copyright (c) 1998-1999 by Scriptics Corporation.
  15. # Copyright (c) 2000 by Ajuba Solutions
  16. # Contributions from Don Porter, NIST, 2002.  (not subject to US copyright)
  17. # All rights reserved.
  18. #
  19. # RCS: @(#) $Id: tcltest.tcl,v 1.3 2003/01/21 19:40:10 hunt Exp $
  20.  
  21. package require Tcl 8.3        ;# uses [glob -directory]
  22. namespace eval tcltest {
  23.  
  24.     # When the version number changes, be sure to update the pkgIndex.tcl file,
  25.     # and the install directory in the Makefiles.
  26.     variable Version 2.2.1
  27.  
  28.     # Compatibility support for dumb variables defined in tcltest 1
  29.     # Do not use these.  Call [package provide Tcl] and [info patchlevel]
  30.     # yourself.  You don't need tcltest to wrap it for you.
  31.     variable version [package provide Tcl]
  32.     variable patchLevel [info patchlevel]
  33.  
  34. ##### Export the public tcltest procs; several categories
  35.     #
  36.     # Export the main functional commands that do useful things
  37.     namespace export cleanupTests loadTestedCommands makeDirectory \
  38.     makeFile removeDirectory removeFile runAllTests test
  39.  
  40.     # Export configuration commands that control the functional commands
  41.     namespace export configure customMatch errorChannel interpreter \
  42.         outputChannel testConstraint
  43.  
  44.     # Export commands that are duplication (candidates for deprecation)
  45.     namespace export bytestring        ;# dups [encoding convertfrom identity]
  46.     namespace export debug        ;#    [configure -debug]
  47.     namespace export errorFile        ;#    [configure -errfile]
  48.     namespace export limitConstraints    ;#    [configure -limitconstraints]
  49.     namespace export loadFile        ;#    [configure -loadfile]
  50.     namespace export loadScript        ;#    [configure -load]
  51.     namespace export match        ;#    [configure -match]
  52.     namespace export matchFiles        ;#    [configure -file]
  53.     namespace export matchDirectories    ;#    [configure -relateddir]
  54.     namespace export normalizeMsg    ;#    application of [customMatch]
  55.     namespace export normalizePath    ;#    [file normalize] (8.4)
  56.     namespace export outputFile        ;#    [configure -outfile]
  57.     namespace export preserveCore    ;#    [configure -preservecore]
  58.     namespace export singleProcess    ;#    [configure -singleproc]
  59.     namespace export skip        ;#    [configure -skip]
  60.     namespace export skipFiles        ;#    [configure -notfile]
  61.     namespace export skipDirectories    ;#    [configure -asidefromdir]
  62.     namespace export temporaryDirectory    ;#    [configure -tmpdir]
  63.     namespace export testsDirectory    ;#    [configure -testdir]
  64.     namespace export verbose        ;#    [configure -verbose]
  65.     namespace export viewFile        ;#    binary encoding [read]
  66.     namespace export workingDirectory    ;#    [cd] [pwd]
  67.  
  68.     # Export deprecated commands for tcltest 1 compatibility
  69.     namespace export getMatchingFiles mainThread restoreState saveState \
  70.         threadReap
  71.  
  72.     # tcltest::normalizePath --
  73.     #
  74.     #     This procedure resolves any symlinks in the path thus creating
  75.     #     a path without internal redirection. It assumes that the
  76.     #     incoming path is absolute.
  77.     #
  78.     # Arguments
  79.     #     pathVar - name of variable containing path to modify.
  80.     #
  81.     # Results
  82.     #     The path is modified in place.
  83.     #
  84.     # Side Effects:
  85.     #     None.
  86.     #
  87.     proc normalizePath {pathVar} {
  88.     upvar $pathVar path
  89.     set oldpwd [pwd]
  90.     catch {cd $path}
  91.     set path [pwd]
  92.     cd $oldpwd
  93.     return $path
  94.     }
  95.  
  96. ##### Verification commands used to test values of variables and options
  97.     #
  98.     # Verification command that accepts everything
  99.     proc AcceptAll {value} {
  100.     return $value
  101.     }
  102.  
  103.     # Verification command that accepts valid Tcl lists
  104.     proc AcceptList { list } {
  105.     return [lrange $list 0 end]
  106.     }
  107.  
  108.     # Verification command that accepts a glob pattern
  109.     proc AcceptPattern { pattern } {
  110.     return [AcceptAll $pattern]
  111.     }
  112.  
  113.     # Verification command that accepts integers
  114.     proc AcceptInteger { level } {
  115.     return [incr level 0]
  116.     }
  117.  
  118.     # Verification command that accepts boolean values
  119.     proc AcceptBoolean { boolean } {
  120.     return [expr {$boolean && $boolean}]
  121.     }
  122.  
  123.     # Verification command that accepts (syntactically) valid Tcl scripts
  124.     proc AcceptScript { script } {
  125.     if {![info complete $script]} {
  126.         return -code error "invalid Tcl script: $script"
  127.     }
  128.     return $script
  129.     }
  130.  
  131.     # Verification command that accepts (converts to) absolute pathnames
  132.     proc AcceptAbsolutePath { path } {
  133.     return [file join [pwd] $path]
  134.     }
  135.  
  136.     # Verification command that accepts existing readable directories
  137.     proc AcceptReadable { path } {
  138.     if {![file readable $path]} {
  139.         return -code error "\"$path\" is not readable"
  140.     }
  141.     return $path
  142.     }
  143.     proc AcceptDirectory { directory } {
  144.     set directory [AcceptAbsolutePath $directory]
  145.     if {![file exists $directory]} {
  146.         return -code error "\"$directory\" does not exist"
  147.     }
  148.     if {![file isdir $directory]} {
  149.         return -code error "\"$directory\" is not a directory"
  150.     }
  151.     return [AcceptReadable $directory]
  152.     }
  153.  
  154. ##### Initialize internal arrays of tcltest, but only if the caller
  155.     # has not already pre-initialized them.  This is done to support
  156.     # compatibility with older tests that directly access internals
  157.     # rather than go through command interfaces.
  158.     #
  159.     proc ArrayDefault {varName value} {
  160.     variable $varName
  161.     if {[array exists $varName]} {
  162.         return
  163.     }
  164.     if {[info exists $varName]} {
  165.         # Pre-initialized value is a scalar: destroy it!
  166.         unset $varName
  167.     }
  168.     array set $varName $value
  169.     }
  170.  
  171.     # save the original environment so that it can be restored later
  172.     ArrayDefault originalEnv [array get ::env]
  173.  
  174.     # initialize numTests array to keep track fo the number of tests
  175.     # that pass, fail, and are skipped.
  176.     ArrayDefault numTests [list Total 0 Passed 0 Skipped 0 Failed 0]
  177.  
  178.     # numTests will store test files as indices and the list of files
  179.     # (that should not have been) left behind by the test files.
  180.     ArrayDefault createdNewFiles {}
  181.  
  182.     # initialize skippedBecause array to keep track of constraints that
  183.     # kept tests from running; a constraint name of "userSpecifiedSkip"
  184.     # means that the test appeared on the list of tests that matched the
  185.     # -skip value given to the flag; "userSpecifiedNonMatch" means that
  186.     # the test didn't match the argument given to the -match flag; both
  187.     # of these constraints are counted only if tcltest::debug is set to
  188.     # true.
  189.     ArrayDefault skippedBecause {}
  190.  
  191.     # initialize the testConstraints array to keep track of valid
  192.     # predefined constraints (see the explanation for the
  193.     # InitConstraints proc for more details).
  194.     ArrayDefault testConstraints {}
  195.  
  196. ##### Initialize internal variables of tcltest, but only if the caller
  197.     # has not already pre-initialized them.  This is done to support
  198.     # compatibility with older tests that directly access internals
  199.     # rather than go through command interfaces.
  200.     #
  201.     proc Default {varName value {verify AcceptAll}} {
  202.     variable $varName
  203.     if {![info exists $varName]} {
  204.         variable $varName [$verify $value]
  205.     } else {
  206.         variable $varName [$verify [set $varName]]
  207.     }
  208.     }
  209.  
  210.     # Save any arguments that we might want to pass through to other
  211.     # programs.  This is used by the -args flag.
  212.     # FINDUSER
  213.     Default parameters {}
  214.  
  215.     # Count the number of files tested (0 if runAllTests wasn't called).
  216.     # runAllTests will set testSingleFile to false, so stats will
  217.     # not be printed until runAllTests calls the cleanupTests proc.
  218.     # The currentFailure var stores the boolean value of whether the
  219.     # current test file has had any failures.  The failFiles list
  220.     # stores the names of test files that had failures.
  221.     Default numTestFiles 0 AcceptInteger
  222.     Default testSingleFile true AcceptBoolean
  223.     Default currentFailure false AcceptBoolean
  224.     Default failFiles {} AcceptList
  225.  
  226.     # Tests should remove all files they create.  The test suite will
  227.     # check the current working dir for files created by the tests.
  228.     # filesMade keeps track of such files created using the makeFile and
  229.     # makeDirectory procedures.  filesExisted stores the names of
  230.     # pre-existing files.
  231.     Default filesMade {} AcceptList
  232.     Default filesExisted {} AcceptList
  233.     variable FilesExistedFilled 0
  234.     proc FillFilesExisted {} {
  235.     variable FilesExistedFilled
  236.     if {$FilesExistedFilled} {return}
  237.     variable filesExisted
  238.  
  239.     # Save the names of files that already exist in the scratch directory.
  240.     foreach file [glob -nocomplain -directory [temporaryDirectory] *] {
  241.         lappend filesExisted [file tail $file]
  242.     }
  243.     set FilesExistedFilled 1
  244.     }
  245.  
  246.     # Kept only for compatibility
  247.     Default constraintsSpecified {} AcceptList
  248.     trace variable constraintsSpecified r {set ::tcltest::constraintsSpecified \
  249.         [array names ::tcltest::testConstraints] ;# }
  250.  
  251.     # tests that use threads need to know which is the main thread
  252.     Default mainThread 1
  253.     variable mainThread
  254.     if {[info commands thread::id] != {}} {
  255.     set mainThread [thread::id]
  256.     } elseif {[info commands testthread] != {}} {
  257.     set mainThread [testthread id]
  258.     }
  259.  
  260.     # Set workingDirectory to [pwd]. The default output directory for
  261.     # Tcl tests is the working directory.  Whenever this value changes
  262.     # change to that directory.
  263.     variable workingDirectory
  264.     trace variable workingDirectory w \
  265.         [namespace code {cd $workingDirectory ;#}]
  266.  
  267.     Default workingDirectory [pwd] AcceptAbsolutePath
  268.     proc workingDirectory { {dir ""} } {
  269.     variable workingDirectory
  270.     if {[llength [info level 0]] == 1} {
  271.         return $workingDirectory
  272.     }
  273.     set workingDirectory [AcceptAbsolutePath $dir]
  274.     }
  275.  
  276.     # Set the location of the execuatble
  277.     Default tcltest [info nameofexecutable]
  278.     trace variable tcltest w [namespace code {testConstraint stdio \
  279.         [eval [ConstraintInitializer stdio]] ;#}]
  280.  
  281.     # save the platform information so it can be restored later
  282.     Default originalTclPlatform [array get ::tcl_platform]
  283.  
  284.     # If a core file exists, save its modification time.
  285.     if {[file exists [file join [workingDirectory] core]]} {
  286.     Default coreModTime \
  287.         [file mtime [file join [workingDirectory] core]]
  288.     }
  289.  
  290.     # stdout and stderr buffers for use when we want to store them
  291.     Default outData {}
  292.     Default errData {}
  293.  
  294.     # keep track of test level for nested test commands
  295.     variable testLevel 0
  296.  
  297.     # the variables and procs that existed when saveState was called are
  298.     # stored in a variable of the same name
  299.     Default saveState {}
  300.  
  301.     # Internationalization support -- used in [SetIso8859_1_Locale] and
  302.     # [RestoreLocale]. Those commands are used in cmdIL.test.
  303.  
  304.     if {![info exists [namespace current]::isoLocale]} {
  305.     variable isoLocale fr
  306.     switch -- $::tcl_platform(platform) {
  307.         "unix" {
  308.  
  309.         # Try some 'known' values for some platforms:
  310.  
  311.         switch -exact -- $::tcl_platform(os) {
  312.             "FreeBSD" {
  313.             set isoLocale fr_FR.ISO_8859-1
  314.             }
  315.             HP-UX {
  316.             set isoLocale fr_FR.iso88591
  317.             }
  318.             Linux -
  319.             IRIX {
  320.             set isoLocale fr
  321.             }
  322.             default {
  323.  
  324.             # Works on SunOS 4 and Solaris, and maybe
  325.             # others...  Define it to something else on your
  326.             # system if you want to test those.
  327.  
  328.             set isoLocale iso_8859_1
  329.             }
  330.         }
  331.         }
  332.         "windows" {
  333.         set isoLocale French
  334.         }
  335.     }
  336.     }
  337.  
  338.     # output goes to stdout by default
  339.     Default outputChannel stdout
  340.     proc outputChannel { {filename ""} } {
  341.     variable outputChannel
  342.  
  343.     # Trigger auto-configuration of -outfile option, if needed.
  344.     # This is tricky because we have to trigger a trace on $debug
  345.     # so that traces attached to $outputFile are not disabled.
  346.     # We need them enabled to reflect changes back to outputChannel
  347.     set dummy [debug]
  348.  
  349.     if {[llength [info level 0]] == 1} {
  350.         return $outputChannel
  351.     }
  352.     switch -exact -- $filename {
  353.         stderr -
  354.         stdout {
  355.         set outputChannel $filename
  356.         }
  357.         default {
  358.         set outputChannel [open $filename a]
  359.         }
  360.     }
  361.     return $outputChannel
  362.     }
  363.  
  364.     # errors go to stderr by default
  365.     Default errorChannel stderr
  366.     proc errorChannel { {filename ""} } {
  367.     variable errorChannel
  368.  
  369.     # Trigger auto-configuration of -errfile option, if needed.
  370.     # This is tricky because we have to trigger a trace on $debug
  371.     # so that traces attached to $outputFile are not disabled.
  372.     # We need them enabled to reflect changes back to outputChannel
  373.     set dummy [debug]
  374.  
  375.     if {[llength [info level 0]] == 1} {
  376.         return $errorChannel
  377.     }
  378.     switch -exact -- $filename {
  379.         stderr -
  380.         stdout {
  381.         set errorChannel $filename
  382.         }
  383.         default {
  384.         set errorChannel [open $filename a]
  385.         }
  386.     }
  387.     return $errorChannel
  388.     }
  389.  
  390. ##### Set up the configurable options
  391.     #
  392.     # The configurable options of the package
  393.     variable Option; array set Option {}
  394.  
  395.     # Usage strings for those options
  396.     variable Usage; array set Usage {}
  397.  
  398.     # Verification commands for those options
  399.     variable Verify; array set Verify {}
  400.  
  401.     # Initialize the default values of the configurable options that are
  402.     # historically associated with an exported variable.  If that variable
  403.     # is already set, support compatibility by accepting its pre-set value.
  404.     # Use [trace] to establish ongoing connection between the deprecated
  405.     # exported variable and the modern option kept as a true internal var.
  406.     # Also set up usage string and value testing for the option.
  407.     proc Option {option value usage {verify AcceptAll} {varName {}}} {
  408.     variable Option
  409.     variable Verify
  410.     variable Usage
  411.     variable OptionControlledVariables
  412.     set Usage($option) $usage
  413.     set Verify($option) $verify
  414.     if {[catch {$verify $value} msg]} {
  415.         return -code error $msg
  416.     } else {
  417.         set Option($option) $msg
  418.     }
  419.     if {[string length $varName]} {
  420.         variable $varName
  421.         if {[info exists $varName]} {
  422.         if {[catch {$verify [set $varName]} msg]} {
  423.             return -code error $msg
  424.         } else {
  425.             set Option($option) $msg
  426.         }
  427.         unset $varName
  428.         }
  429.         namespace eval [namespace current] \
  430.                 [list upvar 0 Option($option) $varName]
  431.         # Workaround for Bug 572889.  Grrrr....
  432.         # Track all the variables tied to options
  433.         lappend OptionControlledVariables $varName
  434.         # Later, set auto-configure read traces on all
  435.         # of them, since a single trace on Option does not work.
  436.         proc $varName {{value {}}} [subst -nocommands {
  437.         if {[llength [info level 0]] == 2} {
  438.             Configure $option [set value]
  439.         }
  440.         return [Configure $option]
  441.         }]
  442.     }
  443.     }
  444.  
  445.     proc MatchingOption {option} {
  446.     variable Option
  447.     set match [array names Option $option*]
  448.     switch -- [llength $match] {
  449.         0 {
  450.         set sorted [lsort [array names Option]]
  451.         set values [join [lrange $sorted 0 end-1] ", "]
  452.         append values ", or [lindex $sorted end]"
  453.         return -code error "unknown option $option: should be\
  454.             one of $values"
  455.         }
  456.         1 {
  457.         return [lindex $match 0]
  458.         }
  459.         default {
  460.         # Exact match trumps ambiguity
  461.         if {[lsearch -exact $match $option] >= 0} {
  462.             return $option
  463.         }
  464.         set values [join [lrange $match 0 end-1] ", "]
  465.         append values ", or [lindex $match end]"
  466.         return -code error "ambiguous option $option:\
  467.             could match $values"
  468.         }
  469.     }
  470.     }
  471.  
  472.     proc EstablishAutoConfigureTraces {} {
  473.     variable OptionControlledVariables
  474.     foreach varName [concat $OptionControlledVariables Option] {
  475.         variable $varName
  476.         trace variable $varName r [namespace code {ProcessCmdLineArgs ;#}]
  477.     }
  478.     }
  479.  
  480.     proc RemoveAutoConfigureTraces {} {
  481.     variable OptionControlledVariables
  482.     foreach varName [concat $OptionControlledVariables Option] {
  483.         variable $varName
  484.         foreach pair [trace vinfo $varName] {
  485.         foreach {op cmd} $pair break
  486.         if {[string equal r $op]
  487.             && [string match *ProcessCmdLineArgs* $cmd]} {
  488.             trace vdelete $varName $op $cmd
  489.         }
  490.         }
  491.     }
  492.     # One the traces are removed, this can become a no-op
  493.     proc RemoveAutoConfigureTraces {} {}
  494.     }
  495.  
  496.     proc Configure args {
  497.     variable Option
  498.     variable Verify
  499.     set n [llength $args]
  500.     if {$n == 0} {
  501.         return [lsort [array names Option]]
  502.     }
  503.     if {$n == 1} {
  504.         if {[catch {MatchingOption [lindex $args 0]} option]} {
  505.         return -code error $option
  506.         }
  507.         return $Option($option)
  508.     }
  509.     while {[llength $args] > 1} {
  510.         if {[catch {MatchingOption [lindex $args 0]} option]} {
  511.         return -code error $option
  512.         }
  513.         if {[catch {$Verify($option) [lindex $args 1]} value]} {
  514.         return -code error "invalid $option\
  515.             value \"[lindex $args 1]\": $value"
  516.         }
  517.         set Option($option) $value
  518.         set args [lrange $args 2 end]
  519.     }
  520.     if {[llength $args]} {
  521.         if {[catch {MatchingOption [lindex $args 0]} option]} {
  522.         return -code error $option
  523.         }
  524.         return -code error "missing value for option $option"
  525.     }
  526.     }
  527.     proc configure args {
  528.     RemoveAutoConfigureTraces
  529.     set code [catch {eval Configure $args} msg]
  530.     return -code $code $msg
  531.     }
  532.     
  533.     proc AcceptVerbose { level } {
  534.     set level [AcceptList $level]
  535.     if {[llength $level] == 1} {
  536.         if {![regexp {^(pass|body|skip|start|error)$} $level]} {
  537.         # translate single characters abbreviations to expanded list
  538.         set level [string map {p pass b body s skip t start e error} \
  539.             [split $level {}]]
  540.         }
  541.     }
  542.     set valid [list]
  543.     foreach v $level {
  544.         if {[regexp {^(pass|body|skip|start|error)$} $v]} {
  545.         lappend valid $v
  546.         }
  547.     }
  548.     return $valid
  549.     }
  550.  
  551.     proc IsVerbose {level} {
  552.     variable Option
  553.     return [expr {[lsearch -exact $Option(-verbose) $level] != -1}]
  554.     }
  555.  
  556.     # Default verbosity is to show bodies of failed tests
  557.     Option -verbose body {
  558.     Takes any combination of the values 'p', 's', 'b', 't' and 'e'.
  559.     Test suite will display all passed tests if 'p' is specified, all
  560.     skipped tests if 's' is specified, the bodies of failed tests if
  561.     'b' is specified, and when tests start if 't' is specified.
  562.     ErrorInfo is displayed if 'e' is specified.
  563.     } AcceptVerbose verbose
  564.  
  565.     # Match and skip patterns default to the empty list, except for
  566.     # matchFiles, which defaults to all .test files in the
  567.     # testsDirectory and matchDirectories, which defaults to all
  568.     # directories.
  569.     Option -match * {
  570.     Run all tests within the specified files that match one of the
  571.     list of glob patterns given.
  572.     } AcceptList match
  573.  
  574.     Option -skip {} {
  575.     Skip all tests within the specified tests (via -match) and files
  576.     that match one of the list of glob patterns given.
  577.     } AcceptList skip
  578.  
  579.     Option -file *.test {
  580.     Run tests in all test files that match the glob pattern given.
  581.     } AcceptPattern matchFiles
  582.  
  583.     # By default, skip files that appear to be SCCS lock files.
  584.     Option -notfile l.*.test {
  585.     Skip all test files that match the glob pattern given.
  586.     } AcceptPattern skipFiles
  587.  
  588.     Option -relateddir * {
  589.     Run tests in directories that match the glob pattern given.
  590.     } AcceptPattern matchDirectories
  591.  
  592.     Option -asidefromdir {} {
  593.     Skip tests in directories that match the glob pattern given.
  594.     } AcceptPattern skipDirectories
  595.  
  596.     # By default, don't save core files
  597.     Option -preservecore 0 {
  598.     If 2, save any core files produced during testing in the directory
  599.     specified by -tmpdir. If 1, notify the user if core files are
  600.     created.
  601.     } AcceptInteger preserveCore
  602.  
  603.     # debug output doesn't get printed by default; debug level 1 spits
  604.     # up only the tests that were skipped because they didn't match or
  605.     # were specifically skipped.  A debug level of 2 would spit up the
  606.     # tcltest variables and flags provided; a debug level of 3 causes
  607.     # some additional output regarding operations of the test harness.
  608.     # The tcltest package currently implements only up to debug level 3.
  609.     Option -debug 0 {
  610.     Internal debug level 
  611.     } AcceptInteger debug
  612.  
  613.     proc SetSelectedConstraints args {
  614.     variable Option
  615.     foreach c $Option(-constraints) {
  616.         testConstraint $c 1
  617.     }
  618.     }
  619.     Option -constraints {} {
  620.     Do not skip the listed constraints listed in -constraints.
  621.     } AcceptList
  622.     trace variable Option(-constraints) w \
  623.         [namespace code {SetSelectedConstraints ;#}]
  624.  
  625.     # Don't run only the "-constraint" specified tests by default
  626.     proc ClearUnselectedConstraints args {
  627.     variable Option
  628.     variable testConstraints
  629.     if {!$Option(-limitconstraints)} {return}
  630.     foreach c [array names testConstraints] {
  631.         if {[lsearch -exact $Option(-constraints) $c] == -1} {
  632.         testConstraint $c 0
  633.         }
  634.     }
  635.     }
  636.     Option -limitconstraints false {
  637.     whether to run only tests with the constraints
  638.     } AcceptBoolean limitConstraints 
  639.     trace variable Option(-limitconstraints) w \
  640.         [namespace code {ClearUnselectedConstraints ;#}]
  641.  
  642.     # A test application has to know how to load the tested commands
  643.     # into the interpreter.
  644.     Option -load {} {
  645.     Specifies the script to load the tested commands.
  646.     } AcceptScript loadScript
  647.  
  648.     # Default is to run each test file in a separate process
  649.     Option -singleproc 0 {
  650.     whether to run all tests in one process
  651.     } AcceptBoolean singleProcess 
  652.  
  653.     proc AcceptTemporaryDirectory { directory } {
  654.     set directory [AcceptAbsolutePath $directory]
  655.     if {![file exists $directory]} {
  656.         file mkdir $directory
  657.     }
  658.     set directory [AcceptDirectory $directory]
  659.     if {![file writable $directory]} {
  660.         if {[string equal [workingDirectory] $directory]} {
  661.         # Special exception: accept the default value
  662.         # even if the directory is not writable
  663.         return $directory
  664.         }
  665.         return -code error "\"$directory\" is not writeable"
  666.     }
  667.     return $directory
  668.     }
  669.  
  670.     # Directory where files should be created
  671.     Option -tmpdir [workingDirectory] {
  672.     Save temporary files in the specified directory.
  673.     } AcceptTemporaryDirectory temporaryDirectory
  674.     trace variable Option(-tmpdir) w \
  675.         [namespace code {normalizePath Option(-tmpdir) ;#}]
  676.  
  677.     # Tests should not rely on the current working directory.
  678.     # Files that are part of the test suite should be accessed relative
  679.     # to [testsDirectory]
  680.     Option -testdir [workingDirectory] {
  681.     Search tests in the specified directory.
  682.     } AcceptDirectory testsDirectory
  683.     trace variable Option(-testdir) w \
  684.         [namespace code {normalizePath Option(-testdir) ;#}]
  685.  
  686.     proc AcceptLoadFile { file } {
  687.     if {[string equal "" $file]} {return $file}
  688.     set file [file join [temporaryDirectory] $file]
  689.     return [AcceptReadable $file]
  690.     }
  691.     proc ReadLoadScript {args} {
  692.     variable Option
  693.     if {[string equal "" $Option(-loadfile)]} {return}
  694.     set tmp [open $Option(-loadfile) r]
  695.     loadScript [read $tmp]
  696.     close $tmp
  697.     }
  698.     Option -loadfile {} {
  699.     Read the script to load the tested commands from the specified file.
  700.     } AcceptLoadFile loadFile
  701.     trace variable Option(-loadfile) w [namespace code ReadLoadScript]
  702.  
  703.     proc AcceptOutFile { file } {
  704.     if {[string equal stderr $file]} {return $file}
  705.     if {[string equal stdout $file]} {return $file}
  706.     return [file join [temporaryDirectory] $file]
  707.     }
  708.  
  709.     # output goes to stdout by default
  710.     Option -outfile stdout {
  711.     Send output from test runs to the specified file.
  712.     } AcceptOutFile outputFile
  713.     trace variable Option(-outfile) w \
  714.         [namespace code {outputChannel $Option(-outfile) ;#}]
  715.  
  716.     # errors go to stderr by default
  717.     Option -errfile stderr {
  718.     Send errors from test runs to the specified file.
  719.     } AcceptOutFile errorFile
  720.     trace variable Option(-errfile) w \
  721.         [namespace code {errorChannel $Option(-errfile) ;#}]
  722.  
  723. }
  724.  
  725. #####################################################################
  726.  
  727. # tcltest::Debug* --
  728. #
  729. #     Internal helper procedures to write out debug information
  730. #     dependent on the chosen level. A test shell may overide
  731. #     them, f.e. to redirect the output into a different
  732. #     channel, or even into a GUI.
  733.  
  734. # tcltest::DebugPuts --
  735. #
  736. #     Prints the specified string if the current debug level is
  737. #     higher than the provided level argument.
  738. #
  739. # Arguments:
  740. #     level   The lowest debug level triggering the output
  741. #     string  The string to print out.
  742. #
  743. # Results:
  744. #     Prints the string. Nothing else is allowed.
  745. #
  746. # Side Effects:
  747. #     None.
  748. #
  749.  
  750. proc tcltest::DebugPuts {level string} {
  751.     variable debug
  752.     if {$debug >= $level} {
  753.     puts $string
  754.     }
  755.     return
  756. }
  757.  
  758. # tcltest::DebugPArray --
  759. #
  760. #     Prints the contents of the specified array if the current
  761. #       debug level is higher than the provided level argument
  762. #
  763. # Arguments:
  764. #     level           The lowest debug level triggering the output
  765. #     arrayvar        The name of the array to print out.
  766. #
  767. # Results:
  768. #     Prints the contents of the array. Nothing else is allowed.
  769. #
  770. # Side Effects:
  771. #     None.
  772. #
  773.  
  774. proc tcltest::DebugPArray {level arrayvar} {
  775.     variable debug
  776.  
  777.     if {$debug >= $level} {
  778.     catch {upvar  $arrayvar $arrayvar}
  779.     parray $arrayvar
  780.     }
  781.     return
  782. }
  783.  
  784. # Define our own [parray] in ::tcltest that will inherit use of the [puts]
  785. # defined in ::tcltest.  NOTE: Ought to construct with [info args] and
  786. # [info default], but can't be bothered now.  If [parray] changes, then
  787. # this will need changing too.
  788. auto_load ::parray
  789. proc tcltest::parray {a {pattern *}} [info body ::parray]
  790.  
  791. # tcltest::DebugDo --
  792. #
  793. #     Executes the script if the current debug level is greater than
  794. #       the provided level argument
  795. #
  796. # Arguments:
  797. #     level   The lowest debug level triggering the execution.
  798. #     script  The tcl script executed upon a debug level high enough.
  799. #
  800. # Results:
  801. #     Arbitrary side effects, dependent on the executed script.
  802. #
  803. # Side Effects:
  804. #     None.
  805. #
  806.  
  807. proc tcltest::DebugDo {level script} {
  808.     variable debug
  809.  
  810.     if {$debug >= $level} {
  811.     uplevel 1 $script
  812.     }
  813.     return
  814. }
  815.  
  816. #####################################################################
  817.  
  818. proc tcltest::Warn {msg} {
  819.     puts [outputChannel] "WARNING: $msg"
  820. }
  821.  
  822. # tcltest::mainThread
  823. #
  824. #     Accessor command for tcltest variable mainThread.
  825. #
  826. proc tcltest::mainThread { {new ""} } {
  827.     variable mainThread
  828.     if {[llength [info level 0]] == 1} {
  829.     return $mainThread
  830.     }
  831.     set mainThread $new
  832. }
  833.  
  834. # tcltest::testConstraint --
  835. #
  836. #    sets a test constraint to a value; to do multiple constraints,
  837. #       call this proc multiple times.  also returns the value of the
  838. #       named constraint if no value was supplied.
  839. #
  840. # Arguments:
  841. #    constraint - name of the constraint
  842. #       value - new value for constraint (should be boolean) - if not
  843. #               supplied, this is a query
  844. #
  845. # Results:
  846. #    content of tcltest::testConstraints($constraint)
  847. #
  848. # Side effects:
  849. #    none
  850.  
  851. proc tcltest::testConstraint {constraint {value ""}} {
  852.     variable testConstraints
  853.     variable Option
  854.     DebugPuts 3 "entering testConstraint $constraint $value"
  855.     if {[llength [info level 0]] == 2} {
  856.     return $testConstraints($constraint)
  857.     }
  858.     # Check for boolean values
  859.     if {[catch {expr {$value && $value}} msg]} {
  860.     return -code error $msg
  861.     }
  862.     if {[limitConstraints] 
  863.         && [lsearch -exact $Option(-constraints) $constraint] == -1} {
  864.     set value 0
  865.     }
  866.     set testConstraints($constraint) $value
  867. }
  868.  
  869. # tcltest::interpreter --
  870. #
  871. #    the interpreter name stored in tcltest::tcltest
  872. #
  873. # Arguments:
  874. #    executable name
  875. #
  876. # Results:
  877. #    content of tcltest::tcltest
  878. #
  879. # Side effects:
  880. #    None.
  881.  
  882. proc tcltest::interpreter { {interp ""} } {
  883.     variable tcltest
  884.     if {[llength [info level 0]] == 1} {
  885.     return $tcltest
  886.     }
  887.     if {[string equal {} $interp]} {
  888.     set tcltest {}
  889.     } else {
  890.     set tcltest $interp
  891.     }
  892. }
  893.  
  894. #####################################################################
  895.  
  896. # tcltest::AddToSkippedBecause --
  897. #
  898. #    Increments the variable used to track how many tests were
  899. #       skipped because of a particular constraint.
  900. #
  901. # Arguments:
  902. #    constraint     The name of the constraint to be modified
  903. #
  904. # Results:
  905. #    Modifies tcltest::skippedBecause; sets the variable to 1 if
  906. #       didn't previously exist - otherwise, it just increments it.
  907. #
  908. # Side effects:
  909. #    None.
  910.  
  911. proc tcltest::AddToSkippedBecause { constraint {value 1}} {
  912.     # add the constraint to the list of constraints that kept tests
  913.     # from running
  914.     variable skippedBecause
  915.  
  916.     if {[info exists skippedBecause($constraint)]} {
  917.     incr skippedBecause($constraint) $value
  918.     } else {
  919.     set skippedBecause($constraint) $value
  920.     }
  921.     return
  922. }
  923.  
  924. # tcltest::PrintError --
  925. #
  926. #    Prints errors to tcltest::errorChannel and then flushes that
  927. #       channel, making sure that all messages are < 80 characters per
  928. #       line.
  929. #
  930. # Arguments:
  931. #    errorMsg     String containing the error to be printed
  932. #
  933. # Results:
  934. #    None.
  935. #
  936. # Side effects:
  937. #    None.
  938.  
  939. proc tcltest::PrintError {errorMsg} {
  940.     set InitialMessage "Error:  "
  941.     set InitialMsgLen  [string length $InitialMessage]
  942.     puts -nonewline [errorChannel] $InitialMessage
  943.  
  944.     # Keep track of where the end of the string is.
  945.     set endingIndex [string length $errorMsg]
  946.  
  947.     if {$endingIndex < (80 - $InitialMsgLen)} {
  948.     puts [errorChannel] $errorMsg
  949.     } else {
  950.     # Print up to 80 characters on the first line, including the
  951.     # InitialMessage.
  952.     set beginningIndex [string last " " [string range $errorMsg 0 \
  953.         [expr {80 - $InitialMsgLen}]]]
  954.     puts [errorChannel] [string range $errorMsg 0 $beginningIndex]
  955.  
  956.     while {![string equal end $beginningIndex]} {
  957.         puts -nonewline [errorChannel] \
  958.             [string repeat " " $InitialMsgLen]
  959.         if {($endingIndex - $beginningIndex)
  960.             < (80 - $InitialMsgLen)} {
  961.         puts [errorChannel] [string trim \
  962.             [string range $errorMsg $beginningIndex end]]
  963.         break
  964.         } else {
  965.         set newEndingIndex [expr {[string last " " \
  966.             [string range $errorMsg $beginningIndex \
  967.                 [expr {$beginningIndex
  968.                     + (80 - $InitialMsgLen)}]
  969.         ]] + $beginningIndex}]
  970.         if {($newEndingIndex <= 0)
  971.             || ($newEndingIndex <= $beginningIndex)} {
  972.             set newEndingIndex end
  973.         }
  974.         puts [errorChannel] [string trim \
  975.             [string range $errorMsg \
  976.                 $beginningIndex $newEndingIndex]]
  977.         set beginningIndex $newEndingIndex
  978.         }
  979.     }
  980.     }
  981.     flush [errorChannel]
  982.     return
  983. }
  984.  
  985. # tcltest::SafeFetch --
  986. #
  987. #     The following trace procedure makes it so that we can safely
  988. #        refer to non-existent members of the testConstraints array
  989. #        without causing an error.  Instead, reading a non-existent
  990. #        member will return 0. This is necessary because tests are
  991. #        allowed to use constraint "X" without ensuring that
  992. #        testConstraints("X") is defined.
  993. #
  994. # Arguments:
  995. #    n1 - name of the array (testConstraints)
  996. #       n2 - array key value (constraint name)
  997. #       op - operation performed on testConstraints (generally r)
  998. #
  999. # Results:
  1000. #    none
  1001. #
  1002. # Side effects:
  1003. #    sets testConstraints($n2) to 0 if it's referenced but never
  1004. #       before used
  1005.  
  1006. proc tcltest::SafeFetch {n1 n2 op} {
  1007.     variable testConstraints
  1008.     DebugPuts 3 "entering SafeFetch $n1 $n2 $op"
  1009.     if {[string equal {} $n2]} {return}
  1010.     if {![info exists testConstraints($n2)]} {
  1011.     if {[catch {testConstraint $n2 [eval [ConstraintInitializer $n2]]}]} {
  1012.         testConstraint $n2 0
  1013.     }
  1014.     }
  1015. }
  1016.  
  1017. # tcltest::ConstraintInitializer --
  1018. #
  1019. #    Get or set a script that when evaluated in the tcltest namespace
  1020. #    will return a boolean value with which to initialize the
  1021. #    associated constraint.
  1022. #
  1023. # Arguments:
  1024. #    constraint - name of the constraint initialized by the script
  1025. #    script - the initializer script
  1026. #
  1027. # Results
  1028. #    boolean value of the constraint - enabled or disabled
  1029. #
  1030. # Side effects:
  1031. #    Constraint is initialized for future reference by [test]
  1032. proc tcltest::ConstraintInitializer {constraint {script ""}} {
  1033.     variable ConstraintInitializer
  1034.     DebugPuts 3 "entering ConstraintInitializer $constraint $script"
  1035.     if {[llength [info level 0]] == 2} {
  1036.     return $ConstraintInitializer($constraint)
  1037.     }
  1038.     # Check for boolean values
  1039.     if {![info complete $script]} {
  1040.     return -code error "ConstraintInitializer must be complete script"
  1041.     }
  1042.     set ConstraintInitializer($constraint) $script
  1043. }
  1044.  
  1045. # tcltest::InitConstraints --
  1046. #
  1047. # Call all registered constraint initializers to force initialization
  1048. # of all known constraints.
  1049. # See the tcltest man page for the list of built-in constraints defined
  1050. # in this procedure.
  1051. #
  1052. # Arguments:
  1053. #    none
  1054. #
  1055. # Results:
  1056. #    The testConstraints array is reset to have an index for each
  1057. #    built-in test constraint.
  1058. #
  1059. # Side Effects:
  1060. #       None.
  1061. #
  1062.  
  1063. proc tcltest::InitConstraints {} {
  1064.     variable ConstraintInitializer
  1065.     initConstraintsHook
  1066.     foreach constraint [array names ConstraintInitializer] {
  1067.     testConstraint $constraint
  1068.     }
  1069. }
  1070.  
  1071. proc tcltest::DefineConstraintInitializers {} {
  1072.     ConstraintInitializer singleTestInterp {singleProcess}
  1073.  
  1074.     # All the 'pc' constraints are here for backward compatibility and
  1075.     # are not documented.  They have been replaced with equivalent 'win'
  1076.     # constraints.
  1077.  
  1078.     ConstraintInitializer unixOnly \
  1079.         {string equal $::tcl_platform(platform) unix}
  1080.     ConstraintInitializer macOnly \
  1081.         {string equal $::tcl_platform(platform) macintosh}
  1082.     ConstraintInitializer pcOnly \
  1083.         {string equal $::tcl_platform(platform) windows}
  1084.     ConstraintInitializer winOnly \
  1085.         {string equal $::tcl_platform(platform) windows}
  1086.  
  1087.     ConstraintInitializer unix {testConstraint unixOnly}
  1088.     ConstraintInitializer mac {testConstraint macOnly}
  1089.     ConstraintInitializer pc {testConstraint pcOnly}
  1090.     ConstraintInitializer win {testConstraint winOnly}
  1091.  
  1092.     ConstraintInitializer unixOrPc \
  1093.         {expr {[testConstraint unix] || [testConstraint pc]}}
  1094.     ConstraintInitializer macOrPc \
  1095.         {expr {[testConstraint mac] || [testConstraint pc]}}
  1096.     ConstraintInitializer unixOrWin \
  1097.         {expr {[testConstraint unix] || [testConstraint win]}}
  1098.     ConstraintInitializer macOrWin \
  1099.         {expr {[testConstraint mac] || [testConstraint win]}}
  1100.     ConstraintInitializer macOrUnix \
  1101.         {expr {[testConstraint mac] || [testConstraint unix]}}
  1102.  
  1103.     ConstraintInitializer nt {string equal $::tcl_platform(os) "Windows NT"}
  1104.     ConstraintInitializer 95 {string equal $::tcl_platform(os) "Windows 95"}
  1105.     ConstraintInitializer 98 {string equal $::tcl_platform(os) "Windows 98"}
  1106.  
  1107.     # The following Constraints switches are used to mark tests that
  1108.     # should work, but have been temporarily disabled on certain
  1109.     # platforms because they don't and we haven't gotten around to
  1110.     # fixing the underlying problem.
  1111.  
  1112.     ConstraintInitializer tempNotPc {expr {![testConstraint pc]}}
  1113.     ConstraintInitializer tempNotWin {expr {![testConstraint win]}}
  1114.     ConstraintInitializer tempNotMac {expr {![testConstraint mac]}}
  1115.     ConstraintInitializer tempNotUnix {expr {![testConstraint unix]}}
  1116.  
  1117.     # The following Constraints switches are used to mark tests that
  1118.     # crash on certain platforms, so that they can be reactivated again
  1119.     # when the underlying problem is fixed.
  1120.  
  1121.     ConstraintInitializer pcCrash {expr {![testConstraint pc]}}
  1122.     ConstraintInitializer winCrash {expr {![testConstraint win]}}
  1123.     ConstraintInitializer macCrash {expr {![testConstraint mac]}}
  1124.     ConstraintInitializer unixCrash {expr {![testConstraint unix]}}
  1125.  
  1126.     # Skip empty tests
  1127.  
  1128.     ConstraintInitializer emptyTest {format 0}
  1129.  
  1130.     # By default, tests that expose known bugs are skipped.
  1131.  
  1132.     ConstraintInitializer knownBug {format 0}
  1133.  
  1134.     # By default, non-portable tests are skipped.
  1135.  
  1136.     ConstraintInitializer nonPortable {format 0}
  1137.  
  1138.     # Some tests require user interaction.
  1139.  
  1140.     ConstraintInitializer userInteraction {format 0}
  1141.  
  1142.     # Some tests must be skipped if the interpreter is not in
  1143.     # interactive mode
  1144.  
  1145.     ConstraintInitializer interactive \
  1146.         {expr {[info exists ::tcl_interactive] && $::tcl_interactive}}
  1147.  
  1148.     # Some tests can only be run if the installation came from a CD
  1149.     # image instead of a web image.  Some tests must be skipped if you
  1150.     # are running as root on Unix.  Other tests can only be run if you
  1151.     # are running as root on Unix.
  1152.  
  1153.     ConstraintInitializer root {expr \
  1154.         {[string equal unix $::tcl_platform(platform)]
  1155.         && ([string equal root $::tcl_platform(user)]
  1156.         || [string equal "" $::tcl_platform(user)])}}
  1157.     ConstraintInitializer notRoot {expr {![testConstraint root]}}
  1158.  
  1159.     # Set nonBlockFiles constraint: 1 means this platform supports
  1160.     # setting files into nonblocking mode.
  1161.  
  1162.     ConstraintInitializer nonBlockFiles {
  1163.         set code [expr {[catch {set f [open defs r]}] 
  1164.             || [catch {fconfigure $f -blocking off}]}]
  1165.         catch {close $f}
  1166.         set code
  1167.     }
  1168.  
  1169.     # Set asyncPipeClose constraint: 1 means this platform supports
  1170.     # async flush and async close on a pipe.
  1171.     #
  1172.     # Test for SCO Unix - cannot run async flushing tests because a
  1173.     # potential problem with select is apparently interfering.
  1174.     # (Mark Diekhans).
  1175.  
  1176.     ConstraintInitializer asyncPipeClose {expr {
  1177.         !([string equal unix $::tcl_platform(platform)] 
  1178.         && ([catch {exec uname -X | fgrep {Release = 3.2v}}] == 0))}}
  1179.  
  1180.     # Test to see if we have a broken version of sprintf with respect
  1181.     # to the "e" format of floating-point numbers.
  1182.  
  1183.     ConstraintInitializer eformat {string equal [format %g 5e-5] 5e-05}
  1184.  
  1185.     # Test to see if execed commands such as cat, echo, rm and so forth
  1186.     # are present on this machine.
  1187.  
  1188.     ConstraintInitializer unixExecs {
  1189.     set code 1
  1190.         if {[string equal macintosh $::tcl_platform(platform)]} {
  1191.         set code 0
  1192.         }
  1193.         if {[string equal windows $::tcl_platform(platform)]} {
  1194.         if {[catch {
  1195.             set file _tcl_test_remove_me.txt
  1196.             makeFile {hello} $file
  1197.         }]} {
  1198.             set code 0
  1199.         } elseif {
  1200.             [catch {exec cat $file}] ||
  1201.             [catch {exec echo hello}] ||
  1202.             [catch {exec sh -c echo hello}] ||
  1203.             [catch {exec wc $file}] ||
  1204.             [catch {exec sleep 1}] ||
  1205.             [catch {exec echo abc > $file}] ||
  1206.             [catch {exec chmod 644 $file}] ||
  1207.             [catch {exec rm $file}] ||
  1208.             [llength [auto_execok mkdir]] == 0 ||
  1209.             [llength [auto_execok fgrep]] == 0 ||
  1210.             [llength [auto_execok grep]] == 0 ||
  1211.             [llength [auto_execok ps]] == 0
  1212.         } {
  1213.             set code 0
  1214.         }
  1215.         removeFile $file
  1216.         }
  1217.     set code
  1218.     }
  1219.  
  1220.     ConstraintInitializer stdio {
  1221.     set code 0
  1222.     if {![catch {set f [open "|[list [interpreter]]" w]}]} {
  1223.         if {![catch {puts $f exit}]} {
  1224.         if {![catch {close $f}]} {
  1225.             set code 1
  1226.         }
  1227.         }
  1228.     }
  1229.     set code
  1230.     }
  1231.  
  1232.     # Deliberately call socket with the wrong number of arguments.  The
  1233.     # error message you get will indicate whether sockets are available
  1234.     # on this system.
  1235.  
  1236.     ConstraintInitializer socket {
  1237.     catch {socket} msg
  1238.     string compare $msg "sockets are not available on this system"
  1239.     }
  1240.  
  1241.     # Check for internationalization
  1242.     ConstraintInitializer hasIsoLocale {
  1243.     if {[llength [info commands testlocale]] == 0} {
  1244.         set code 0
  1245.     } else {
  1246.         set code [string length [SetIso8859_1_Locale]]
  1247.         RestoreLocale
  1248.     }
  1249.     set code
  1250.     }
  1251.  
  1252. }
  1253. #####################################################################
  1254.  
  1255. # Usage and command line arguments processing.
  1256.  
  1257. # tcltest::PrintUsageInfo
  1258. #
  1259. #    Prints out the usage information for package tcltest.  This can
  1260. #    be customized with the redefinition of [PrintUsageInfoHook].
  1261. #
  1262. # Arguments:
  1263. #    none
  1264. #
  1265. # Results:
  1266. #       none
  1267. #
  1268. # Side Effects:
  1269. #       none
  1270. proc tcltest::PrintUsageInfo {} {
  1271.     puts [Usage]
  1272.     PrintUsageInfoHook
  1273. }
  1274.  
  1275. proc tcltest::Usage { {option ""} } {
  1276.     variable Usage
  1277.     variable Verify
  1278.     if {[llength [info level 0]] == 1} {
  1279.     set msg "Usage: [file tail [info nameofexecutable]] script "
  1280.     append msg "?-help? ?flag value? ... \n"
  1281.     append msg "Available flags (and valid input values) are:"
  1282.  
  1283.     set max 0
  1284.     set allOpts [concat -help [Configure]]
  1285.     foreach opt $allOpts {
  1286.         set foo [Usage $opt]
  1287.         foreach [list x type($opt) usage($opt)] $foo break
  1288.         set line($opt) "  $opt $type($opt)  "
  1289.         set length($opt) [string length $line($opt)]
  1290.         if {$length($opt) > $max} {set max $length($opt)}
  1291.     }
  1292.     set rest [expr {72 - $max}]
  1293.     foreach opt $allOpts {
  1294.         append msg \n$line($opt)
  1295.         append msg [string repeat " " [expr {$max - $length($opt)}]]
  1296.         set u [string trim $usage($opt)]
  1297.         catch {append u "  (default: \[[Configure $opt]])"}
  1298.         regsub -all {\s*\n\s*} $u " " u
  1299.         while {[string length $u] > $rest} {
  1300.         set break [string wordstart $u $rest]
  1301.         if {$break == 0} {
  1302.             set break [string wordend $u 0]
  1303.         }
  1304.         append msg [string range $u 0 [expr {$break - 1}]]
  1305.         set u [string trim [string range $u $break end]]
  1306.         append msg \n[string repeat " " $max]
  1307.         }
  1308.         append msg $u
  1309.     }
  1310.     return $msg\n
  1311.     } elseif {[string equal -help $option]} {
  1312.     return [list -help "" "Display this usage information."]
  1313.     } else {
  1314.     set type [lindex [info args $Verify($option)] 0]
  1315.     return [list $option $type $Usage($option)]
  1316.     }
  1317. }
  1318.  
  1319. # tcltest::ProcessFlags --
  1320. #
  1321. #    process command line arguments supplied in the flagArray - this
  1322. #    is called by processCmdLineArgs.  Modifies tcltest variables
  1323. #    according to the content of the flagArray.
  1324. #
  1325. # Arguments:
  1326. #    flagArray - array containing name/value pairs of flags
  1327. #
  1328. # Results:
  1329. #    sets tcltest variables according to their values as defined by
  1330. #       flagArray
  1331. #
  1332. # Side effects:
  1333. #    None.
  1334.  
  1335. proc tcltest::ProcessFlags {flagArray} {
  1336.     # Process -help first
  1337.     if {[lsearch -exact $flagArray {-help}] != -1} {
  1338.     PrintUsageInfo
  1339.     exit 1
  1340.     }
  1341.  
  1342.     if {[llength $flagArray] == 0} {
  1343.     RemoveAutoConfigureTraces
  1344.     } else {
  1345.     set args $flagArray
  1346.     while {[llength $args] && [catch {eval configure $args} msg]} {
  1347.  
  1348.         # Something went wrong parsing $args for tcltest options
  1349.         # Check whether the problem is "unknown option"
  1350.         if {[regexp {^unknown option (\S+):} $msg -> option]} {
  1351.         # Could be this is an option the Hook knows about
  1352.         set moreOptions [processCmdLineArgsAddFlagsHook]
  1353.         if {[lsearch -exact $moreOptions $option] == -1} {
  1354.             # Nope.  Report the error, including additional options,
  1355.             # but keep going
  1356.             if {[llength $moreOptions]} {
  1357.             append msg ", "
  1358.             append msg [join [lrange $moreOptions 0 end -1] ", "]
  1359.             append msg "or [lindex $moreOptions end]"
  1360.             }
  1361.             Warn $msg
  1362.         }
  1363.         } else {
  1364.         # error is something other than "unknown option"
  1365.         # notify user of the error; and exit
  1366.         puts [errorChannel] $msg
  1367.         exit 1
  1368.         }
  1369.  
  1370.         # To recover, find that unknown option and remove up to it.
  1371.         # then retry
  1372.         while {![string equal [lindex $args 0] $option]} {
  1373.         set args [lrange $args 2 end]
  1374.         }
  1375.         set args [lrange $args 2 end]
  1376.     }
  1377.     }
  1378.  
  1379.     # Call the hook
  1380.     array set flag $flagArray
  1381.     processCmdLineArgsHook [array get flag]
  1382.     return
  1383. }
  1384.  
  1385. # tcltest::ProcessCmdLineArgs --
  1386. #
  1387. #       This procedure must be run after constraint initialization is
  1388. #    set up (by [DefineConstraintInitializers]) because some constraints
  1389. #    can be overridden.
  1390. #
  1391. #       Perform configuration according to the command-line options.
  1392. #
  1393. # Arguments:
  1394. #    none
  1395. #
  1396. # Results:
  1397. #    Sets the above-named variables in the tcltest namespace.
  1398. #
  1399. # Side Effects:
  1400. #       None.
  1401. #
  1402.  
  1403. proc tcltest::ProcessCmdLineArgs {} {
  1404.     variable originalEnv
  1405.     variable testConstraints
  1406.  
  1407.     # The "argv" var doesn't exist in some cases, so use {}.
  1408.     if {![info exists ::argv]} {
  1409.     ProcessFlags {}
  1410.     } else {
  1411.     ProcessFlags $::argv
  1412.     }
  1413.  
  1414.     # Spit out everything you know if we're at a debug level 2 or
  1415.     # greater
  1416.     DebugPuts 2 "Flags passed into tcltest:"
  1417.     if {[info exists ::env(TCLTEST_OPTIONS)]} {
  1418.     DebugPuts 2 \
  1419.         "    ::env(TCLTEST_OPTIONS): $::env(TCLTEST_OPTIONS)"
  1420.     }
  1421.     if {[info exists argv]} {
  1422.     DebugPuts 2 "    argv: $argv"
  1423.     }
  1424.     DebugPuts    2 "tcltest::debug              = [debug]"
  1425.     DebugPuts    2 "tcltest::testsDirectory     = [testsDirectory]"
  1426.     DebugPuts    2 "tcltest::workingDirectory   = [workingDirectory]"
  1427.     DebugPuts    2 "tcltest::temporaryDirectory = [temporaryDirectory]"
  1428.     DebugPuts    2 "tcltest::outputChannel      = [outputChannel]"
  1429.     DebugPuts    2 "tcltest::errorChannel       = [errorChannel]"
  1430.     DebugPuts    2 "Original environment (tcltest::originalEnv):"
  1431.     DebugPArray  2 originalEnv
  1432.     DebugPuts    2 "Constraints:"
  1433.     DebugPArray  2 testConstraints
  1434. }
  1435.  
  1436. #####################################################################
  1437.  
  1438. # Code to run the tests goes here.
  1439.  
  1440. # tcltest::TestPuts --
  1441. #
  1442. #    Used to redefine puts in test environment.  Stores whatever goes
  1443. #    out on stdout in tcltest::outData and stderr in errData before
  1444. #    sending it on to the regular puts.
  1445. #
  1446. # Arguments:
  1447. #    same as standard puts
  1448. #
  1449. # Results:
  1450. #    none
  1451. #
  1452. # Side effects:
  1453. #       Intercepts puts; data that would otherwise go to stdout, stderr,
  1454. #    or file channels specified in outputChannel and errorChannel
  1455. #    does not get sent to the normal puts function.
  1456. namespace eval tcltest::Replace {
  1457.     namespace export puts
  1458. }
  1459. proc tcltest::Replace::puts {args} {
  1460.     variable [namespace parent]::outData
  1461.     variable [namespace parent]::errData
  1462.     switch [llength $args] {
  1463.     1 {
  1464.         # Only the string to be printed is specified
  1465.         append outData [lindex $args 0]\n
  1466.         return
  1467.         # return [Puts [lindex $args 0]]
  1468.     }
  1469.     2 {
  1470.         # Either -nonewline or channelId has been specified
  1471.         if {[string equal -nonewline [lindex $args 0]]} {
  1472.         append outData [lindex $args end]
  1473.         return
  1474.         # return [Puts -nonewline [lindex $args end]]
  1475.         } else {
  1476.         set channel [lindex $args 0]
  1477.         set newline \n
  1478.         }
  1479.     }
  1480.     3 {
  1481.         if {[string equal -nonewline [lindex $args 0]]} {
  1482.         # Both -nonewline and channelId are specified, unless
  1483.         # it's an error.  -nonewline is supposed to be argv[0].
  1484.         set channel [lindex $args 1]
  1485.         set newline ""
  1486.         }
  1487.     }
  1488.     }
  1489.  
  1490.     if {[info exists channel]} {
  1491.     if {[string equal $channel [[namespace parent]::outputChannel]]
  1492.         || [string equal $channel stdout]} {
  1493.         append outData [lindex $args end]$newline
  1494.         return
  1495.     } elseif {[string equal $channel [[namespace parent]::errorChannel]]
  1496.         || [string equal $channel stderr]} {
  1497.         append errData [lindex $args end]$newline
  1498.         return
  1499.     }
  1500.     }
  1501.  
  1502.     # If we haven't returned by now, we don't know how to handle the
  1503.     # input.  Let puts handle it.
  1504.     return [eval Puts $args]
  1505. }
  1506.  
  1507. # tcltest::Eval --
  1508. #
  1509. #    Evaluate the script in the test environment.  If ignoreOutput is
  1510. #       false, store data sent to stderr and stdout in outData and
  1511. #       errData.  Otherwise, ignore this output altogether.
  1512. #
  1513. # Arguments:
  1514. #    script             Script to evaluate
  1515. #       ?ignoreOutput?     Indicates whether or not to ignore output
  1516. #               sent to stdout & stderr
  1517. #
  1518. # Results:
  1519. #    result from running the script
  1520. #
  1521. # Side effects:
  1522. #    Empties the contents of outData and errData before running a
  1523. #    test if ignoreOutput is set to 0.
  1524.  
  1525. proc tcltest::Eval {script {ignoreOutput 1}} {
  1526.     variable outData
  1527.     variable errData
  1528.     DebugPuts 3 "[lindex [info level 0] 0] called"
  1529.     if {!$ignoreOutput} {
  1530.     set outData {}
  1531.     set errData {}
  1532.     set callerHasPuts [llength [uplevel 1 {
  1533.         ::info commands [::namespace current]::puts
  1534.     }]]
  1535.     if {$callerHasPuts} {
  1536.         uplevel 1 [list ::rename puts [namespace current]::Replace::Puts]
  1537.     } else {
  1538.         interp alias {} [namespace current]::Replace::Puts {} ::puts
  1539.     }
  1540.     uplevel 1 [list ::namespace import [namespace origin Replace::puts]]
  1541.     namespace import Replace::puts
  1542.     }
  1543.     set result [uplevel 1 $script]
  1544.     if {!$ignoreOutput} {
  1545.     namespace forget puts
  1546.     uplevel 1 ::namespace forget puts
  1547.     if {$callerHasPuts} {
  1548.         uplevel 1 [list ::rename [namespace current]::Replace::Puts puts]
  1549.     } else {
  1550.         interp alias {} [namespace current]::Replace::Puts {}
  1551.     }
  1552.     }
  1553.     return $result
  1554. }
  1555.  
  1556. # tcltest::CompareStrings --
  1557. #
  1558. #    compares the expected answer to the actual answer, depending on
  1559. #    the mode provided.  Mode determines whether a regexp, exact,
  1560. #    glob or custom comparison is done.
  1561. #
  1562. # Arguments:
  1563. #    actual - string containing the actual result
  1564. #       expected - pattern to be matched against
  1565. #       mode - type of comparison to be done
  1566. #
  1567. # Results:
  1568. #    result of the match
  1569. #
  1570. # Side effects:
  1571. #    None.
  1572.  
  1573. proc tcltest::CompareStrings {actual expected mode} {
  1574.     variable CustomMatch
  1575.     if {![info exists CustomMatch($mode)]} {
  1576.         return -code error "No matching command registered for `-match $mode'"
  1577.     }
  1578.     set match [namespace eval :: $CustomMatch($mode) [list $expected $actual]]
  1579.     if {[catch {expr {$match && $match}} result]} {
  1580.     return -code error "Invalid result from `-match $mode' command: $result"
  1581.     }
  1582.     return $match
  1583. }
  1584.  
  1585. # tcltest::customMatch --
  1586. #
  1587. #    registers a command to be called when a particular type of
  1588. #    matching is required.
  1589. #
  1590. # Arguments:
  1591. #    nickname - Keyword for the type of matching
  1592. #    cmd - Incomplete command that implements that type of matching
  1593. #        when completed with expected string and actual string
  1594. #        and then evaluated.
  1595. #
  1596. # Results:
  1597. #    None.
  1598. #
  1599. # Side effects:
  1600. #    Sets the variable tcltest::CustomMatch
  1601.  
  1602. proc tcltest::customMatch {mode script} {
  1603.     variable CustomMatch
  1604.     if {![info complete $script]} {
  1605.     return -code error \
  1606.         "invalid customMatch script; can't evaluate after completion"
  1607.     }
  1608.     set CustomMatch($mode) $script
  1609. }
  1610.  
  1611. # tcltest::SubstArguments list
  1612. #
  1613. # This helper function takes in a list of words, then perform a
  1614. # substitution on the list as though each word in the list is a separate
  1615. # argument to the Tcl function.  For example, if this function is
  1616. # invoked as:
  1617. #
  1618. #      SubstArguments {$a {$a}}
  1619. #
  1620. # Then it is as though the function is invoked as:
  1621. #
  1622. #      SubstArguments $a {$a}
  1623. #
  1624. # This code is adapted from Paul Duffin's function "SplitIntoWords".
  1625. # The original function can be found  on:
  1626. #
  1627. #      http://purl.org/thecliff/tcl/wiki/858.html
  1628. #
  1629. # Results:
  1630. #     a list containing the result of the substitution
  1631. #
  1632. # Exceptions:
  1633. #     An error may occur if the list containing unbalanced quote or
  1634. #     unknown variable.
  1635. #
  1636. # Side Effects:
  1637. #     None.
  1638. #
  1639.  
  1640. proc tcltest::SubstArguments {argList} {
  1641.  
  1642.     # We need to split the argList up into tokens but cannot use list
  1643.     # operations as they throw away some significant quoting, and
  1644.     # [split] ignores braces as it should.  Therefore what we do is
  1645.     # gradually build up a string out of whitespace seperated strings.
  1646.     # We cannot use [split] to split the argList into whitespace
  1647.     # separated strings as it throws away the whitespace which maybe
  1648.     # important so we have to do it all by hand.
  1649.  
  1650.     set result {}
  1651.     set token ""
  1652.  
  1653.     while {[string length $argList]} {
  1654.         # Look for the next word containing a quote: " { }
  1655.         if {[regexp -indices {[^ \t\n]*[\"\{\}]+[^ \t\n]*} \
  1656.         $argList all]} {
  1657.             # Get the text leading up to this word, but not including
  1658.         # this word, from the argList.
  1659.             set text [string range $argList 0 \
  1660.             [expr {[lindex $all 0] - 1}]]
  1661.             # Get the word with the quote
  1662.             set word [string range $argList \
  1663.                     [lindex $all 0] [lindex $all 1]]
  1664.  
  1665.             # Remove all text up to and including the word from the
  1666.             # argList.
  1667.             set argList [string range $argList \
  1668.                     [expr {[lindex $all 1] + 1}] end]
  1669.         } else {
  1670.             # Take everything up to the end of the argList.
  1671.             set text $argList
  1672.             set word {}
  1673.             set argList {}
  1674.         }
  1675.  
  1676.         if {$token != {}} {
  1677.             # If we saw a word with quote before, then there is a
  1678.             # multi-word token starting with that word.  In this case,
  1679.             # add the text and the current word to this token.
  1680.             append token $text $word
  1681.         } else {
  1682.             # Add the text to the result.  There is no need to parse
  1683.             # the text because it couldn't be a part of any multi-word
  1684.             # token.  Then start a new multi-word token with the word
  1685.             # because we need to pass this token to the Tcl parser to
  1686.             # check for balancing quotes
  1687.             append result $text
  1688.             set token $word
  1689.         }
  1690.  
  1691.         if { [catch {llength $token} length] == 0 && $length == 1} {
  1692.             # The token is a valid list so add it to the result.
  1693.             # lappend result [string trim $token]
  1694.             append result \{$token\}
  1695.             set token {}
  1696.         }
  1697.     }
  1698.  
  1699.     # If the last token has not been added to the list then there
  1700.     # is a problem.
  1701.     if { [string length $token] } {
  1702.         error "incomplete token \"$token\""
  1703.     }
  1704.  
  1705.     return $result
  1706. }
  1707.  
  1708.  
  1709. # tcltest::test --
  1710. #
  1711. # This procedure runs a test and prints an error message if the test
  1712. # fails.  If verbose has been set, it also prints a message even if the
  1713. # test succeeds.  The test will be skipped if it doesn't match the
  1714. # match variable, if it matches an element in skip, or if one of the
  1715. # elements of "constraints" turns out not to be true.
  1716. #
  1717. # If testLevel is 1, then this is a top level test, and we record
  1718. # pass/fail information; otherwise, this information is not logged and
  1719. # is not added to running totals.
  1720. #
  1721. # Attributes:
  1722. #   Only description is a required attribute.  All others are optional.
  1723. #   Default values are indicated.
  1724. #
  1725. #   constraints -    A list of one or more keywords, each of which
  1726. #            must be the name of an element in the array
  1727. #            "testConstraints".  If any of these elements is
  1728. #            zero, the test is skipped. This attribute is
  1729. #            optional; default is {}
  1730. #   body -            Script to run to carry out the test.  It must
  1731. #                return a result that can be checked for
  1732. #                correctness.  This attribute is optional;
  1733. #                       default is {}
  1734. #   result -            Expected result from script.  This attribute is
  1735. #                       optional; default is {}.
  1736. #   output -            Expected output sent to stdout.  This attribute
  1737. #                       is optional; default is {}.
  1738. #   errorOutput -       Expected output sent to stderr.  This attribute
  1739. #                       is optional; default is {}.
  1740. #   returnCodes -       Expected return codes.  This attribute is
  1741. #                       optional; default is {0 2}.
  1742. #   setup -             Code to run before $script (above).  This
  1743. #                       attribute is optional; default is {}.
  1744. #   cleanup -           Code to run after $script (above).  This
  1745. #                       attribute is optional; default is {}.
  1746. #   match -             specifies type of matching to do on result,
  1747. #                       output, errorOutput; this must be a string
  1748. #            previously registered by a call to [customMatch].
  1749. #            The strings exact, glob, and regexp are pre-registered
  1750. #            by the tcltest package.  Default value is exact.
  1751. #
  1752. # Arguments:
  1753. #   name -        Name of test, in the form foo-1.2.
  1754. #   description -    Short textual description of the test, to
  1755. #                help humans understand what it does.
  1756. #
  1757. # Results:
  1758. #    None.
  1759. #
  1760. # Side effects:
  1761. #       Just about anything is possible depending on the test.
  1762. #
  1763.  
  1764. proc tcltest::test {name description args} {
  1765.     global tcl_platform
  1766.     variable testLevel
  1767.     variable coreModTime
  1768.     DebugPuts 3 "test $name $args"
  1769.  
  1770.     FillFilesExisted
  1771.     incr testLevel
  1772.  
  1773.     # Pre-define everything to null except output and errorOutput.  We
  1774.     # determine whether or not to trap output based on whether or not
  1775.     # these variables (output & errorOutput) are defined.
  1776.     foreach item {constraints setup cleanup body result returnCodes
  1777.         match} {
  1778.     set $item {}
  1779.     }
  1780.  
  1781.     # Set the default match mode
  1782.     set match exact
  1783.  
  1784.     # Set the default match values for return codes (0 is the standard
  1785.     # expected return value if everything went well; 2 represents
  1786.     # 'return' being used in the test script).
  1787.     set returnCodes [list 0 2]
  1788.  
  1789.     # The old test format can't have a 3rd argument (constraints or
  1790.     # script) that starts with '-'.
  1791.     if {[string match -* [lindex $args 0]]
  1792.         || ([llength $args] <= 1)} {
  1793.     if {[llength $args] == 1} {
  1794.         set list [SubstArguments [lindex $args 0]]
  1795.         foreach {element value} $list {
  1796.         set testAttributes($element) $value
  1797.         }
  1798.         foreach item {constraints match setup body cleanup \
  1799.             result returnCodes output errorOutput} {
  1800.         if {[info exists testAttributes(-$item)]} {
  1801.             set testAttributes(-$item) [uplevel 1 \
  1802.                 ::concat $testAttributes(-$item)]
  1803.         }
  1804.         }
  1805.     } else {
  1806.         array set testAttributes $args
  1807.     }
  1808.  
  1809.     set validFlags {-setup -cleanup -body -result -returnCodes \
  1810.         -match -output -errorOutput -constraints}
  1811.  
  1812.     foreach flag [array names testAttributes] {
  1813.         if {[lsearch -exact $validFlags $flag] == -1} {
  1814.         incr testLevel -1
  1815.         set sorted [lsort $validFlags]
  1816.         set options [join [lrange $sorted 0 end-1] ", "]
  1817.         append options ", or [lindex $sorted end]"
  1818.         return -code error "bad option \"$flag\": must be $options"
  1819.         }
  1820.     }
  1821.  
  1822.     # store whatever the user gave us
  1823.     foreach item [array names testAttributes] {
  1824.         set [string trimleft $item "-"] $testAttributes($item)
  1825.     }
  1826.  
  1827.     # Check the values supplied for -match
  1828.     variable CustomMatch
  1829.     if {[lsearch [array names CustomMatch] $match] == -1} {
  1830.         incr testLevel -1
  1831.         set sorted [lsort [array names CustomMatch]]
  1832.         set values [join [lrange $sorted 0 end-1] ", "]
  1833.         append values ", or [lindex $sorted end]"
  1834.         return -code error "bad -match value \"$match\":\
  1835.             must be $values"
  1836.     }
  1837.  
  1838.     # Replace symbolic valies supplied for -returnCodes
  1839.     regsub -nocase normal $returnCodes 0 returnCodes
  1840.     regsub -nocase error $returnCodes 1 returnCodes
  1841.     regsub -nocase return $returnCodes 2 returnCodes
  1842.     regsub -nocase break $returnCodes 3 returnCodes
  1843.     regsub -nocase continue $returnCodes 4 returnCodes
  1844.     } else {
  1845.     # This is parsing for the old test command format; it is here
  1846.     # for backward compatibility.
  1847.     set result [lindex $args end]
  1848.     if {[llength $args] == 2} {
  1849.         set body [lindex $args 0]
  1850.     } elseif {[llength $args] == 3} {
  1851.         set constraints [lindex $args 0]
  1852.         set body [lindex $args 1]
  1853.     } else {
  1854.         incr testLevel -1
  1855.         return -code error "wrong # args:\
  1856.             should be \"test name desc ?options?\""
  1857.     }
  1858.     }
  1859.  
  1860.     if {[Skipped $name $constraints]} {
  1861.     incr testLevel -1
  1862.     return
  1863.     }
  1864.  
  1865.     # Save information about the core file.  
  1866.     if {[preserveCore]} {
  1867.     if {[file exists [file join [workingDirectory] core]]} {
  1868.         set coreModTime [file mtime [file join [workingDirectory] core]]
  1869.     }
  1870.     }
  1871.  
  1872.     # First, run the setup script
  1873.     set code [catch {uplevel 1 $setup} setupMsg]
  1874.     set setupFailure [expr {$code != 0}]
  1875.  
  1876.     # Only run the test body if the setup was successful
  1877.     if {!$setupFailure} {
  1878.  
  1879.     # Verbose notification of $body start
  1880.     if {[IsVerbose start]} {
  1881.         puts [outputChannel] "---- $name start"
  1882.         flush [outputChannel]
  1883.     }
  1884.  
  1885.     set command [list [namespace origin RunTest] $name $body]
  1886.     if {[info exists output] || [info exists errorOutput]} {
  1887.         set testResult [uplevel 1 [list [namespace origin Eval] $command 0]]
  1888.     } else {
  1889.         set testResult [uplevel 1 [list [namespace origin Eval] $command 1]]
  1890.     }
  1891.     foreach {actualAnswer returnCode} $testResult break
  1892.     }
  1893.  
  1894.     # Always run the cleanup script
  1895.     set code [catch {uplevel 1 $cleanup} cleanupMsg]
  1896.     set cleanupFailure [expr {$code != 0}]
  1897.  
  1898.     set coreFailure 0
  1899.     set coreMsg ""
  1900.     # check for a core file first - if one was created by the test,
  1901.     # then the test failed
  1902.     if {[preserveCore]} {
  1903.     if {[file exists [file join [workingDirectory] core]]} {
  1904.         # There's only a test failure if there is a core file
  1905.         # and (1) there previously wasn't one or (2) the new
  1906.         # one is different from the old one.
  1907.         if {[info exists coreModTime]} {
  1908.         if {$coreModTime != [file mtime \
  1909.             [file join [workingDirectory] core]]} {
  1910.             set coreFailure 1
  1911.         }
  1912.         } else {
  1913.         set coreFailure 1
  1914.         }
  1915.     
  1916.         if {([preserveCore] > 1) && ($coreFailure)} {
  1917.         append coreMsg "\nMoving file to:\
  1918.             [file join [temporaryDirectory] core-$name]"
  1919.         catch {file rename -force \
  1920.             [file join [workingDirectory] core] \
  1921.             [file join [temporaryDirectory] core-$name]
  1922.         } msg
  1923.         if {[string length $msg] > 0} {
  1924.             append coreMsg "\nError:\
  1925.             Problem renaming core file: $msg"
  1926.         }
  1927.         }
  1928.     }
  1929.     }
  1930.  
  1931.     # If expected output/error strings exist, we have to compare
  1932.     # them.  If the comparison fails, then so did the test.
  1933.     set outputFailure 0
  1934.     variable outData
  1935.     if {[info exists output]} {
  1936.     if {[set outputCompare [catch {
  1937.         CompareStrings $outData $output $match
  1938.     } outputMatch]] == 0} {
  1939.         set outputFailure [expr {!$outputMatch}]
  1940.     } else {
  1941.         set outputFailure 1
  1942.     }
  1943.     }
  1944.  
  1945.     set errorFailure 0
  1946.     variable errData
  1947.     if {[info exists errorOutput]} {
  1948.     if {[set errorCompare [catch {
  1949.         CompareStrings $errData $errorOutput $match
  1950.     } errorMatch]] == 0} {
  1951.         set errorFailure [expr {!$errorMatch}]
  1952.     } else {
  1953.         set errorFailure 1
  1954.     }
  1955.     }
  1956.  
  1957.     # check if the return code matched the expected return code
  1958.     set codeFailure 0
  1959.     if {!$setupFailure && [lsearch -exact $returnCodes $returnCode] == -1} {
  1960.     set codeFailure 1
  1961.     }
  1962.  
  1963.     # check if the answer matched the expected answer
  1964.     # Only check if we ran the body of the test (no setup failure)
  1965.     if {$setupFailure} {
  1966.     set scriptFailure 0
  1967.     } elseif {[set scriptCompare [catch {
  1968.     CompareStrings $actualAnswer $result $match
  1969.     } scriptMatch]] == 0} {
  1970.     set scriptFailure [expr {!$scriptMatch}]
  1971.     } else {
  1972.     set scriptFailure 1
  1973.     }
  1974.  
  1975.     # if we didn't experience any failures, then we passed
  1976.     variable numTests
  1977.     if {!($setupFailure || $cleanupFailure || $coreFailure
  1978.         || $outputFailure || $errorFailure || $codeFailure
  1979.         || $scriptFailure)} {
  1980.     if {$testLevel == 1} {
  1981.         incr numTests(Passed)
  1982.         if {[IsVerbose pass]} {
  1983.         puts [outputChannel] "++++ $name PASSED"
  1984.         }
  1985.     }
  1986.     incr testLevel -1
  1987.     return
  1988.     }
  1989.  
  1990.     # We know the test failed, tally it...
  1991.     if {$testLevel == 1} {
  1992.     incr numTests(Failed)
  1993.     }
  1994.  
  1995.     # ... then report according to the type of failure
  1996.     variable currentFailure true
  1997.     if {![IsVerbose body]} {
  1998.     set body ""
  1999.     }    
  2000.     puts [outputChannel] "\n==== $name\
  2001.         [string trim $description] FAILED"
  2002.     if {[string length $body]} {
  2003.     puts [outputChannel] "==== Contents of test case:"
  2004.     puts [outputChannel] $body
  2005.     }
  2006.     if {$setupFailure} {
  2007.     puts [outputChannel] "---- Test setup\
  2008.         failed:\n$setupMsg"
  2009.     }
  2010.     if {$scriptFailure} {
  2011.     if {$scriptCompare} {
  2012.         puts [outputChannel] "---- Error testing result: $scriptMatch"
  2013.     } else {
  2014.         puts [outputChannel] "---- Result was:\n$actualAnswer"
  2015.         puts [outputChannel] "---- Result should have been\
  2016.             ($match matching):\n$result"
  2017.     }
  2018.     }
  2019.     if {$codeFailure} {
  2020.     switch -- $returnCode {
  2021.         0 { set msg "Test completed normally" }
  2022.         1 { set msg "Test generated error" }
  2023.         2 { set msg "Test generated return exception" }
  2024.         3 { set msg "Test generated break exception" }
  2025.         4 { set msg "Test generated continue exception" }
  2026.         default { set msg "Test generated exception" }
  2027.     }
  2028.     puts [outputChannel] "---- $msg; Return code was: $returnCode"
  2029.     puts [outputChannel] "---- Return code should have been\
  2030.         one of: $returnCodes"
  2031.     if {[IsVerbose error]} {
  2032.         if {[info exists ::errorInfo]} {
  2033.         puts [outputChannel] "---- errorInfo: $::errorInfo"
  2034.         puts [outputChannel] "---- errorCode: $::errorCode"
  2035.         }
  2036.     }
  2037.     }
  2038.     if {$outputFailure} {
  2039.     if {$outputCompare} {
  2040.         puts [outputChannel] "---- Error testing output: $outputMatch"
  2041.     } else {
  2042.         puts [outputChannel] "---- Output was:\n$outData"
  2043.         puts [outputChannel] "---- Output should have been\
  2044.             ($match matching):\n$output"
  2045.     }
  2046.     }
  2047.     if {$errorFailure} {
  2048.     if {$errorCompare} {
  2049.         puts [outputChannel] "---- Error testing errorOutput: $errorMatch"
  2050.     } else {
  2051.         puts [outputChannel] "---- Error output was:\n$errData"
  2052.         puts [outputChannel] "---- Error output should have\
  2053.             been ($match matching):\n$errorOutput"
  2054.     }
  2055.     }
  2056.     if {$cleanupFailure} {
  2057.     puts [outputChannel] "---- Test cleanup failed:\n$cleanupMsg"
  2058.     }
  2059.     if {$coreFailure} {
  2060.     puts [outputChannel] "---- Core file produced while running\
  2061.         test!  $coreMsg"
  2062.     }
  2063.     puts [outputChannel] "==== $name FAILED\n"
  2064.  
  2065.     incr testLevel -1
  2066.     return
  2067. }
  2068.  
  2069. # Skipped --
  2070. #
  2071. # Given a test name and it constraints, returns a boolean indicating
  2072. # whether the current configuration says the test should be skipped.
  2073. #
  2074. # Side Effects:  Maintains tally of total tests seen and tests skipped.
  2075. #
  2076. proc tcltest::Skipped {name constraints} {
  2077.     variable testLevel
  2078.     variable numTests
  2079.     variable testConstraints
  2080.  
  2081.     if {$testLevel == 1} {
  2082.     incr numTests(Total)
  2083.     }
  2084.     # skip the test if it's name matches an element of skip
  2085.     foreach pattern [skip] {
  2086.     if {[string match $pattern $name]} {
  2087.         if {$testLevel == 1} {
  2088.         incr numTests(Skipped)
  2089.         DebugDo 1 {AddToSkippedBecause userSpecifiedSkip}
  2090.         }
  2091.         return 1
  2092.     }
  2093.     }
  2094.     # skip the test if it's name doesn't match any element of match
  2095.     set ok 0
  2096.     foreach pattern [match] {
  2097.     if {[string match $pattern $name]} {
  2098.         set ok 1
  2099.         break
  2100.     }
  2101.     }
  2102.     if {!$ok} {
  2103.     if {$testLevel == 1} {
  2104.         incr numTests(Skipped)
  2105.         DebugDo 1 {AddToSkippedBecause userSpecifiedNonMatch}
  2106.     }
  2107.     return 1
  2108.     }
  2109.     if {[string equal {} $constraints]} {
  2110.     # If we're limited to the listed constraints and there aren't
  2111.     # any listed, then we shouldn't run the test.
  2112.     if {[limitConstraints]} {
  2113.         AddToSkippedBecause userSpecifiedLimitConstraint
  2114.         if {$testLevel == 1} {
  2115.         incr numTests(Skipped)
  2116.         }
  2117.         return 1
  2118.     }
  2119.     } else {
  2120.     # "constraints" argument exists;
  2121.     # make sure that the constraints are satisfied.
  2122.  
  2123.     set doTest 0
  2124.     if {[string match {*[$\[]*} $constraints] != 0} {
  2125.         # full expression, e.g. {$foo > [info tclversion]}
  2126.         catch {set doTest [uplevel #0 expr $constraints]}
  2127.     } elseif {[regexp {[^.a-zA-Z0-9 \n\r\t]+} $constraints] != 0} {
  2128.         # something like {a || b} should be turned into
  2129.         # $testConstraints(a) || $testConstraints(b).
  2130.         regsub -all {[.\w]+} $constraints {$testConstraints(&)} c
  2131.         catch {set doTest [eval expr $c]}
  2132.     } elseif {![catch {llength $constraints}]} {
  2133.         # just simple constraints such as {unixOnly fonts}.
  2134.         set doTest 1
  2135.         foreach constraint $constraints {
  2136.         if {(![info exists testConstraints($constraint)]) \
  2137.             || (!$testConstraints($constraint))} {
  2138.             set doTest 0
  2139.  
  2140.             # store the constraint that kept the test from
  2141.             # running
  2142.             set constraints $constraint
  2143.             break
  2144.         }
  2145.         }
  2146.     }
  2147.     
  2148.     if {$doTest == 0} {
  2149.         if {[IsVerbose skip]} {
  2150.         puts [outputChannel] "++++ $name SKIPPED: $constraints"
  2151.         }
  2152.  
  2153.         if {$testLevel == 1} {
  2154.         incr numTests(Skipped)
  2155.         AddToSkippedBecause $constraints
  2156.         }
  2157.         return 1
  2158.     }
  2159.     }
  2160.     return 0
  2161. }
  2162.  
  2163. # RunTest --
  2164. #
  2165. # This is where the body of a test is evaluated.  The combination of
  2166. # [RunTest] and [Eval] allows the output and error output of the test
  2167. # body to be captured for comparison against the expected values.
  2168.  
  2169. proc tcltest::RunTest {name script} {
  2170.     DebugPuts 3 "Running $name {$script}"
  2171.  
  2172.     # If there is no "memory" command (because memory debugging isn't
  2173.     # enabled), then don't attempt to use the command.
  2174.  
  2175.     if {[llength [info commands memory]] == 1} {
  2176.     memory tag $name
  2177.     }
  2178.  
  2179.     set code [catch {uplevel 1 $script} actualAnswer]
  2180.  
  2181.     return [list $actualAnswer $code]
  2182. }
  2183.  
  2184. #####################################################################
  2185.  
  2186. # tcltest::cleanupTestsHook --
  2187. #
  2188. #    This hook allows a harness that builds upon tcltest to specify
  2189. #       additional things that should be done at cleanup.
  2190. #
  2191.  
  2192. if {[llength [info commands tcltest::cleanupTestsHook]] == 0} {
  2193.     proc tcltest::cleanupTestsHook {} {}
  2194. }
  2195.  
  2196. # tcltest::cleanupTests --
  2197. #
  2198. # Remove files and dirs created using the makeFile and makeDirectory
  2199. # commands since the last time this proc was invoked.
  2200. #
  2201. # Print the names of the files created without the makeFile command
  2202. # since the tests were invoked.
  2203. #
  2204. # Print the number tests (total, passed, failed, and skipped) since the
  2205. # tests were invoked.
  2206. #
  2207. # Restore original environment (as reported by special variable env).
  2208. #
  2209. # Arguments:
  2210. #      calledFromAllFile - if 0, behave as if we are running a single
  2211. #      test file within an entire suite of tests.  if we aren't running
  2212. #      a single test file, then don't report status.  check for new
  2213. #      files created during the test run and report on them.  if 1,
  2214. #      report collated status from all the test file runs.
  2215. #
  2216. # Results:
  2217. #      None.
  2218. #
  2219. # Side Effects:
  2220. #      None
  2221. #
  2222.  
  2223. proc tcltest::cleanupTests {{calledFromAllFile 0}} {
  2224.     variable filesMade
  2225.     variable filesExisted
  2226.     variable createdNewFiles
  2227.     variable testSingleFile
  2228.     variable numTests
  2229.     variable numTestFiles
  2230.     variable failFiles
  2231.     variable skippedBecause
  2232.     variable currentFailure
  2233.     variable originalEnv
  2234.     variable originalTclPlatform
  2235.     variable coreModTime
  2236.  
  2237.     FillFilesExisted
  2238.     set testFileName [file tail [info script]]
  2239.  
  2240.     # Call the cleanup hook
  2241.     cleanupTestsHook
  2242.  
  2243.     # Remove files and directories created by the makeFile and
  2244.     # makeDirectory procedures.  Record the names of files in
  2245.     # workingDirectory that were not pre-existing, and associate them
  2246.     # with the test file that created them.
  2247.  
  2248.     if {!$calledFromAllFile} {
  2249.     foreach file $filesMade {
  2250.         if {[file exists $file]} {
  2251.         DebugDo 1 {Warn "cleanupTests deleting $file..."}
  2252.         catch {file delete -force $file}
  2253.         }
  2254.     }
  2255.     set currentFiles {}
  2256.     foreach file [glob -nocomplain \
  2257.         -directory [temporaryDirectory] *] {
  2258.         lappend currentFiles [file tail $file]
  2259.     }
  2260.     set newFiles {}
  2261.     foreach file $currentFiles {
  2262.         if {[lsearch -exact $filesExisted $file] == -1} {
  2263.         lappend newFiles $file
  2264.         }
  2265.     }
  2266.     set filesExisted $currentFiles
  2267.     if {[llength $newFiles] > 0} {
  2268.         set createdNewFiles($testFileName) $newFiles
  2269.     }
  2270.     }
  2271.  
  2272.     if {$calledFromAllFile || $testSingleFile} {
  2273.  
  2274.     # print stats
  2275.  
  2276.     puts -nonewline [outputChannel] "$testFileName:"
  2277.     foreach index [list "Total" "Passed" "Skipped" "Failed"] {
  2278.         puts -nonewline [outputChannel] \
  2279.             "\t$index\t$numTests($index)"
  2280.     }
  2281.     puts [outputChannel] ""
  2282.  
  2283.     # print number test files sourced
  2284.     # print names of files that ran tests which failed
  2285.  
  2286.     if {$calledFromAllFile} {
  2287.         puts [outputChannel] \
  2288.             "Sourced $numTestFiles Test Files."
  2289.         set numTestFiles 0
  2290.         if {[llength $failFiles] > 0} {
  2291.         puts [outputChannel] \
  2292.             "Files with failing tests: $failFiles"
  2293.         set failFiles {}
  2294.         }
  2295.     }
  2296.  
  2297.     # if any tests were skipped, print the constraints that kept
  2298.     # them from running.
  2299.  
  2300.     set constraintList [array names skippedBecause]
  2301.     if {[llength $constraintList] > 0} {
  2302.         puts [outputChannel] \
  2303.             "Number of tests skipped for each constraint:"
  2304.         foreach constraint [lsort $constraintList] {
  2305.         puts [outputChannel] \
  2306.             "\t$skippedBecause($constraint)\t$constraint"
  2307.         unset skippedBecause($constraint)
  2308.         }
  2309.     }
  2310.  
  2311.     # report the names of test files in createdNewFiles, and reset
  2312.     # the array to be empty.
  2313.  
  2314.     set testFilesThatTurded [lsort [array names createdNewFiles]]
  2315.     if {[llength $testFilesThatTurded] > 0} {
  2316.         puts [outputChannel] "Warning: files left behind:"
  2317.         foreach testFile $testFilesThatTurded {
  2318.         puts [outputChannel] \
  2319.             "\t$testFile:\t$createdNewFiles($testFile)"
  2320.         unset createdNewFiles($testFile)
  2321.         }
  2322.     }
  2323.  
  2324.     # reset filesMade, filesExisted, and numTests
  2325.  
  2326.     set filesMade {}
  2327.     foreach index [list "Total" "Passed" "Skipped" "Failed"] {
  2328.         set numTests($index) 0
  2329.     }
  2330.  
  2331.     # exit only if running Tk in non-interactive mode
  2332.     # This should be changed to determine if an event
  2333.     # loop is running, which is the real issue.
  2334.     # Actually, this doesn't belong here at all.  A package
  2335.     # really has no business [exit]-ing an application.
  2336.     if {![catch {package present Tk}] && ![testConstraint interactive]} {
  2337.         exit
  2338.     }
  2339.     } else {
  2340.  
  2341.     # if we're deferring stat-reporting until all files are sourced,
  2342.     # then add current file to failFile list if any tests in this
  2343.     # file failed
  2344.  
  2345.     incr numTestFiles
  2346.     if {$currentFailure \
  2347.         && ([lsearch -exact $failFiles $testFileName] == -1)} {
  2348.         lappend failFiles $testFileName
  2349.     }
  2350.     set currentFailure false
  2351.  
  2352.     # restore the environment to the state it was in before this package
  2353.     # was loaded
  2354.  
  2355.     set newEnv {}
  2356.     set changedEnv {}
  2357.     set removedEnv {}
  2358.     foreach index [array names ::env] {
  2359.         if {![info exists originalEnv($index)]} {
  2360.         lappend newEnv $index
  2361.         unset ::env($index)
  2362.         } else {
  2363.         if {$::env($index) != $originalEnv($index)} {
  2364.             lappend changedEnv $index
  2365.             set ::env($index) $originalEnv($index)
  2366.         }
  2367.         }
  2368.     }
  2369.     foreach index [array names originalEnv] {
  2370.         if {![info exists ::env($index)]} {
  2371.         lappend removedEnv $index
  2372.         set ::env($index) $originalEnv($index)
  2373.         }
  2374.     }
  2375.     if {[llength $newEnv] > 0} {
  2376.         puts [outputChannel] \
  2377.             "env array elements created:\t$newEnv"
  2378.     }
  2379.     if {[llength $changedEnv] > 0} {
  2380.         puts [outputChannel] \
  2381.             "env array elements changed:\t$changedEnv"
  2382.     }
  2383.     if {[llength $removedEnv] > 0} {
  2384.         puts [outputChannel] \
  2385.             "env array elements removed:\t$removedEnv"
  2386.     }
  2387.  
  2388.     set changedTclPlatform {}
  2389.     foreach index [array names originalTclPlatform] {
  2390.         if {$::tcl_platform($index) \
  2391.             != $originalTclPlatform($index)} {
  2392.         lappend changedTclPlatform $index
  2393.         set ::tcl_platform($index) $originalTclPlatform($index)
  2394.         }
  2395.     }
  2396.     if {[llength $changedTclPlatform] > 0} {
  2397.         puts [outputChannel] "tcl_platform array elements\
  2398.             changed:\t$changedTclPlatform"
  2399.     }
  2400.  
  2401.     if {[file exists [file join [workingDirectory] core]]} {
  2402.         if {[preserveCore] > 1} {
  2403.         puts "rename core file (> 1)"
  2404.         puts [outputChannel] "produced core file! \
  2405.             Moving file to: \
  2406.             [file join [temporaryDirectory] core-$name]"
  2407.         catch {file rename -force \
  2408.             [file join [workingDirectory] core] \
  2409.             [file join [temporaryDirectory] core-$name]
  2410.         } msg
  2411.         if {[string length $msg] > 0} {
  2412.             PrintError "Problem renaming file: $msg"
  2413.         }
  2414.         } else {
  2415.         # Print a message if there is a core file and (1) there
  2416.         # previously wasn't one or (2) the new one is different
  2417.         # from the old one.
  2418.  
  2419.         if {[info exists coreModTime]} {
  2420.             if {$coreModTime != [file mtime \
  2421.                 [file join [workingDirectory] core]]} {
  2422.             puts [outputChannel] "A core file was created!"
  2423.             }
  2424.         } else {
  2425.             puts [outputChannel] "A core file was created!"
  2426.         }
  2427.         }
  2428.     }
  2429.     }
  2430.     flush [outputChannel]
  2431.     flush [errorChannel]
  2432.     return
  2433. }
  2434.  
  2435. #####################################################################
  2436.  
  2437. # Procs that determine which tests/test files to run
  2438.  
  2439. # tcltest::GetMatchingFiles
  2440. #
  2441. #       Looks at the patterns given to match and skip files and uses
  2442. #    them to put together a list of the tests that will be run.
  2443. #
  2444. # Arguments:
  2445. #       directory to search
  2446. #
  2447. # Results:
  2448. #       The constructed list is returned to the user.  This will
  2449. #    primarily be used in 'all.tcl' files.  It is used in
  2450. #    runAllTests.
  2451. #
  2452. # Side Effects:
  2453. #       None
  2454.  
  2455. # a lower case version is needed for compatibility with tcltest 1.0
  2456. proc tcltest::getMatchingFiles args {eval GetMatchingFiles $args}
  2457.  
  2458. proc tcltest::GetMatchingFiles { args } {
  2459.     if {[llength $args]} {
  2460.     set dirList $args
  2461.     } else {
  2462.     # Finding tests only in [testsDirectory] is normal operation.
  2463.     # This procedure is written to accept multiple directory arguments
  2464.     # only to satisfy version 1 compatibility.
  2465.     set dirList [list [testsDirectory]]
  2466.     }
  2467.  
  2468.     set matchingFiles [list]
  2469.     foreach directory $dirList {
  2470.  
  2471.     # List files in $directory that match patterns to run.
  2472.     set matchFileList [list]
  2473.     foreach match [matchFiles] {
  2474.         set matchFileList [concat $matchFileList \
  2475.             [glob -directory $directory -nocomplain -- $match]]
  2476.     }
  2477.  
  2478.     # List files in $directory that match patterns to skip.
  2479.     set skipFileList [list]
  2480.     foreach skip [skipFiles] {
  2481.         set skipFileList [concat $skipFileList \
  2482.             [glob -directory $directory -nocomplain -- $skip]]
  2483.     }
  2484.  
  2485.     # Add to result list all files in match list and not in skip list
  2486.     foreach file $matchFileList {
  2487.         if {[lsearch -exact $skipFileList $file] == -1} {
  2488.         lappend matchingFiles $file
  2489.         }
  2490.     }
  2491.     }
  2492.  
  2493.     if {[llength $matchingFiles] == 0} {
  2494.     PrintError "No test files remain after applying your match and\
  2495.         skip patterns!"
  2496.     }
  2497.     return $matchingFiles
  2498. }
  2499.  
  2500. # tcltest::GetMatchingDirectories --
  2501. #
  2502. #    Looks at the patterns given to match and skip directories and
  2503. #    uses them to put together a list of the test directories that we
  2504. #    should attempt to run.  (Only subdirectories containing an
  2505. #    "all.tcl" file are put into the list.)
  2506. #
  2507. # Arguments:
  2508. #    root directory from which to search
  2509. #
  2510. # Results:
  2511. #    The constructed list is returned to the user.  This is used in
  2512. #    the primary all.tcl file.
  2513. #
  2514. # Side Effects:
  2515. #       None.
  2516.  
  2517. proc tcltest::GetMatchingDirectories {rootdir} {
  2518.  
  2519.     # Determine the skip list first, to avoid [glob]-ing over subdirectories
  2520.     # we're going to throw away anyway.  Be sure we skip the $rootdir if it
  2521.     # comes up to avoid infinite loops.
  2522.     set skipDirs [list $rootdir]
  2523.     foreach pattern [skipDirectories] {
  2524.     foreach path [glob -directory $rootdir -nocomplain -- $pattern] {
  2525.         if {[file isdirectory $path]} {
  2526.         lappend skipDirs $path
  2527.         }
  2528.     }
  2529.     }
  2530.  
  2531.     # Now step through the matching directories, prune out the skipped ones
  2532.     # as you go.
  2533.     set matchDirs [list]
  2534.     foreach pattern [matchDirectories] {
  2535.     foreach path [glob -directory $rootdir -nocomplain -- $pattern] {
  2536.         if {[file isdirectory $path]} {
  2537.         if {[lsearch -exact $skipDirs $path] == -1} {
  2538.             set matchDirs [concat $matchDirs \
  2539.                 [GetMatchingDirectories $path]]
  2540.             if {[file exists [file join $path all.tcl]]} {
  2541.             lappend matchDirs $path
  2542.             }
  2543.         }
  2544.         }
  2545.     }
  2546.     }
  2547.  
  2548.     if {[llength $matchDirs] == 0} {
  2549.     DebugPuts 1 "No test directories remain after applying match\
  2550.         and skip patterns!"
  2551.     }
  2552.     return $matchDirs
  2553. }
  2554.  
  2555. # tcltest::runAllTests --
  2556. #
  2557. #    prints output and sources test files according to the match and
  2558. #    skip patterns provided.  after sourcing test files, it goes on
  2559. #    to source all.tcl files in matching test subdirectories.
  2560. #
  2561. # Arguments:
  2562. #    shell being tested
  2563. #
  2564. # Results:
  2565. #    None.
  2566. #
  2567. # Side effects:
  2568. #    None.
  2569.  
  2570. proc tcltest::runAllTests { {shell ""} } {
  2571.     variable testSingleFile
  2572.     variable numTestFiles
  2573.     variable numTests
  2574.     variable failFiles
  2575.  
  2576.     FillFilesExisted
  2577.     if {[llength [info level 0]] == 1} {
  2578.     set shell [interpreter]
  2579.     }
  2580.  
  2581.     set testSingleFile false
  2582.  
  2583.     puts [outputChannel] "Tests running in interp:  $shell"
  2584.     puts [outputChannel] "Tests located in:  [testsDirectory]"
  2585.     puts [outputChannel] "Tests running in:  [workingDirectory]"
  2586.     puts [outputChannel] "Temporary files stored in\
  2587.         [temporaryDirectory]"
  2588.  
  2589.     # [file system] first available in Tcl 8.4
  2590.     if {![catch {file system [testsDirectory]} result]
  2591.         && ![string equal native [lindex $result 0]]} {
  2592.     # If we aren't running in the native filesystem, then we must
  2593.     # run the tests in a single process (via 'source'), because
  2594.     # trying to run then via a pipe will fail since the files don't
  2595.     # really exist.
  2596.     singleProcess 1
  2597.     }
  2598.  
  2599.     if {[singleProcess]} {
  2600.     puts [outputChannel] \
  2601.         "Test files sourced into current interpreter"
  2602.     } else {
  2603.     puts [outputChannel] \
  2604.         "Test files run in separate interpreters"
  2605.     }
  2606.     if {[llength [skip]] > 0} {
  2607.     puts [outputChannel] "Skipping tests that match:  [skip]"
  2608.     }
  2609.     puts [outputChannel] "Running tests that match:  [match]"
  2610.  
  2611.     if {[llength [skipFiles]] > 0} {
  2612.     puts [outputChannel] \
  2613.         "Skipping test files that match:  [skipFiles]"
  2614.     }
  2615.     if {[llength [matchFiles]] > 0} {
  2616.     puts [outputChannel] \
  2617.         "Only running test files that match:  [matchFiles]"
  2618.     }
  2619.  
  2620.     set timeCmd {clock format [clock seconds]}
  2621.     puts [outputChannel] "Tests began at [eval $timeCmd]"
  2622.  
  2623.     # Run each of the specified tests
  2624.     foreach file [lsort [GetMatchingFiles]] {
  2625.     set tail [file tail $file]
  2626.     puts [outputChannel] $tail
  2627.     flush [outputChannel]
  2628.  
  2629.     if {[singleProcess]} {
  2630.         incr numTestFiles
  2631.         uplevel 1 [list ::source $file]
  2632.     } else {
  2633.         # Pass along our configuration to the child processes.
  2634.         # EXCEPT for the -outfile, because the parent process
  2635.         # needs to read and process output of children.
  2636.         set childargv [list]
  2637.         foreach opt [Configure] {
  2638.         if {[string equal $opt -outfile]} {continue}
  2639.         lappend childargv $opt [Configure $opt]
  2640.         }
  2641.         set cmd [linsert $childargv 0 | $shell $file]
  2642.         if {[catch {
  2643.         incr numTestFiles
  2644.         set pipeFd [open $cmd "r"]
  2645.         while {[gets $pipeFd line] >= 0} {
  2646.             if {[regexp [join {
  2647.                 {^([^:]+):\t}
  2648.                 {Total\t([0-9]+)\t}
  2649.                 {Passed\t([0-9]+)\t}
  2650.                 {Skipped\t([0-9]+)\t}
  2651.                 {Failed\t([0-9]+)}
  2652.                 } ""] $line null testFile \
  2653.                 Total Passed Skipped Failed]} {
  2654.             foreach index {Total Passed Skipped Failed} {
  2655.                 incr numTests($index) [set $index]
  2656.             }
  2657.             if {$Failed > 0} {
  2658.                 lappend failFiles $testFile
  2659.             }
  2660.             } elseif {[regexp [join {
  2661.                 {^Number of tests skipped }
  2662.                 {for each constraint:}
  2663.                 {|^\t(\d+)\t(.+)$}
  2664.                 } ""] $line match skipped constraint]} {
  2665.             if {[string match \t* $match]} {
  2666.                 AddToSkippedBecause $constraint $skipped
  2667.             }
  2668.             } else {
  2669.             puts [outputChannel] $line
  2670.             }
  2671.         }
  2672.         close $pipeFd
  2673.         } msg]} {
  2674.         puts [outputChannel] "Test file error: $msg"
  2675.         # append the name of the test to a list to be reported
  2676.         # later
  2677.         lappend testFileFailures $file
  2678.         }
  2679.     }
  2680.     }
  2681.  
  2682.     # cleanup
  2683.     puts [outputChannel] "\nTests ended at [eval $timeCmd]"
  2684.     cleanupTests 1
  2685.     if {[info exists testFileFailures]} {
  2686.     puts [outputChannel] "\nTest files exiting with errors:  \n"
  2687.     foreach file $testFileFailures {
  2688.         puts [outputChannel] "  [file tail $file]\n"
  2689.     }
  2690.     }
  2691.  
  2692.     # Checking for subdirectories in which to run tests
  2693.     foreach directory [GetMatchingDirectories [testsDirectory]] {
  2694.     set dir [file tail $directory]
  2695.     puts [outputChannel] [string repeat ~ 44]
  2696.     puts [outputChannel] "$dir test began at [eval $timeCmd]\n"
  2697.     
  2698.     uplevel 1 [list ::source [file join $directory all.tcl]]
  2699.     
  2700.     set endTime [eval $timeCmd]
  2701.     puts [outputChannel] "\n$dir test ended at $endTime"
  2702.     puts [outputChannel] ""
  2703.     puts [outputChannel] [string repeat ~ 44]
  2704.     }
  2705.     return
  2706. }
  2707.  
  2708. #####################################################################
  2709.  
  2710. # Test utility procs - not used in tcltest, but may be useful for
  2711. # testing.
  2712.  
  2713. # tcltest::loadTestedCommands --
  2714. #
  2715. #     Uses the specified script to load the commands to test. Allowed to
  2716. #     be empty, as the tested commands could have been compiled into the
  2717. #     interpreter.
  2718. #
  2719. # Arguments
  2720. #     none
  2721. #
  2722. # Results
  2723. #     none
  2724. #
  2725. # Side Effects:
  2726. #     none.
  2727.  
  2728. proc tcltest::loadTestedCommands {} {
  2729.     variable l
  2730.     if {[string equal {} [loadScript]]} {
  2731.     return
  2732.     }
  2733.  
  2734.     return [uplevel 1 [loadScript]]
  2735. }
  2736.  
  2737. # tcltest::saveState --
  2738. #
  2739. #    Save information regarding what procs and variables exist.
  2740. #
  2741. # Arguments:
  2742. #    none
  2743. #
  2744. # Results:
  2745. #    Modifies the variable saveState
  2746. #
  2747. # Side effects:
  2748. #    None.
  2749.  
  2750. proc tcltest::saveState {} {
  2751.     variable saveState
  2752.     uplevel 1 [list ::set [namespace which -variable saveState]] \
  2753.         {[::list [::info procs] [::info vars]]}
  2754.     DebugPuts  2 "[lindex [info level 0] 0]: $saveState"
  2755.     return
  2756. }
  2757.  
  2758. # tcltest::restoreState --
  2759. #
  2760. #    Remove procs and variables that didn't exist before the call to
  2761. #       [saveState].
  2762. #
  2763. # Arguments:
  2764. #    none
  2765. #
  2766. # Results:
  2767. #    Removes procs and variables from your environment if they don't
  2768. #    exist in the saveState variable.
  2769. #
  2770. # Side effects:
  2771. #    None.
  2772.  
  2773. proc tcltest::restoreState {} {
  2774.     variable saveState
  2775.     foreach p [uplevel 1 {::info procs}] {
  2776.     if {([lsearch [lindex $saveState 0] $p] < 0)
  2777.         && ![string equal [namespace current]::$p \
  2778.         [uplevel 1 [list ::namespace origin $p]]]} {
  2779.  
  2780.         DebugPuts 2 "[lindex [info level 0] 0]: Removing proc $p"
  2781.         uplevel 1 [list ::catch [list ::rename $p {}]]
  2782.     }
  2783.     }
  2784.     foreach p [uplevel 1 {::info vars}] {
  2785.     if {[lsearch [lindex $saveState 1] $p] < 0} {
  2786.         DebugPuts 2 "[lindex [info level 0] 0]:\
  2787.             Removing variable $p"
  2788.         uplevel 1 [list ::catch [list ::unset $p]]
  2789.     }
  2790.     }
  2791.     return
  2792. }
  2793.  
  2794. # tcltest::normalizeMsg --
  2795. #
  2796. #    Removes "extra" newlines from a string.
  2797. #
  2798. # Arguments:
  2799. #    msg        String to be modified
  2800. #
  2801. # Results:
  2802. #    string with extra newlines removed
  2803. #
  2804. # Side effects:
  2805. #    None.
  2806.  
  2807. proc tcltest::normalizeMsg {msg} {
  2808.     regsub "\n$" [string tolower $msg] "" msg
  2809.     regsub -all "\n\n" $msg "\n" msg
  2810.     regsub -all "\n\}" $msg "\}" msg
  2811.     return $msg
  2812. }
  2813.  
  2814. # tcltest::makeFile --
  2815. #
  2816. # Create a new file with the name <name>, and write <contents> to it.
  2817. #
  2818. # If this file hasn't been created via makeFile since the last time
  2819. # cleanupTests was called, add it to the $filesMade list, so it will be
  2820. # removed by the next call to cleanupTests.
  2821. #
  2822. # Arguments:
  2823. #    contents        content of the new file
  2824. #       name            name of the new file
  2825. #       directory       directory name for new file
  2826. #
  2827. # Results:
  2828. #    absolute path to the file created
  2829. #
  2830. # Side effects:
  2831. #    None.
  2832.  
  2833. proc tcltest::makeFile {contents name {directory ""}} {
  2834.     variable filesMade
  2835.     FillFilesExisted
  2836.  
  2837.     if {[llength [info level 0]] == 3} {
  2838.     set directory [temporaryDirectory]
  2839.     }
  2840.  
  2841.     set fullName [file join $directory $name]
  2842.  
  2843.     DebugPuts 3 "[lindex [info level 0] 0]:\
  2844.          putting ``$contents'' into $fullName"
  2845.  
  2846.     set fd [open $fullName w]
  2847.     fconfigure $fd -translation lf
  2848.     if {[string equal [string index $contents end] \n]} {
  2849.     puts -nonewline $fd $contents
  2850.     } else {
  2851.     puts $fd $contents
  2852.     }
  2853.     close $fd
  2854.  
  2855.     if {[lsearch -exact $filesMade $fullName] == -1} {
  2856.     lappend filesMade $fullName
  2857.     }
  2858.     return $fullName
  2859. }
  2860.  
  2861. # tcltest::removeFile --
  2862. #
  2863. #    Removes the named file from the filesystem
  2864. #
  2865. # Arguments:
  2866. #    name          file to be removed
  2867. #       directory     directory from which to remove file
  2868. #
  2869. # Results:
  2870. #    return value from [file delete]
  2871. #
  2872. # Side effects:
  2873. #    None.
  2874.  
  2875. proc tcltest::removeFile {name {directory ""}} {
  2876.     variable filesMade
  2877.     FillFilesExisted
  2878.     if {[llength [info level 0]] == 2} {
  2879.     set directory [temporaryDirectory]
  2880.     }
  2881.     set fullName [file join $directory $name]
  2882.     DebugPuts 3 "[lindex [info level 0] 0]: removing $fullName"
  2883.     set idx [lsearch -exact $filesMade $fullName]
  2884.     set filesMade [lreplace $filesMade $idx $idx]
  2885.     if {$idx == -1} {
  2886.     DebugDo 1 {
  2887.         Warn "removeFile removing \"$fullName\":\n  not created by makeFile"
  2888.     }
  2889.     } 
  2890.     if {![file isfile $fullName]} {
  2891.     DebugDo 1 {
  2892.         Warn "removeFile removing \"$fullName\":\n  not a file"
  2893.     }
  2894.     }
  2895.     return [file delete $fullName]
  2896. }
  2897.  
  2898. # tcltest::makeDirectory --
  2899. #
  2900. # Create a new dir with the name <name>.
  2901. #
  2902. # If this dir hasn't been created via makeDirectory since the last time
  2903. # cleanupTests was called, add it to the $directoriesMade list, so it
  2904. # will be removed by the next call to cleanupTests.
  2905. #
  2906. # Arguments:
  2907. #       name            name of the new directory
  2908. #       directory       directory in which to create new dir
  2909. #
  2910. # Results:
  2911. #    absolute path to the directory created
  2912. #
  2913. # Side effects:
  2914. #    None.
  2915.  
  2916. proc tcltest::makeDirectory {name {directory ""}} {
  2917.     variable filesMade
  2918.     FillFilesExisted
  2919.     if {[llength [info level 0]] == 2} {
  2920.     set directory [temporaryDirectory]
  2921.     }
  2922.     set fullName [file join $directory $name]
  2923.     DebugPuts 3 "[lindex [info level 0] 0]: creating $fullName"
  2924.     file mkdir $fullName
  2925.     if {[lsearch -exact $filesMade $fullName] == -1} {
  2926.     lappend filesMade $fullName
  2927.     }
  2928.     return $fullName
  2929. }
  2930.  
  2931. # tcltest::removeDirectory --
  2932. #
  2933. #    Removes a named directory from the file system.
  2934. #
  2935. # Arguments:
  2936. #    name          Name of the directory to remove
  2937. #       directory     Directory from which to remove
  2938. #
  2939. # Results:
  2940. #    return value from [file delete]
  2941. #
  2942. # Side effects:
  2943. #    None
  2944.  
  2945. proc tcltest::removeDirectory {name {directory ""}} {
  2946.     variable filesMade
  2947.     FillFilesExisted
  2948.     if {[llength [info level 0]] == 2} {
  2949.     set directory [temporaryDirectory]
  2950.     }
  2951.     set fullName [file join $directory $name]
  2952.     DebugPuts 3 "[lindex [info level 0] 0]: deleting $fullName"
  2953.     set idx [lsearch -exact $filesMade $fullName]
  2954.     set filesMade [lreplace $filesMade $idx $idx]
  2955.     if {$idx == -1} {
  2956.     DebugDo 1 {
  2957.         Warn "removeDirectory removing \"$fullName\":\n  not created\
  2958.             by makeDirectory"
  2959.     }
  2960.     } 
  2961.     if {![file isdirectory $fullName]} {
  2962.     DebugDo 1 {
  2963.         Warn "removeDirectory removing \"$fullName\":\n  not a directory"
  2964.     }
  2965.     }
  2966.     return [file delete -force $fullName]
  2967. }
  2968.  
  2969. # tcltest::viewFile --
  2970. #
  2971. #    reads the content of a file and returns it
  2972. #
  2973. # Arguments:
  2974. #    name of the file to read
  2975. #       directory in which file is located
  2976. #
  2977. # Results:
  2978. #    content of the named file
  2979. #
  2980. # Side effects:
  2981. #    None.
  2982.  
  2983. proc tcltest::viewFile {name {directory ""}} {
  2984.     FillFilesExisted
  2985.     if {[llength [info level 0]] == 2} {
  2986.     set directory [temporaryDirectory]
  2987.     }
  2988.     set fullName [file join $directory $name]
  2989.     set f [open $fullName]
  2990.     set data [read -nonewline $f]
  2991.     close $f
  2992.     return $data
  2993. }
  2994.  
  2995. # tcltest::bytestring --
  2996. #
  2997. # Construct a string that consists of the requested sequence of bytes,
  2998. # as opposed to a string of properly formed UTF-8 characters.
  2999. # This allows the tester to
  3000. # 1. Create denormalized or improperly formed strings to pass to C
  3001. #    procedures that are supposed to accept strings with embedded NULL
  3002. #    bytes.
  3003. # 2. Confirm that a string result has a certain pattern of bytes, for
  3004. #    instance to confirm that "\xe0\0" in a Tcl script is stored
  3005. #    internally in UTF-8 as the sequence of bytes "\xc3\xa0\xc0\x80".
  3006. #
  3007. # Generally, it's a bad idea to examine the bytes in a Tcl string or to
  3008. # construct improperly formed strings in this manner, because it involves
  3009. # exposing that Tcl uses UTF-8 internally.
  3010. #
  3011. # Arguments:
  3012. #    string being converted
  3013. #
  3014. # Results:
  3015. #    result fom encoding
  3016. #
  3017. # Side effects:
  3018. #    None
  3019.  
  3020. proc tcltest::bytestring {string} {
  3021.     return [encoding convertfrom identity $string]
  3022. }
  3023.  
  3024. # tcltest::OpenFiles --
  3025. #
  3026. #    used in io tests, uses testchannel
  3027. #
  3028. # Arguments:
  3029. #    None.
  3030. #
  3031. # Results:
  3032. #    ???
  3033. #
  3034. # Side effects:
  3035. #    None.
  3036.  
  3037. proc tcltest::OpenFiles {} {
  3038.     if {[catch {testchannel open} result]} {
  3039.     return {}
  3040.     }
  3041.     return $result
  3042. }
  3043.  
  3044. # tcltest::LeakFiles --
  3045. #
  3046. #    used in io tests, uses testchannel
  3047. #
  3048. # Arguments:
  3049. #    None.
  3050. #
  3051. # Results:
  3052. #    ???
  3053. #
  3054. # Side effects:
  3055. #    None.
  3056.  
  3057. proc tcltest::LeakFiles {old} {
  3058.     if {[catch {testchannel open} new]} {
  3059.     return {}
  3060.     }
  3061.     set leak {}
  3062.     foreach p $new {
  3063.     if {[lsearch $old $p] < 0} {
  3064.         lappend leak $p
  3065.     }
  3066.     }
  3067.     return $leak
  3068. }
  3069.  
  3070. #
  3071. # Internationalization / ISO support procs     -- dl
  3072. #
  3073.  
  3074. # tcltest::SetIso8859_1_Locale --
  3075. #
  3076. #    used in cmdIL.test, uses testlocale
  3077. #
  3078. # Arguments:
  3079. #    None.
  3080. #
  3081. # Results:
  3082. #    None.
  3083. #
  3084. # Side effects:
  3085. #    None.
  3086.  
  3087. proc tcltest::SetIso8859_1_Locale {} {
  3088.     variable previousLocale
  3089.     variable isoLocale
  3090.     if {[info commands testlocale] != ""} {
  3091.     set previousLocale [testlocale ctype]
  3092.     testlocale ctype $isoLocale
  3093.     }
  3094.     return
  3095. }
  3096.  
  3097. # tcltest::RestoreLocale --
  3098. #
  3099. #    used in cmdIL.test, uses testlocale
  3100. #
  3101. # Arguments:
  3102. #    None.
  3103. #
  3104. # Results:
  3105. #    None.
  3106. #
  3107. # Side effects:
  3108. #    None.
  3109.  
  3110. proc tcltest::RestoreLocale {} {
  3111.     variable previousLocale
  3112.     if {[info commands testlocale] != ""} {
  3113.     testlocale ctype $previousLocale
  3114.     }
  3115.     return
  3116. }
  3117.  
  3118. # tcltest::threadReap --
  3119. #
  3120. #    Kill all threads except for the main thread.
  3121. #    Do nothing if testthread is not defined.
  3122. #
  3123. # Arguments:
  3124. #    none.
  3125. #
  3126. # Results:
  3127. #    Returns the number of existing threads.
  3128. #
  3129. # Side Effects:
  3130. #       none.
  3131. #
  3132.  
  3133. proc tcltest::threadReap {} {
  3134.     if {[info commands testthread] != {}} {
  3135.  
  3136.     # testthread built into tcltest
  3137.  
  3138.     testthread errorproc ThreadNullError
  3139.     while {[llength [testthread names]] > 1} {
  3140.         foreach tid [testthread names] {
  3141.         if {$tid != [mainThread]} {
  3142.             catch {
  3143.             testthread send -async $tid {testthread exit}
  3144.             }
  3145.         }
  3146.         }
  3147.         ## Enter a bit a sleep to give the threads enough breathing
  3148.         ## room to kill themselves off, otherwise the end up with a
  3149.         ## massive queue of repeated events
  3150.         after 1
  3151.     }
  3152.     testthread errorproc ThreadError
  3153.     return [llength [testthread names]]
  3154.     } elseif {[info commands thread::id] != {}} {
  3155.     
  3156.     # Thread extension
  3157.  
  3158.     thread::errorproc ThreadNullError
  3159.     while {[llength [thread::names]] > 1} {
  3160.         foreach tid [thread::names] {
  3161.         if {$tid != [mainThread]} {
  3162.             catch {thread::send -async $tid {thread::exit}}
  3163.         }
  3164.         }
  3165.         ## Enter a bit a sleep to give the threads enough breathing
  3166.         ## room to kill themselves off, otherwise the end up with a
  3167.         ## massive queue of repeated events
  3168.         after 1
  3169.     }
  3170.     thread::errorproc ThreadError
  3171.     return [llength [thread::names]]
  3172.     } else {
  3173.     return 1
  3174.     }
  3175.     return 0
  3176. }
  3177.  
  3178. # Initialize the constraints and set up command line arguments
  3179. namespace eval tcltest {
  3180.     # Define initializers for all the built-in contraint definitions
  3181.     DefineConstraintInitializers
  3182.  
  3183.     # Set up the constraints in the testConstraints array to be lazily
  3184.     # initialized by a registered initializer, or by "false" if no
  3185.     # initializer is registered.
  3186.     trace variable testConstraints r [namespace code SafeFetch]
  3187.  
  3188.     # Only initialize constraints at package load time if an
  3189.     # [initConstraintsHook] has been pre-defined.  This is only
  3190.     # for compatibility support.  The modern way to add a custom
  3191.     # test constraint is to just call the [testConstraint] command
  3192.     # straight away, without all this "hook" nonsense.
  3193.     if {[string equal [namespace current] \
  3194.         [namespace qualifiers [namespace which initConstraintsHook]]]} {
  3195.     InitConstraints
  3196.     } else {
  3197.     proc initConstraintsHook {} {}
  3198.     }
  3199.  
  3200.     # Define the standard match commands
  3201.     customMatch exact    [list string equal]
  3202.     customMatch glob    [list string match]
  3203.     customMatch regexp    [list regexp --]
  3204.  
  3205.     # If the TCLTEST_OPTIONS environment variable exists, configure
  3206.     # tcltest according to the option values it specifies.  This has
  3207.     # the effect of resetting tcltest's default configuration.
  3208.     proc ConfigureFromEnvironment {} {
  3209.     upvar #0 env(TCLTEST_OPTIONS) options
  3210.     if {[catch {llength $options} msg]} {
  3211.         Warn "invalid TCLTEST_OPTIONS \"$options\":\n  invalid\
  3212.             Tcl list: $msg"
  3213.         return
  3214.     }
  3215.     if {[llength $::env(TCLTEST_OPTIONS)] < 2} {
  3216.         Warn "invalid TCLTEST_OPTIONS: \"$options\":\n  should be\
  3217.             -option value ?-option value ...?"
  3218.         return
  3219.     }
  3220.     if {[catch {eval Configure $::env(TCLTEST_OPTIONS)} msg]} {
  3221.         Warn "invalid TCLTEST_OPTIONS: \"$options\":\n  $msg"
  3222.         return
  3223.     }
  3224.     }
  3225.     if {[info exists ::env(TCLTEST_OPTIONS)]} {
  3226.     ConfigureFromEnvironment
  3227.     }
  3228.  
  3229.     proc LoadTimeCmdLineArgParsingRequired {} {
  3230.     set required false
  3231.     if {[info exists ::argv] && [lsearch -exact $::argv -help] != -1} {
  3232.         # The command line asks for -help, so give it (and exit)
  3233.         # right now.  ([configure] does not process -help)
  3234.         set required true
  3235.     }
  3236.     foreach hook { PrintUsageInfoHook processCmdLineArgsHook
  3237.             processCmdLineArgsAddFlagsHook } {
  3238.         if {[string equal [namespace current] [namespace qualifiers \
  3239.             [namespace which $hook]]]} {
  3240.         set required true
  3241.         } else {
  3242.         proc $hook args {}
  3243.         }
  3244.     }
  3245.     return $required
  3246.     }
  3247.  
  3248.     # Only initialize configurable options from the command line arguments
  3249.     # at package load time if necessary for backward compatibility.  This
  3250.     # lets the tcltest user call [configure] for themselves if they wish.
  3251.     # Traces are established for auto-configuration from the command line
  3252.     # if any configurable options are accessed before the user calls
  3253.     # [configure].
  3254.     if {[LoadTimeCmdLineArgParsingRequired]} {
  3255.     ProcessCmdLineArgs
  3256.     } else {
  3257.     EstablishAutoConfigureTraces
  3258.     }
  3259.  
  3260.     package provide [namespace tail [namespace current]] $Version
  3261. }
  3262.