compile.test
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:14k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # This file contains tests for the files tclCompile.c, tclCompCmds.c
  2. # and tclLiteral.c
  3. #
  4. # This file contains a collection of tests for one or more of the Tcl
  5. # built-in commands.  Sourcing this file into Tcl runs the tests and
  6. # generates output for errors.  No output means no errors were found.
  7. #
  8. # Copyright (c) 1997 by Sun Microsystems, Inc.
  9. # Copyright (c) 1998-1999 by Scriptics Corporation.
  10. #
  11. # See the file "license.terms" for information on usage and redistribution
  12. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13. #
  14. # RCS: @(#) $Id: compile.test,v 1.24.2.3 2004/10/26 20:14:36 dgp Exp $
  15. package require tcltest 2
  16. namespace import -force ::tcltest::*
  17. # The following tests are very incomplete, although the rest of the
  18. # test suite covers this file fairly well.
  19. catch {rename p ""}
  20. catch {namespace delete test_ns_compile}
  21. catch {unset x}
  22. catch {unset y}
  23. catch {unset a}
  24. test compile-1.1 {TclCompileString: look up cmds in proc ns, not current ns} {
  25.     catch {namespace delete test_ns_compile}
  26.     catch {unset x}
  27.     set x 123
  28.     namespace eval test_ns_compile {
  29.         proc set {args} {
  30.             global x
  31.             lappend x test_ns_compile::set
  32.         }
  33.         proc p {} {
  34.             set 0
  35.         }
  36.     }
  37.     list [test_ns_compile::p] [set x]
  38. } {{123 test_ns_compile::set} {123 test_ns_compile::set}}
  39. test compile-1.2 {TclCompileString, error result is reset if TclGetLong determines word isn't an integer} {
  40.     proc p {x} {info commands 3m}
  41.     list [catch {p} msg] $msg
  42. } {1 {wrong # args: should be "p x"}}
  43. test compile-2.1 {TclCompileDollarVar: global scalar name with ::s} {
  44.     catch {unset x}
  45.     set x 123
  46.     list $::x [expr {[lsearch -exact [info globals] x] != 0}]
  47. } {123 1}
  48. test compile-2.2 {TclCompileDollarVar: global scalar name with ::s} {
  49.     catch {unset y}
  50.     proc p {} {
  51.         set ::y 789
  52.         return $::y
  53.     }
  54.     list [p] $::y [expr {[lsearch -exact [info globals] y] != 0}]
  55. } {789 789 1}
  56. test compile-2.3 {TclCompileDollarVar: global array name with ::s} {
  57.     catch {unset a}
  58.     set ::a(1) 2
  59.     list $::a(1) [set ::a($::a(1)) 3] $::a(2) [expr {[lsearch -exact [info globals] a] != 0}]
  60. } {2 3 3 1}
  61. test compile-2.4 {TclCompileDollarVar: global scalar name with ::s} {
  62.     catch {unset a}
  63.     proc p {} {
  64.         set ::a(1) 1
  65.         return $::a($::a(1))
  66.     }
  67.     list [p] $::a(1) [expr {[lsearch -exact [info globals] a] != 0}]
  68. } {1 1 1}
  69. test compile-2.5 {TclCompileDollarVar: global array, called as ${arrName(0)}} {
  70.     catch {unset a}
  71.     proc p {} {
  72. global a
  73.         set a(1) 1
  74.         return ${a(1)}$::a(1)$a(1)
  75.     }
  76.     list [p] $::a(1) [expr {[lsearch -exact [info globals] a] != 0}]
  77. } {111 1 1}
  78. test compile-3.1 {TclCompileCatchCmd: only catch cmds with scalar vars are compiled inline} {
  79.     catch {unset a}
  80.     set a(1) xyzzyx
  81.     proc p {} {
  82.         global a
  83.         catch {set x 123} a(1)
  84.     }
  85.     list [p] $a(1)
  86. } {0 123}
  87. test compile-3.2 {TclCompileCatchCmd: non-local variables} {
  88.     set ::foo 1
  89.     proc catch-test {} {
  90. catch {set x 3} ::foo
  91.     }
  92.     catch-test
  93.     set ::foo
  94. } 3
  95. test compile-3.3 {TclCompileCatchCmd: overagressive compiling [bug 219184]} {
  96.     proc catch-test {str} {
  97. catch [eval $str GOOD]
  98. error BAD
  99.     }
  100.     catch {catch-test error} ::foo
  101.     set ::foo
  102. } {GOOD}
  103. test compile-3.4 {TclCompileCatchCmd: bcc'ed [return] is caught} {
  104.     proc foo {} {
  105. set fail [catch {
  106.     return 1
  107. }] ; # {}
  108. return 2
  109.     }
  110.     foo
  111. } {2}
  112. test compile-3.5 {TclCompileCatchCmd: recover from error, [Bug 705406]} {
  113.     proc foo {} {
  114. catch {
  115.     if {[a]} {
  116. if b {}
  117.     }   
  118. }   
  119.     }
  120.     list [catch foo msg] $msg
  121. } {0 1}
  122. test compile-4.1 {TclCompileForCmd: command substituted test expression} {
  123.     set i 0
  124.     set j 0
  125.     # Should be "forever"
  126.     for {} [expr $i < 3] {} {
  127. set j [incr i]
  128. if {$j > 3} break
  129.     }
  130.     set j
  131. } {4}
  132. test compile-5.1 {TclCompileForeachCmd: exception stack} {
  133.     proc foreach-exception-test {} {
  134. foreach array(index) [list 1 2 3] break
  135. foreach array(index) [list 1 2 3] break
  136. foreach scalar [list 1 2 3] break
  137.     }
  138.     list [catch foreach-exception-test result] $result
  139. } {0 {}}
  140. test compile-5.2 {TclCompileForeachCmd: non-local variables} {
  141.     set ::foo 1
  142.     proc foreach-test {} {
  143. foreach ::foo {1 2 3} {}
  144.     }
  145.     foreach-test
  146.     set ::foo
  147. } 3
  148. test compile-6.1 {TclCompileSetCmd: global scalar names with ::s} {
  149.     catch {unset x}
  150.     catch {unset y}
  151.     set x 123
  152.     proc p {} {
  153.         set ::y 789
  154.         return $::y
  155.     }
  156.     list $::x [expr {[lsearch -exact [info globals] x] != 0}] 
  157.          [p] $::y [expr {[lsearch -exact [info globals] y] != 0}]
  158. } {123 1 789 789 1}
  159. test compile-6.2 {TclCompileSetCmd: global array names with ::s} {
  160.     catch {unset a}
  161.     set ::a(1) 2
  162.     proc p {} {
  163.         set ::a(1) 1
  164.         return $::a($::a(1))
  165.     }
  166.     list $::a(1) [p] [set ::a($::a(1)) 3] $::a(1) [expr {[lsearch -exact [info globals] a] != 0}]
  167. } {2 1 3 3 1}
  168. test compile-6.3 {TclCompileSetCmd: namespace var names with ::s} {
  169.     catch {namespace delete test_ns_compile}
  170.     catch {unset x}
  171.     namespace eval test_ns_compile {
  172.         variable v hello
  173.         variable arr
  174.         set ::x $::test_ns_compile::v
  175. set ::test_ns_compile::arr(1) 123
  176.     }
  177.     list $::x $::test_ns_compile::arr(1)
  178. } {hello 123}
  179. test compile-7.1 {TclCompileWhileCmd: command substituted test expression} {
  180.     set i 0
  181.     set j 0
  182.     # Should be "forever"
  183.     while [expr $i < 3] {
  184. set j [incr i]
  185. if {$j > 3} break
  186.     }
  187.     set j
  188. } {4}
  189. test compile-8.1 {CollectArgInfo: binary data} {
  190.     list [catch "string length 00foo" msg] $msg
  191. } {0 4}
  192. test compile-8.2 {CollectArgInfo: binary data} {
  193.     list [catch "string length foo00" msg] $msg
  194. } {0 4}
  195. test compile-8.3 {CollectArgInfo: handle "]" at end of command properly} {
  196.     set x ]
  197. } {]}
  198. test compile-9.1 {UpdateStringOfByteCode: called for duplicate of compiled empty object} {
  199.     proc p {} {
  200.         set x {}
  201.         eval $x
  202.         append x { }
  203.         eval $x
  204.     }
  205.     p
  206. } {}
  207. test compile-10.1 {BLACKBOX: exception stack overflow} {
  208.     set x {{0}}
  209.     set y 0
  210.     while {$y < 100} {
  211. if !$x {incr y}
  212.     }
  213. } {}
  214. test compile-11.1 {Tcl_Append*: ensure Tcl_ResetResult is used properly} {
  215.     proc p {} {
  216. # shared object - Interp result && Var 'r'
  217. set r [list foobar]
  218. # command that will add error to result
  219. lindex a bogus
  220.     }
  221.     list [catch {p} msg] $msg
  222. } {1 {bad index "bogus": must be integer or end?-integer?}}
  223. test compile-11.2 {Tcl_Append*: ensure Tcl_ResetResult is used properly} {
  224.     proc p {} { set r [list foobar] ; string index a bogus }
  225.     list [catch {p} msg] $msg
  226. } {1 {bad index "bogus": must be integer or end?-integer?}}
  227. test compile-11.3 {Tcl_Append*: ensure Tcl_ResetResult is used properly} {
  228.     proc p {} { set r [list foobar] ; string index a 09 }
  229.     list [catch {p} msg] $msg
  230. } {1 {bad index "09": must be integer or end?-integer? (looks like invalid octal number)}}
  231. test compile-11.4 {Tcl_Append*: ensure Tcl_ResetResult is used properly} {
  232.     proc p {} { set r [list foobar] ; array set var {one two many} }
  233.     list [catch {p} msg] $msg
  234. } {1 {list must have an even number of elements}}
  235. test compile-11.5 {Tcl_Append*: ensure Tcl_ResetResult is used properly} {
  236.     proc p {} { set r [list foobar] ; incr foo }
  237.     list [catch {p} msg] $msg
  238. } {1 {can't read "foo": no such variable}}
  239. test compile-11.6 {Tcl_Append*: ensure Tcl_ResetResult is used properly} {
  240.     proc p {} { set r [list foobar] ; incr foo bogus }
  241.     list [catch {p} msg] $msg
  242. } {1 {expected integer but got "bogus"}}
  243. test compile-11.7 {Tcl_Append*: ensure Tcl_ResetResult is used properly} {
  244.     proc p {} { set r [list foobar] ; expr !a }
  245.     list [catch {p} msg] $msg
  246. } {1 {syntax error in expression "!a": variable references require preceding $}}
  247. test compile-11.8 {Tcl_Append*: ensure Tcl_ResetResult is used properly} {
  248.     proc p {} { set r [list foobar] ; expr {!a} }
  249.     list [catch {p} msg] $msg
  250. } {1 {syntax error in expression "!a": variable references require preceding $}}
  251. test compile-11.9 {Tcl_Append*: ensure Tcl_ResetResult is used properly} {
  252.     proc p {} { set r [list foobar] ; llength "{" }
  253.     list [catch {p} msg] $msg
  254. } {1 {unmatched open brace in list}}
  255. # Special section for tests of tclLiteral.c
  256. # The following tests check for incorrect memory handling in
  257. # TclReleaseLiteral. They are only effective when tcl is compiled 
  258. # with TCL_MEM_DEBUG
  259. #
  260. # Special test for leak on interp delete [Bug 467523]. 
  261. ::tcltest::testConstraint exec [llength [info commands exec]]
  262. ::tcltest::testConstraint memDebug [llength [info commands memory]]
  263. test compile-12.1 {testing literal leak on interp delete} {memDebug} {
  264.     proc getbytes {} {
  265. set lines [split [memory info] "n"]
  266. lindex [lindex $lines 3] 3
  267.     }
  268.     
  269.     set end [getbytes]
  270.     for {set i 0} {$i < 5} {incr i} {
  271. interp create foo 
  272. foo eval { 
  273.     namespace eval bar {}
  274. interp delete foo
  275. set tmp $end
  276. set end [getbytes]
  277.     }    
  278.     rename getbytes {}
  279.     set leak [expr {$end - $tmp}]
  280. } 0
  281. # Special test for a memory error in a preliminary fix of [Bug 467523]. 
  282. # It requires executing a helpfile.  Presumably the child process is
  283. # used because when this test fails, it crashes.
  284. test compile-12.2 {testing error on literal deletion} {memDebug exec} {
  285.     makeFile {
  286. for {set i 0} {$i < 5} {incr i} {
  287.     namespace eval bar {}
  288.     namespace delete bar
  289. }
  290. puts 0
  291.     } source.file
  292.     set res [catch {
  293. exec [interpreter] source.file 
  294.     }]
  295.     catch {removeFile source.file}
  296.     set res
  297. } 0
  298. # Test to catch buffer overrun in TclCompileTokens from buf 530320
  299. test compile-12.3 {check for a buffer overrun} {
  300.     proc crash {} {
  301. puts $array([expr {a+2}])
  302.     }
  303.     list [catch crash msg] $msg
  304. } {1 {syntax error in expression "a+2": variable references require preceding $}}
  305. test compile-12.4 {TclCleanupLiteralTable segfault} {
  306.     # Tcl Bug 1001997
  307.     # Here, we're trying to test a case that causes a crash in
  308.     # TclCleanupLiteralTable.  The conditions that we're trying to
  309.     # establish are:
  310.     # - TclCleanupLiteralTable is attempting to clean up a bytecode
  311.     #   object in the literal table.
  312.     # - The bytecode object in question contains the only reference
  313.     #   to another literal.
  314.     # - The literal in question is in the same hash bucket as the bytecode
  315.     #   object, and immediately follows it in the chain.
  316.     # Since newly registered literals are added at the FRONT of the
  317.     # bucket chains, and since the bytecode object is registered before
  318.     # its literals, this is difficult to achieve.  What we do is:
  319.     #  (a) do a [namespace eval] of a string that's calculated to
  320.     #      hash into the same bucket as a literal that it contains.
  321.     #      In this case, the script and the variable 'bugbug' 
  322.     #      land in the same bucket.
  323.     #  (b) do a [namespace eval] of a string that contains enough
  324.     #      literals to force TclRegisterLiteral to rebuild the global
  325.     #      literal table.  The newly created hash buckets will contain
  326.     #      the literals, IN REVERSE ORDER, thus putting the bytecode
  327.     #      immediately ahead of 'bugbug' and 'bug4345bug'.  The bytecode
  328.     #      object will contain the only references to those two literals.
  329.     #  (c) Delete the interpreter to invoke TclCleanupLiteralTable
  330.     #      and tickle the bug.
  331.     proc foo {} {
  332.     set i [interp create]
  333.     $i eval {
  334.         namespace eval ::w {concat 4649; variable bugbug}
  335.         namespace eval ::w {
  336.             concat x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 
  337.                 x11 x12 x13 x14 x15 x16 x17 x18 x19 x20 
  338.                 x21 x22 x23 x24 x25 x26 x27 x28 x29 x30 
  339.                 x31 x32 X33 X34 X35 X36 X37 X38 X39 X40 
  340.                 x41 x42 x43 x44 x45 x46 x47 x48 x49 x50 
  341.                 x51 x52 x53 x54 x55 x56 x57 x58 x59 x60 
  342.                 x61 x62 x63 x64
  343.             concat y1 y2 y3 y4 y5 y6 y7 y8 y9 y10 
  344.                 y11 y12 y13 y14 y15 y16 y17 y18 y19 y20 
  345.                 y21 y22 y23 y24 y25 y26 y27 y28 y29 y30 
  346.                 y31 y32 Y33 Y34 Y35 Y36 Y37 Y38 Y39 Y40 
  347.                 y41 y42 y43 y44 y45 y46 y47 y48 y49 y50 
  348.                 y51 y52 y53 y54 y55 y56 y57 y58 y59 y60 
  349.                 y61 y62 y63 y64
  350.             concat z1 z2 z3 z4 z5 z6 z7 z8 z9 z10 
  351.                 z11 z12 z13 z14 z15 z16 z17 z18 z19 z20 
  352.                 z21 z22 z23 z24 z25 z26 z27 z28 z29 z30 
  353.                 z31 z32
  354.         }
  355.     }
  356.     interp delete $i; # must not crash
  357.     return ok
  358.     }
  359.     foo
  360. } ok
  361. # Special test for underestimating the maxStackSize required for a
  362. # compiled command. A failure will cause a segfault in the child 
  363. # process.
  364. test compile-13.1 {testing underestimate of maxStackSize in list cmd} {exec} {
  365.     set body {set x [list}
  366.     for {set i 0} {$i < 3000} {incr i} {
  367. append body " $i"
  368.     }
  369.     append body {]; puts OK}
  370.     regsub BODY {proc crash {} {BODY}; crash} $body script
  371.     list [catch {exec [interpreter] << $script} msg] $msg
  372. } {0 OK}
  373. # Special test for compiling tokens from a copy of the source
  374. # string [Bug #599788]
  375. test compile-14.1 {testing errors in element name; segfault?} {} {
  376.      catch {set a([error])} msg1
  377.      catch {set bubba([join $abba $jubba]) $vol} msg2
  378.      list $msg1 $msg2
  379. } {{wrong # args: should be "error message ?errorInfo? ?errorCode?"} {can't read "abba": no such variable}}
  380. # Next 4 tests cover Tcl Bug 633204
  381. test compile-15.1 {proper TCL_RETURN code from [return]} {
  382.     proc p {} {catch return}
  383.     set result [p]
  384.     rename p {}
  385.     set result
  386. } 2
  387. test compile-15.2 {proper TCL_RETURN code from [return]} {
  388.     proc p {} {catch {return foo}}
  389.     set result [p]
  390.     rename p {}
  391.     set result
  392. } 2
  393. test compile-15.3 {proper TCL_RETURN code from [return]} {
  394.     proc p {} {catch {return $::tcl_library}}
  395.     set result [p]
  396.     rename p {}
  397.     set result
  398. } 2
  399. test compile-15.4 {proper TCL_RETURN code from [return]} {
  400.     proc p {} {catch {return [info library]}}
  401.     set result [p]
  402.     rename p {}
  403.     set result
  404. } 2
  405. test compile-15.5 {proper TCL_RETURN code from [return]} {
  406.     proc p {} {catch {set a 1}; return}
  407.     set result [p]
  408.     rename p {}
  409.     set result
  410. } ""
  411. # cleanup
  412. catch {rename p ""}
  413. catch {namespace delete test_ns_compile}
  414. catch {unset x}
  415. catch {unset y}
  416. catch {unset a}
  417. ::tcltest::cleanupTests
  418. return