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

通讯编程

开发平台:

Visual C++

  1. # This file contains tests for the tclVar.c source file. Tests appear in
  2. # the same order as the C code that they test. The set of tests is
  3. # currently incomplete since it currently includes only new tests for
  4. # code changed for the addition of Tcl namespaces. Other variable-
  5. # related tests appear in several other test files including
  6. # namespace.test, set.test, trace.test, and upvar.test.
  7. #
  8. # Sourcing this file into Tcl runs the tests and generates output for
  9. # errors. No output means no errors were found.
  10. #
  11. # Copyright (c) 1997 Sun Microsystems, Inc.
  12. # Copyright (c) 1998-1999 by Scriptics Corporation.
  13. #
  14. # See the file "license.terms" for information on usage and redistribution
  15. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  16. #
  17. # RCS: @(#) $Id: var.test,v 1.20.2.4 2007/03/13 15:59:53 dgp Exp $
  18. #
  19. if {[lsearch [namespace children] ::tcltest] == -1} {
  20.     package require tcltest 2.2
  21.     namespace import -force ::tcltest::*
  22. }
  23. catch {rename p ""}
  24. catch {namespace delete test_ns_var}
  25. catch {unset xx}
  26. catch {unset x}
  27. catch {unset y}
  28. catch {unset i}
  29. catch {unset a}
  30. catch {unset arr}
  31. test var-1.1 {TclLookupVar, Array handling} {
  32.     catch {unset a}
  33.     set x "incr"  ;# force no compilation and runtime call to Tcl_IncrCmd 
  34.     set i 10
  35.     set arr(foo) 37
  36.     list [$x i] $i [$x arr(foo)] $arr(foo)
  37. } {11 11 38 38}
  38. test var-1.2 {TclLookupVar, TCL_GLOBAL_ONLY implies global namespace var} {
  39.     set x "global value"
  40.     namespace eval test_ns_var {
  41.         variable x "namespace value"
  42.         proc p {} {
  43.             global x  ;# specifies TCL_GLOBAL_ONLY to get global x
  44.             return $x
  45.         }
  46.     }
  47.     test_ns_var::p
  48. } {global value}
  49. test var-1.3 {TclLookupVar, TCL_NAMESPACE_ONLY implies namespace var} {
  50.     namespace eval test_ns_var {
  51.         proc q {} {
  52.             variable x  ;# specifies TCL_NAMESPACE_ONLY to get namespace x
  53.             return $x
  54.         }
  55.     }
  56.     test_ns_var::q
  57. } {namespace value}
  58. test var-1.4 {TclLookupVar, no active call frame implies global namespace var} {
  59.     set x
  60. } {global value}
  61. test var-1.5 {TclLookupVar, active call frame pushed for namespace eval implies namespace var} {
  62.     namespace eval test_ns_var {set x}
  63. } {namespace value}
  64. test var-1.6 {TclLookupVar, name starts with :: implies some namespace var} {
  65.     namespace eval test_ns_var {set ::x}
  66. } {global value}
  67. test var-1.7 {TclLookupVar, error finding namespace var} {
  68.     list [catch {set a:::b} msg] $msg
  69. } {1 {can't read "a:::b": no such variable}}
  70. test var-1.8 {TclLookupVar, error finding namespace var} {
  71.     list [catch {set ::foobarfoo} msg] $msg
  72. } {1 {can't read "::foobarfoo": no such variable}}
  73. test var-1.9 {TclLookupVar, create new namespace var} {
  74.     namespace eval test_ns_var {
  75.         set v hello
  76.     }
  77. } {hello}
  78. test var-1.10 {TclLookupVar, create new namespace var} {
  79.     catch {unset y}
  80.     namespace eval test_ns_var {
  81.         set ::y 789
  82.     }
  83.     set y
  84. } {789}
  85. test var-1.11 {TclLookupVar, error creating new namespace var} {
  86.     namespace eval test_ns_var {
  87.         list [catch {set ::test_ns_var::foo::bar 314159} msg] $msg
  88.     }
  89. } {1 {can't set "::test_ns_var::foo::bar": parent namespace doesn't exist}}
  90. test var-1.12 {TclLookupVar, error creating new namespace var} {
  91.     namespace eval test_ns_var {
  92.         list [catch {set ::test_ns_var::foo:: 1997} msg] $msg
  93.     }
  94. } {1 {can't set "::test_ns_var::foo::": parent namespace doesn't exist}}
  95. test var-1.13 {TclLookupVar, new namespace var is created in a particular namespace} {
  96.     catch {unset aNeWnAmEiNnS}
  97.     namespace eval test_ns_var {
  98.         namespace eval test_ns_var2::test_ns_var3 {
  99.             set aNeWnAmEiNnS 77777
  100.         }
  101.         # namespace which builds a name by traversing nsPtr chain to ::
  102.         namespace which -variable test_ns_var2::test_ns_var3::aNeWnAmEiNnS
  103.     }
  104. } {::test_ns_var::test_ns_var2::test_ns_var3::aNeWnAmEiNnS}
  105. test var-1.14 {TclLookupVar, namespace code ignores ":"s in middle and end of var names} {
  106.     namespace eval test_ns_var {
  107.         set : 123
  108.         set v: 456
  109.         set x:y: 789
  110.         list [set :] [set v:] [set x:y:] 
  111.              ${:} ${v:} ${x:y:} 
  112.              [expr {[lsearch [info vars] :] != -1}] 
  113.              [expr {[lsearch [info vars] v:] != -1}] 
  114.              [expr {[lsearch [info vars] x:y:] != -1}]
  115.     }
  116. } {123 456 789 123 456 789 1 1 1}
  117. test var-1.15 {TclLookupVar, resurrect variable via upvar to deleted namespace: compiled code path} {
  118.     namespace eval test_ns_var {
  119. variable foo 2
  120.     }
  121.     proc p {} {
  122. variable ::test_ns_var::foo
  123. lappend result [catch {set foo} msg] $msg
  124.         namespace delete ::test_ns_var
  125. lappend result [catch {set foo 3} msg] $msg
  126. lappend result [catch {set foo(3) 3} msg] $msg
  127.     }
  128.     p
  129. } {0 2 1 {can't set "foo": upvar refers to variable in deleted namespace} 1 {can't set "foo(3)": upvar refers to variable in deleted namespace}}
  130. test var-1.16 {TclLookupVar, resurrect variable via upvar to deleted namespace: uncompiled code path} {
  131.     namespace eval test_ns_var {
  132. variable result
  133.         namespace eval subns {
  134.     variable foo 2
  135. }
  136. upvar 0 subns::foo foo
  137. lappend result [catch {set foo} msg] $msg
  138.         namespace delete subns
  139. lappend result [catch {set foo 3} msg] $msg
  140. lappend result [catch {set foo(3) 3} msg] $msg
  141.         namespace delete [namespace current]
  142. set result
  143.     }
  144. } {0 2 1 {can't set "foo": upvar refers to variable in deleted namespace} 1 {can't set "foo(3)": upvar refers to variable in deleted namespace}}
  145. test var-1.17 {TclLookupVar, resurrect array element via upvar to deleted array: compiled code path} {
  146.     namespace eval test_ns_var {
  147. variable result
  148. proc p {} {
  149.     array set x {1 2 3 4}
  150.     upvar 0 x(1) foo
  151.     lappend result [catch {set foo} msg] $msg
  152.     unset x
  153.     lappend result [catch {set foo 3} msg] $msg
  154. }
  155. set result [p]
  156.         namespace delete [namespace current]
  157. set result
  158.     }
  159. } {0 2 1 {can't set "foo": upvar refers to element in deleted array}}
  160. test var-1.18 {TclLookupVar, resurrect array element via upvar to deleted array: uncompiled code path} {
  161.     namespace eval test_ns_var {
  162. variable result {}
  163. variable x
  164. array set x {1 2 3 4}
  165. upvar 0 x(1) foo
  166. lappend result [catch {set foo} msg] $msg
  167. unset x
  168. lappend result [catch {set foo 3} msg] $msg
  169.         namespace delete [namespace current]
  170. set result
  171.     }
  172. } {0 2 1 {can't set "foo": upvar refers to element in deleted array}}
  173. test var-1.19 {TclLookupVar, right error message when parsing variable name} {
  174.     list [catch {[format set] thisvar(doesntexist)} msg] $msg
  175. } {1 {can't read "thisvar(doesntexist)": no such variable}}
  176. test var-2.1 {Tcl_LappendObjCmd, create var if new} {
  177.     catch {unset x}
  178.     lappend x 1 2
  179. } {1 2}
  180. test var-3.1 {MakeUpvar, TCL_NAMESPACE_ONLY not specified for other var} {
  181.     catch {unset x}
  182.     set x 1997
  183.     proc p {} {
  184.         global x  ;# calls MakeUpvar with TCL_NAMESPACE_ONLY for other var x
  185.         return $x
  186.     }
  187.     p
  188. } {1997}
  189. test var-3.2 {MakeUpvar, other var has TCL_NAMESPACE_ONLY specified} {
  190.     namespace eval test_ns_var {
  191.         catch {unset v}
  192.         variable v 1998
  193.         proc p {} {
  194.             variable v  ;# TCL_NAMESPACE_ONLY specified for other var x
  195.             return $v
  196.         }
  197.         p
  198.     }
  199. } {1998}
  200. if {[info commands testupvar] != {}} {
  201.     test var-3.3 {MakeUpvar, my var has TCL_GLOBAL_ONLY specified} {
  202.         catch {unset a}
  203.         set a 123321
  204.         proc p {} {
  205.             # create global xx linked to global a
  206.     testupvar 1 a {} xx global 
  207. }
  208.         list [p] $xx [set xx 789] $a
  209.     } {{} 123321 789 789}
  210.     test var-3.4 {MakeUpvar, my var has TCL_NAMESPACE_ONLY specified} {
  211.         catch {unset a}
  212.         set a 456
  213.         namespace eval test_ns_var {
  214.             catch {unset ::test_ns_var::vv}
  215.             proc p {} {
  216.                 # create namespace var vv linked to global a
  217.         testupvar 1 a {} vv namespace 
  218.     }
  219.             p
  220.         }
  221.         list $test_ns_var::vv [set test_ns_var::vv 123] $a
  222.     } {456 123 123}
  223. }
  224. test var-3.5 {MakeUpvar, no call frame so my var will be in global :: ns} {
  225.     catch {unset aaaaa}
  226.     catch {unset xxxxx}
  227.     set aaaaa 77777
  228.     upvar #0 aaaaa xxxxx
  229.     list [set xxxxx] [set aaaaa]
  230. } {77777 77777}
  231. test var-3.6 {MakeUpvar, active call frame pushed for namespace eval} {
  232.     catch {unset a}
  233.     set a 121212
  234.     namespace eval test_ns_var {
  235.         upvar ::a vvv
  236.         set vvv
  237.     }
  238. } {121212}
  239. test var-3.7 {MakeUpvar, my var has ::s} {
  240.     catch {unset a}
  241.     set a 789789
  242.     upvar #0 a test_ns_var::lnk
  243.     namespace eval test_ns_var {
  244.         set lnk
  245.     }
  246. } {789789}
  247. test var-3.8 {MakeUpvar, my var already exists in global ns} {
  248.     catch {unset aaaaa}
  249.     catch {unset xxxxx}
  250.     set aaaaa 456654
  251.     set xxxxx hello
  252.     upvar #0 aaaaa xxxxx
  253.     set xxxxx
  254. } {hello}
  255. test var-3.9 {MakeUpvar, my var has invalid ns name} {
  256.     catch {unset aaaaa}
  257.     set aaaaa 789789
  258.     list [catch {upvar #0 aaaaa test_ns_fred::lnk} msg] $msg
  259. } {1 {can't create "test_ns_fred::lnk": parent namespace doesn't exist}}
  260. test var-3.10 {MakeUpvar, } {
  261.     namespace eval {} {
  262. set bar 0
  263. namespace eval foo upvar bar bar
  264. set foo::bar 1
  265. catch {list $bar $foo::bar} msg
  266. unset ::aaaaa
  267. set msg
  268.     }
  269. } {1 1}
  270. if {[info commands testgetvarfullname] != {}} {
  271.     test var-4.1 {Tcl_GetVariableName, global variable} {
  272.         catch {unset a}
  273.         set a 123
  274.         testgetvarfullname a global
  275.     } ::a
  276.     test var-4.2 {Tcl_GetVariableName, namespace variable} {
  277.         namespace eval test_ns_var {
  278.             variable george
  279.             testgetvarfullname george namespace
  280.         }
  281.     } ::test_ns_var::george
  282.     test var-4.3 {Tcl_GetVariableName, variable can't be array element} {
  283.         catch {unset a}
  284.         set a(1) foo
  285.         list [catch {testgetvarfullname a(1) global} msg] $msg
  286.     } {1 {unknown variable "a(1)"}}
  287. }
  288. test var-5.1 {Tcl_GetVariableFullName, global variable} {
  289.     catch {unset a}
  290.     set a bar
  291.     namespace which -variable a
  292. } {::a}
  293. test var-5.2 {Tcl_GetVariableFullName, namespace variable} {
  294.     namespace eval test_ns_var {
  295.         variable martha
  296.         namespace which -variable martha
  297.     }
  298. } {::test_ns_var::martha}
  299. test var-5.3 {Tcl_GetVariableFullName, namespace variable} {
  300.     namespace which -variable test_ns_var::martha
  301. } {::test_ns_var::martha}
  302. test var-6.1 {Tcl_GlobalObjCmd, variable is qualified by a namespace name} {
  303.     namespace eval test_ns_var {
  304.         variable boeing 777
  305.     }
  306.     proc p {} {
  307.         global ::test_ns_var::boeing
  308.         set boeing
  309.     }
  310.     p
  311. } {777}
  312. test var-6.2 {Tcl_GlobalObjCmd, variable is qualified by a namespace name} {
  313.     namespace eval test_ns_var {
  314.         namespace eval test_ns_nested {
  315.             variable java java
  316.         }
  317.         proc p {} {
  318.             global ::test_ns_var::test_ns_nested::java
  319.             set java
  320.         }
  321.     }
  322.     test_ns_var::p
  323. } {java}
  324. test var-6.3 {Tcl_GlobalObjCmd, variable named {} qualified by a namespace name} {
  325.     set ::test_ns_var::test_ns_nested:: 24
  326.     proc p {} {
  327.         global ::test_ns_var::test_ns_nested::
  328.         set {}
  329.     }
  330.     p
  331. } {24}
  332. test var-6.4 {Tcl_GlobalObjCmd, variable name matching :*} {
  333.     # Test for Tcl Bug 480176
  334.     set :v broken
  335.     proc p {} {
  336. global :v
  337. set :v fixed
  338.     }
  339.     p
  340.     set :v
  341. } {fixed}
  342. test var-7.1 {Tcl_VariableObjCmd, create and initialize one new ns variable} {
  343.     catch {namespace delete test_ns_var}
  344.     namespace eval test_ns_var {
  345.         variable one 1
  346.     }
  347.     list [info vars test_ns_var::*] [set test_ns_var::one]
  348. } {::test_ns_var::one 1}
  349. test var-7.2 {Tcl_VariableObjCmd, if new and no value, leave undefined} {
  350.     set two 2222222
  351.     namespace eval test_ns_var {
  352.         variable two
  353.     }
  354.     list [info exists test_ns_var::two] [catch {set test_ns_var::two} msg] $msg
  355. } {0 1 {can't read "test_ns_var::two": no such variable}}
  356. test var-7.3 {Tcl_VariableObjCmd, "define" var already created above} {
  357.     namespace eval test_ns_var {
  358.         variable two 2
  359.     }
  360.     list [lsort [info vars test_ns_var::*]] 
  361.          [namespace eval test_ns_var {set two}]
  362. } [list [lsort {::test_ns_var::two ::test_ns_var::one}] 2]
  363. test var-7.4 {Tcl_VariableObjCmd, list of vars} {
  364.     namespace eval test_ns_var {
  365.         variable three 3 four 4
  366.     }
  367.     list [lsort [info vars test_ns_var::*]] 
  368.          [namespace eval test_ns_var {expr $three+$four}]
  369. } [list [lsort {::test_ns_var::four ::test_ns_var::three ::test_ns_var::two ::test_ns_var::one}] 7]
  370. test var-7.5 {Tcl_VariableObjCmd, value for last var is optional} {
  371.     catch {unset a}
  372.     catch {unset five}
  373.     catch {unset six}
  374.     set a ""
  375.     set five 555
  376.     set six  666
  377.     namespace eval test_ns_var {
  378.         variable five 5 six
  379.         lappend a $five
  380.     }
  381.     lappend a $test_ns_var::five 
  382.         [set test_ns_var::six 6] [set test_ns_var::six] $six
  383.     catch {unset five}
  384.     catch {unset six}
  385.     set a
  386. } {5 5 6 6 666}
  387. catch {unset newvar}
  388. test var-7.6 {Tcl_VariableObjCmd, variable name can be qualified} {
  389.     namespace eval test_ns_var {
  390.         variable ::newvar cheers!
  391.     }
  392.     set newvar
  393. } {cheers!}
  394. catch {unset newvar}
  395. test var-7.7 {Tcl_VariableObjCmd, bad var name} {
  396.     namespace eval test_ns_var {
  397.         list [catch {variable sev:::en 7} msg] $msg
  398.     }
  399. } {1 {can't define "sev:::en": parent namespace doesn't exist}}
  400. test var-7.8 {Tcl_VariableObjCmd, if var already exists and no value is given, leave value unchanged} {
  401.     set a ""
  402.     namespace eval test_ns_var {
  403.         variable eight 8
  404.         lappend a $eight
  405.         variable eight
  406.         lappend a $eight
  407.     }
  408.     set a
  409. } {8 8}
  410. test var-7.9 {Tcl_VariableObjCmd, mark as namespace var so var persists until namespace is destroyed or var is unset} {
  411.     catch {namespace delete test_ns_var2}
  412.     set a ""
  413.     namespace eval test_ns_var2 {
  414.         variable x 123
  415.         variable y
  416.         variable z
  417.     }
  418.     lappend a [lsort [info vars test_ns_var2::*]]
  419.     lappend a [info exists test_ns_var2::x] [info exists test_ns_var2::y] 
  420.         [info exists test_ns_var2::z]
  421.     lappend a [list [catch {set test_ns_var2::y} msg] $msg]
  422.     lappend a [lsort [info vars test_ns_var2::*]]
  423.     lappend a [info exists test_ns_var2::y] [info exists test_ns_var2::z]
  424.     lappend a [set test_ns_var2::y hello]
  425.     lappend a [info exists test_ns_var2::y] [info exists test_ns_var2::z]
  426.     lappend a [list [catch {unset test_ns_var2::y} msg] $msg]
  427.     lappend a [lsort [info vars test_ns_var2::*]]
  428.     lappend a [info exists test_ns_var2::y] [info exists test_ns_var2::z]
  429.     lappend a [list [catch {unset test_ns_var2::z} msg] $msg]
  430.     lappend a [namespace delete test_ns_var2]
  431.     set a
  432. } [list [lsort {::test_ns_var2::x ::test_ns_var2::y ::test_ns_var2::z}] 1 0 0
  433. {1 {can't read "test_ns_var2::y": no such variable}}
  434. [lsort {::test_ns_var2::x ::test_ns_var2::y ::test_ns_var2::z}] 0 0
  435. hello 1 0
  436. {0 {}}
  437. [lsort {::test_ns_var2::x ::test_ns_var2::z}] 0 0
  438. {1 {can't unset "test_ns_var2::z": no such variable}}
  439. {}]
  440. test var-7.10 {Tcl_VariableObjCmd, variable cmd inside proc creates local link var} {
  441.     namespace eval test_ns_var {
  442.         proc p {} {
  443.             variable eight
  444.             list [set eight] [info vars]
  445.         }
  446.         p
  447.     }
  448. } {8 eight}
  449. test var-7.11 {Tcl_VariableObjCmd, variable cmd inside proc creates local link var} {
  450.     proc p {} {   ;# note this proc is at global :: scope
  451.         variable test_ns_var::eight
  452.         list [set eight] [info vars]
  453.     }
  454.     p
  455. } {8 eight}
  456. test var-7.12 {Tcl_VariableObjCmd, variable cmd inside proc creates local link var} {
  457.     namespace eval test_ns_var {
  458.         variable {} {My name is empty}
  459.     }
  460.     proc p {} {   ;# note this proc is at global :: scope
  461.         variable test_ns_var::
  462.         list [set {}] [info vars]
  463.     }
  464.     p
  465. } {{My name is empty} {{}}}
  466. test var-7.13 {Tcl_VariableObjCmd, variable named ":"} {
  467.     namespace eval test_ns_var {
  468.         variable : {My name is ":"}
  469. proc p {} {
  470.     variable :
  471.     list [set :] [info vars]
  472. }
  473. p
  474.     }
  475. } {{My name is ":"} :}
  476. test var-7.14 {Tcl_VariableObjCmd, array element parameter} {
  477.     catch {namespace eval test_ns_var { variable arrayvar(1) }} res
  478.     set res
  479. } "can't define "arrayvar(1)": name refers to an element in an array"
  480. test var-7.15 {Tcl_VariableObjCmd, array element parameter} {
  481.     catch {
  482. namespace eval test_ns_var { 
  483.     variable arrayvar
  484.     set arrayvar(1) x
  485.     variable arrayvar(1) y
  486. }   
  487.     } res
  488.     set res
  489. } "can't define "arrayvar(1)": name refers to an element in an array"
  490. test var-7.16 {Tcl_VariableObjCmd, no args} {
  491.     list [catch {variable} msg] $msg
  492. } {1 {wrong # args: should be "variable ?name value...? name ?value?"}}
  493. test var-7.17 {Tcl_VariableObjCmd, no args} {
  494.     namespace eval test_ns_var {
  495. list [catch {variable} msg] $msg
  496.     }
  497. } {1 {wrong # args: should be "variable ?name value...? name ?value?"}}
  498. test var-8.1 {TclDeleteVars, "unset" traces are called with fully-qualified var names} {
  499.     catch {namespace delete test_ns_var}
  500.     catch {unset a}
  501.     namespace eval test_ns_var {
  502.         variable v 123
  503.         variable info ""
  504.         proc traceUnset {name1 name2 op} {
  505.             variable info
  506.             set info [concat $info [list $name1 $name2 $op]]
  507.         }
  508.         trace var v u [namespace code traceUnset]
  509.     }
  510.     list [unset test_ns_var::v] $test_ns_var::info
  511. } {{} {test_ns_var::v {} u}}
  512. if {[info commands testsetnoerr] == {}} {
  513.     puts "This application hasn't been compiled with the "testsetnoerr""
  514.     puts "command, so I can't test TclSetVar etc."
  515. } else {
  516. test var-9.1 {behaviour of TclGet/SetVar simple get/set} {
  517.     catch {unset u}; catch {unset v}
  518.     list 
  519.        [set u a; testsetnoerr u] 
  520.        [testsetnoerr v b] 
  521.        [testseterr u] 
  522.        [unset v; testseterr v b]
  523. } [list {before get a} {before set b} {before get a} {before set b}]
  524. test var-9.2 {behaviour of TclGet/SetVar namespace get/set} {
  525.     catch {namespace delete ns}
  526.     namespace eval ns {variable u a; variable v}
  527.     list 
  528.        [testsetnoerr ns::u] 
  529.        [testsetnoerr ns::v b] 
  530.        [testseterr ns::u] 
  531.        [unset ns::v; testseterr ns::v b]
  532. } [list {before get a} {before set b} {before get a} {before set b}]
  533. test var-9.3 {behaviour of TclGetVar no variable} {
  534.     catch {unset u}
  535.     list 
  536.        [catch {testsetnoerr u} res] $res 
  537.        [catch {testseterr u} res] $res
  538. } {1 {before get} 1 {can't read "u": no such variable}}
  539. test var-9.4 {behaviour of TclGetVar no namespace variable} {
  540.     catch {namespace delete ns}
  541.     namespace eval ns {}
  542.     list 
  543.        [catch {testsetnoerr ns::w} res] $res 
  544.        [catch {testseterr ns::w} res] $res
  545. } {1 {before get} 1 {can't read "ns::w": no such variable}}
  546. test var-9.5 {behaviour of TclGetVar no namespace} {
  547.     catch {namespace delete ns}
  548.     list 
  549.        [catch {testsetnoerr ns::u} res] $res 
  550.        [catch {testseterr ns::v} res] $res
  551. } {1 {before get} 1 {can't read "ns::v": no such variable}}
  552. test var-9.6 {behaviour of TclSetVar no namespace} {
  553.     catch {namespace delete ns}
  554.     list 
  555.        [catch {testsetnoerr ns::v 1} res] $res 
  556.        [catch {testseterr ns::v 1} res] $res
  557. } {1 {before set} 1 {can't set "ns::v": parent namespace doesn't exist}}
  558. test var-9.7 {behaviour of TclGetVar array variable} {
  559.     catch {unset arr}
  560.     set arr(1) 1;
  561.     list 
  562.        [catch {testsetnoerr arr} res] $res 
  563.        [catch {testseterr arr} res] $res
  564. } {1 {before get} 1 {can't read "arr": variable is array}}
  565. test var-9.8 {behaviour of TclSetVar array variable} {
  566.     catch {unset arr}
  567.     set arr(1) 1
  568.     list 
  569.        [catch {testsetnoerr arr 2} res] $res 
  570.        [catch {testseterr arr 2} res] $res
  571. } {1 {before set} 1 {can't set "arr": variable is array}}
  572. test var-9.9 {behaviour of TclGetVar read trace success} {
  573.     proc resetvar {val name elem op} {upvar 1 $name v; set v $val}
  574.     catch {unset u}; catch {unset v}
  575.     set u 10
  576.     trace var u r [list resetvar 1]
  577.     trace var v r [list resetvar 2]
  578.     list 
  579.        [testsetnoerr u] 
  580.        [testseterr v]
  581. } {{before get 1} {before get 2}}
  582. test var-9.10 {behaviour of TclGetVar read trace error} {
  583.     proc writeonly args {error "write-only"}
  584.     set v 456
  585.     trace var v r writeonly
  586.     list 
  587.        [catch {testsetnoerr v} msg] $msg 
  588.        [catch {testseterr v} msg] $msg
  589. } {1 {before get} 1 {can't read "v": write-only}}
  590. test var-9.11 {behaviour of TclSetVar write trace success} {
  591.     proc doubleval {name elem op} {upvar 1 $name v; set v [expr {2 * $v}]}
  592.     catch {unset u}; catch {unset v}
  593.     set v 1
  594.     trace var v w doubleval
  595.     trace var u w doubleval
  596.     list 
  597.        [testsetnoerr u 2] 
  598.        [testseterr v 3]
  599. } {{before set 4} {before set 6}}
  600. test var-9.12 {behaviour of TclSetVar write trace error} {
  601.     proc readonly args {error "read-only"}
  602.     set v 456
  603.     trace var v w readonly
  604.     list 
  605.        [catch {testsetnoerr v 2} msg] $msg $v 
  606.        [catch {testseterr v 3} msg] $msg $v
  607. } {1 {before set} 2 1 {can't set "v": read-only} 3}
  608. }
  609. test var-10.1 {can't nest arrays with array set} {
  610.    catch {unset arr}
  611.    list [catch {array set arr(x) {a 1 b 2}} res] $res
  612. } {1 {can't set "arr(x)": variable isn't array}}
  613. test var-10.2 {can't nest arrays with array set} {
  614.    catch {unset arr}
  615.    list [catch {array set arr(x) {}} res] $res
  616. } {1 {can't set "arr(x)": variable isn't array}}
  617. test var-11.1 {array unset} {
  618.     catch {unset a}
  619.     array set a { 1,1 a 1,2 b 2,1 c 2,3 d }
  620.     array unset a 1,*
  621.     lsort -dict [array names a]
  622. } {2,1 2,3}
  623. test var-11.2 {array unset} {
  624.     catch {unset a}
  625.     array set a { 1,1 a 1,2 b }
  626.     array unset a
  627.     array exists a
  628. } 0
  629. test var-11.3 {array unset errors} {
  630.     catch {unset a}
  631.     array set a { 1,1 a 1,2 b }
  632.     list [catch {array unset a pattern too} msg] $msg
  633. } {1 {wrong # args: should be "array unset arrayName ?pattern?"}}
  634. test var-12.1 {TclFindCompiledLocals, {} array name} {
  635.     namespace eval n {
  636. proc p {} {
  637.     variable {}
  638.     set (0) 0
  639.     set (1) 1
  640.     set n 2
  641.     set ($n) 2
  642.     set ($n,foo) 2
  643. }
  644. p
  645. lsort -dictionary [array names {}]
  646.     }
  647. } {0 1 2 2,foo}
  648. test var-13.1 {Tcl_UnsetVar2, unset array with trace set on element} {
  649.     catch {unset t}
  650.     proc foo {var ind op} {
  651. global t
  652. set foo bar
  653.     }
  654.     namespace eval :: {
  655. set t(1) 1
  656. trace variable t(1) u foo
  657. unset t
  658.     }
  659.     set x "If you see this, it worked"
  660. } "If you see this, it worked"
  661. test var-14.1 {array names syntax} -body {
  662.     array names foo bar baz snafu
  663. } -returnCodes 1 -match glob -result *
  664. test var-15.1 {segfault in [unset], [Bug 735335]} {
  665.     proc A { name } {
  666. upvar $name var
  667. set var $name
  668.     }
  669.     #
  670.     # Note that the variable name has to be 
  671.     # unused previously for the segfault to
  672.     # be triggered.
  673.     #
  674.     namespace eval test A useSomeUnlikelyNameHere
  675.     namespace eval test unset useSomeUnlikelyNameHere
  676. } {}
  677. test var-16.1 {CallVarTraces: save/restore interp error state: 1038021} {
  678.     trace add variable errorCode write { ;#}
  679.     catch {error foo bar baz}
  680.     trace remove variable errorCode write { ;#}
  681.     set errorInfo
  682. } bar
  683. test var-17.1 {TclArraySet [Bug 1669489]} -setup {
  684.     unset -nocomplain ::a
  685. } -body {
  686.     namespace eval :: {
  687.         set elements {1 2 3 4}
  688.         trace add variable a write {string length $elements ;#}
  689.         array set a $elements
  690.     }
  691. } -cleanup {
  692.     unset -nocomplain ::a ::elements
  693. } -result {}
  694. catch {namespace delete ns}
  695. catch {unset arr}
  696. catch {unset v}
  697. catch {rename p ""}
  698. catch {namespace delete test_ns_var}
  699. catch {namespace delete test_ns_var2}
  700. catch {unset xx}
  701. catch {unset x}
  702. catch {unset y}
  703. catch {unset i}
  704. catch {unset a}
  705. catch {unset xxxxx}
  706. catch {unset aaaaa}
  707. # cleanup
  708. ::tcltest::cleanupTests
  709. return