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

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  incr
  2. #
  3. # This file contains a collection of tests for one or more of the Tcl
  4. # built-in commands.  Sourcing this file into Tcl runs the tests and
  5. # generates output for errors.  No output means no errors were found.
  6. #
  7. # Copyright (c) 1996 Sun Microsystems, Inc.
  8. # Copyright (c) 1998-1999 by Scriptics Corporation.
  9. #
  10. # See the file "license.terms" for information on usage and redistribution
  11. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12. #
  13. # RCS: @(#) $Id: incr.test,v 1.8 2003/02/07 01:07:05 mdejong Exp $
  14. if {[lsearch [namespace children] ::tcltest] == -1} {
  15.     package require tcltest
  16.     namespace import -force ::tcltest::*
  17. }
  18. # Basic "incr" operation.
  19. catch {unset x}
  20. catch {unset i}
  21. test incr-1.1 {TclCompileIncrCmd: missing variable name} {
  22.     list [catch {incr} msg] $msg
  23. } {1 {wrong # args: should be "incr varName ?increment?"}}
  24. test incr-1.2 {TclCompileIncrCmd: simple variable name} {
  25.     set i 10
  26.     list [incr i] $i
  27. } {11 11}
  28. test incr-1.3 {TclCompileIncrCmd: error compiling variable name} {
  29.     set i 10
  30.     catch {incr "i"xxx} msg
  31.     set msg
  32. } {extra characters after close-quote}
  33. test incr-1.4 {TclCompileIncrCmd: simple variable name in quotes} {
  34.     set i 17
  35.     list [incr "i"] $i
  36. } {18 18}
  37. test incr-1.5 {TclCompileIncrCmd: simple variable name in braces} {
  38.     catch {unset {a simple var}}
  39.     set {a simple var} 27
  40.     list [incr {a simple var}] ${a simple var}
  41. } {28 28}
  42. test incr-1.6 {TclCompileIncrCmd: simple array variable name} {
  43.     catch {unset a}
  44.     set a(foo) 37
  45.     list [incr a(foo)] $a(foo)
  46. } {38 38}
  47. test incr-1.7 {TclCompileIncrCmd: non-simple (computed) variable name} {
  48.     set x "i"
  49.     set i 77
  50.     list [incr $x 2] $i
  51. } {79 79}
  52. test incr-1.8 {TclCompileIncrCmd: non-simple (computed) variable name} {
  53.     set x "i"
  54.     set i 77
  55.     list [incr [set x] +2] $i
  56. } {79 79}
  57. test incr-1.9 {TclCompileIncrCmd: increment given} {
  58.     set i 10
  59.     list [incr i +07] $i
  60. } {17 17}
  61. test incr-1.10 {TclCompileIncrCmd: no increment given} {
  62.     set i 10
  63.     list [incr i] $i
  64. } {11 11}
  65. test incr-1.11 {TclCompileIncrCmd: simple global name} {
  66.     proc p {} {
  67.         global i
  68.         set i 54
  69.         incr i
  70.     }
  71.     p
  72. } {55}
  73. test incr-1.12 {TclCompileIncrCmd: simple local name} {
  74.     proc p {} {
  75.         set foo 100
  76.         incr foo
  77.     }
  78.     p
  79. } {101}
  80. test incr-1.13 {TclCompileIncrCmd: simple but new (unknown) local name} {
  81.     proc p {} {
  82.         incr bar
  83.     }
  84.     catch {p} msg
  85.     set msg
  86. } {can't read "bar": no such variable}
  87. test incr-1.14 {TclCompileIncrCmd: simple local name, >255 locals} {
  88.     proc 260locals {} {
  89.         # create 260 locals
  90.         set a0 0; set a1 0; set a2 0; set a3 0; set a4 0
  91.         set a5 0; set a6 0; set a7 0; set a8 0; set a9 0
  92.         set b0 0; set b1 0; set b2 0; set b3 0; set b4 0
  93.         set b5 0; set b6 0; set b7 0; set b8 0; set b9 0
  94.         set c0 0; set c1 0; set c2 0; set c3 0; set c4 0
  95.         set c5 0; set c6 0; set c7 0; set c8 0; set c9 0
  96.         set d0 0; set d1 0; set d2 0; set d3 0; set d4 0
  97.         set d5 0; set d6 0; set d7 0; set d8 0; set d9 0
  98.         set e0 0; set e1 0; set e2 0; set e3 0; set e4 0
  99.         set e5 0; set e6 0; set e7 0; set e8 0; set e9 0
  100.         set f0 0; set f1 0; set f2 0; set f3 0; set f4 0
  101.         set f5 0; set f6 0; set f7 0; set f8 0; set f9 0
  102.         set g0 0; set g1 0; set g2 0; set g3 0; set g4 0
  103.         set g5 0; set g6 0; set g7 0; set g8 0; set g9 0
  104.         set h0 0; set h1 0; set h2 0; set h3 0; set h4 0
  105.         set h5 0; set h6 0; set h7 0; set h8 0; set h9 0
  106.         set i0 0; set i1 0; set i2 0; set i3 0; set i4 0
  107.         set i5 0; set i6 0; set i7 0; set i8 0; set i9 0
  108.         set j0 0; set j1 0; set j2 0; set j3 0; set j4 0
  109.         set j5 0; set j6 0; set j7 0; set j8 0; set j9 0
  110.         set k0 0; set k1 0; set k2 0; set k3 0; set k4 0
  111.         set k5 0; set k6 0; set k7 0; set k8 0; set k9 0
  112.         set l0 0; set l1 0; set l2 0; set l3 0; set l4 0
  113.         set l5 0; set l6 0; set l7 0; set l8 0; set l9 0
  114.         set m0 0; set m1 0; set m2 0; set m3 0; set m4 0
  115.         set m5 0; set m6 0; set m7 0; set m8 0; set m9 0
  116.         set n0 0; set n1 0; set n2 0; set n3 0; set n4 0
  117.         set n5 0; set n6 0; set n7 0; set n8 0; set n9 0
  118.         set o0 0; set o1 0; set o2 0; set o3 0; set o4 0
  119.         set o5 0; set o6 0; set o7 0; set o8 0; set o9 0
  120.         set p0 0; set p1 0; set p2 0; set p3 0; set p4 0
  121.         set p5 0; set p6 0; set p7 0; set p8 0; set p9 0
  122.         set q0 0; set q1 0; set q2 0; set q3 0; set q4 0
  123.         set q5 0; set q6 0; set q7 0; set q8 0; set q9 0
  124.         set r0 0; set r1 0; set r2 0; set r3 0; set r4 0
  125.         set r5 0; set r6 0; set r7 0; set r8 0; set r9 0
  126.         set s0 0; set s1 0; set s2 0; set s3 0; set s4 0
  127.         set s5 0; set s6 0; set s7 0; set s8 0; set s9 0
  128.         set t0 0; set t1 0; set t2 0; set t3 0; set t4 0
  129.         set t5 0; set t6 0; set t7 0; set t8 0; set t9 0
  130.         set u0 0; set u1 0; set u2 0; set u3 0; set u4 0
  131.         set u5 0; set u6 0; set u7 0; set u8 0; set u9 0
  132.         set v0 0; set v1 0; set v2 0; set v3 0; set v4 0
  133.         set v5 0; set v6 0; set v7 0; set v8 0; set v9 0
  134.         set w0 0; set w1 0; set w2 0; set w3 0; set w4 0
  135.         set w5 0; set w6 0; set w7 0; set w8 0; set w9 0
  136.         set x0 0; set x1 0; set x2 0; set x3 0; set x4 0
  137.         set x5 0; set x6 0; set x7 0; set x8 0; set x9 0
  138.         set y0 0; set y1 0; set y2 0; set y3 0; set y4 0
  139.         set y5 0; set y6 0; set y7 0; set y8 0; set y9 0
  140.         set z0 0; set z1 0; set z2 0; set z3 0; set z4 0
  141.         set z5 0; set z6 0; set z7 0; set z8 0; set z9 0
  142.         # now increment the last one (local var index > 255)
  143.         incr z9
  144.     }
  145.     260locals
  146. } {1}
  147. test incr-1.15 {TclCompileIncrCmd: variable is array} {
  148.     catch {unset a}
  149.     set a(foo) 27
  150.     set x [incr a(foo) 11]
  151.     catch {unset a}
  152.     set x
  153. } 38
  154. test incr-1.16 {TclCompileIncrCmd: variable is array, elem substitutions} {
  155.     catch {unset a}
  156.     set i 5
  157.     set a(foo5) 27
  158.     set x [incr a(foo$i) 11]
  159.     catch {unset a}
  160.     set x
  161. } 38
  162. test incr-1.17 {TclCompileIncrCmd: increment given, simple int} {
  163.     set i 5
  164.     incr i 123
  165. } 128
  166. test incr-1.18 {TclCompileIncrCmd: increment given, simple int} {
  167.     set i 5
  168.     incr i -100
  169. } -95
  170. test incr-1.19 {TclCompileIncrCmd: increment given, but erroneous} {
  171.     set i 5
  172.     catch {incr i [set]} msg
  173.     set errorInfo
  174. } {wrong # args: should be "set varName ?newValue?"
  175.     while compiling
  176. "set"
  177.     while compiling
  178. "incr i [set]"}
  179. test incr-1.20 {TclCompileIncrCmd: increment given, in quotes} {
  180.     set i 25
  181.     incr i "-100"
  182. } -75
  183. test incr-1.21 {TclCompileIncrCmd: increment given, in braces} {
  184.     set i 24
  185.     incr i {126}
  186. } 150
  187. test incr-1.22 {TclCompileIncrCmd: increment given, large int} {
  188.     set i 5
  189.     incr i 200000
  190. } 200005
  191. test incr-1.23 {TclCompileIncrCmd: increment given, formatted int != int} {
  192.     set i 25
  193.     incr i 000012345     ;# an octal literal
  194. } 5374
  195. test incr-1.24 {TclCompileIncrCmd: increment given, formatted int != int} {
  196.     set i 25
  197.     catch {incr i 1a} msg
  198.     set msg
  199. } {expected integer but got "1a"}
  200. test incr-1.25 {TclCompileIncrCmd: too many arguments} {
  201.     set i 10
  202.     catch {incr i 10 20} msg
  203.     set msg
  204. } {wrong # args: should be "incr varName ?increment?"}
  205. test incr-1.26 {TclCompileIncrCmd: runtime error, bad variable name} {
  206.     list [catch {incr {"foo}} msg] $msg $errorInfo
  207. } {1 {can't read ""foo": no such variable} {can't read ""foo": no such variable
  208.     (reading value of variable to increment)
  209.     invoked from within
  210. "incr {"foo}"}}
  211. test incr-1.27 {TclCompileIncrCmd: runtime error, bad variable name} {
  212.     list [catch {incr [set]} msg] $msg $errorInfo
  213. } {1 {wrong # args: should be "set varName ?newValue?"} {wrong # args: should be "set varName ?newValue?"
  214.     while compiling
  215. "set"
  216.     while compiling
  217. "incr [set]"}}
  218. test incr-1.28 {TclCompileIncrCmd: runtime error, readonly variable} {
  219.     proc readonly args {error "variable is read-only"}
  220.     set x 123
  221.     trace var x w readonly
  222.     list [catch {incr x 1} msg] $msg $errorInfo
  223. } {1 {can't set "x": variable is read-only} {can't set "x": variable is read-only
  224.     while executing
  225. "incr x 1"}}
  226. catch {unset x}
  227. test incr-1.29 {TclCompileIncrCmd: runtime error, bad variable value} {
  228.     set x "  -  "
  229.     list [catch {incr x 1} msg] $msg
  230. } {1 {expected integer but got "  -  "}}
  231. test incr-1.30 {TclCompileIncrCmd: array var, braced (no subs)} {
  232.     catch {unset array}
  233.     set array($foo) 4
  234.     incr {array($foo)}
  235. } 5
  236.     
  237. # Check "incr" and computed command names.
  238. test incr-2.0 {incr and computed command names} {
  239.     set i 5
  240.     set z incr
  241.     $z i -1
  242.     set i
  243. } 4
  244. catch {unset x}
  245. catch {unset i}
  246. test incr-2.1 {incr command (not compiled): missing variable name} {
  247.     set z incr
  248.     list [catch {$z} msg] $msg
  249. } {1 {wrong # args: should be "incr varName ?increment?"}}
  250. test incr-2.2 {incr command (not compiled): simple variable name} {
  251.     set z incr
  252.     set i 10
  253.     list [$z i] $i
  254. } {11 11}
  255. test incr-2.3 {incr command (not compiled): error compiling variable name} {
  256.     set z incr
  257.     set i 10
  258.     catch {$z "i"xxx} msg
  259.     set msg
  260. } {extra characters after close-quote}
  261. test incr-2.4 {incr command (not compiled): simple variable name in quotes} {
  262.     set z incr
  263.     set i 17
  264.     list [$z "i"] $i
  265. } {18 18}
  266. test incr-2.5 {incr command (not compiled): simple variable name in braces} {
  267.     set z incr
  268.     catch {unset {a simple var}}
  269.     set {a simple var} 27
  270.     list [$z {a simple var}] ${a simple var}
  271. } {28 28}
  272. test incr-2.6 {incr command (not compiled): simple array variable name} {
  273.     set z incr
  274.     catch {unset a}
  275.     set a(foo) 37
  276.     list [$z a(foo)] $a(foo)
  277. } {38 38}
  278. test incr-2.7 {incr command (not compiled): non-simple (computed) variable name} {
  279.     set z incr
  280.     set x "i"
  281.     set i 77
  282.     list [$z $x 2] $i
  283. } {79 79}
  284. test incr-2.8 {incr command (not compiled): non-simple (computed) variable name} {
  285.     set z incr
  286.     set x "i"
  287.     set i 77
  288.     list [$z [set x] +2] $i
  289. } {79 79}
  290. test incr-2.9 {incr command (not compiled): increment given} {
  291.     set z incr
  292.     set i 10
  293.     list [$z i +07] $i
  294. } {17 17}
  295. test incr-2.10 {incr command (not compiled): no increment given} {
  296.     set z incr
  297.     set i 10
  298.     list [$z i] $i
  299. } {11 11}
  300. test incr-2.11 {incr command (not compiled): simple global name} {
  301.     proc p {} {
  302. set z incr
  303.         global i
  304.         set i 54
  305.         $z i
  306.     }
  307.     p
  308. } {55}
  309. test incr-2.12 {incr command (not compiled): simple local name} {
  310.     proc p {} {
  311. set z incr
  312.         set foo 100
  313.         $z foo
  314.     }
  315.     p
  316. } {101}
  317. test incr-2.13 {incr command (not compiled): simple but new (unknown) local name} {
  318.     proc p {} {
  319. set z incr
  320.         $z bar
  321.     }
  322.     catch {p} msg
  323.     set msg
  324. } {can't read "bar": no such variable}
  325. test incr-2.14 {incr command (not compiled): simple local name, >255 locals} {
  326.    proc 260locals {} {
  327.         set z incr
  328.         # create 260 locals
  329.         set a0 0; set a1 0; set a2 0; set a3 0; set a4 0
  330.         set a5 0; set a6 0; set a7 0; set a8 0; set a9 0
  331.         set b0 0; set b1 0; set b2 0; set b3 0; set b4 0
  332.         set b5 0; set b6 0; set b7 0; set b8 0; set b9 0
  333.         set c0 0; set c1 0; set c2 0; set c3 0; set c4 0
  334.         set c5 0; set c6 0; set c7 0; set c8 0; set c9 0
  335.         set d0 0; set d1 0; set d2 0; set d3 0; set d4 0
  336.         set d5 0; set d6 0; set d7 0; set d8 0; set d9 0
  337.         set e0 0; set e1 0; set e2 0; set e3 0; set e4 0
  338.         set e5 0; set e6 0; set e7 0; set e8 0; set e9 0
  339.         set f0 0; set f1 0; set f2 0; set f3 0; set f4 0
  340.         set f5 0; set f6 0; set f7 0; set f8 0; set f9 0
  341.         set g0 0; set g1 0; set g2 0; set g3 0; set g4 0
  342.         set g5 0; set g6 0; set g7 0; set g8 0; set g9 0
  343.         set h0 0; set h1 0; set h2 0; set h3 0; set h4 0
  344.         set h5 0; set h6 0; set h7 0; set h8 0; set h9 0
  345.         set i0 0; set i1 0; set i2 0; set i3 0; set i4 0
  346.         set i5 0; set i6 0; set i7 0; set i8 0; set i9 0
  347.         set j0 0; set j1 0; set j2 0; set j3 0; set j4 0
  348.         set j5 0; set j6 0; set j7 0; set j8 0; set j9 0
  349.         set k0 0; set k1 0; set k2 0; set k3 0; set k4 0
  350.         set k5 0; set k6 0; set k7 0; set k8 0; set k9 0
  351.         set l0 0; set l1 0; set l2 0; set l3 0; set l4 0
  352.         set l5 0; set l6 0; set l7 0; set l8 0; set l9 0
  353.         set m0 0; set m1 0; set m2 0; set m3 0; set m4 0
  354.         set m5 0; set m6 0; set m7 0; set m8 0; set m9 0
  355.         set n0 0; set n1 0; set n2 0; set n3 0; set n4 0
  356.         set n5 0; set n6 0; set n7 0; set n8 0; set n9 0
  357.         set o0 0; set o1 0; set o2 0; set o3 0; set o4 0
  358.         set o5 0; set o6 0; set o7 0; set o8 0; set o9 0
  359.         set p0 0; set p1 0; set p2 0; set p3 0; set p4 0
  360.         set p5 0; set p6 0; set p7 0; set p8 0; set p9 0
  361.         set q0 0; set q1 0; set q2 0; set q3 0; set q4 0
  362.         set q5 0; set q6 0; set q7 0; set q8 0; set q9 0
  363.         set r0 0; set r1 0; set r2 0; set r3 0; set r4 0
  364.         set r5 0; set r6 0; set r7 0; set r8 0; set r9 0
  365.         set s0 0; set s1 0; set s2 0; set s3 0; set s4 0
  366.         set s5 0; set s6 0; set s7 0; set s8 0; set s9 0
  367.         set t0 0; set t1 0; set t2 0; set t3 0; set t4 0
  368.         set t5 0; set t6 0; set t7 0; set t8 0; set t9 0
  369.         set u0 0; set u1 0; set u2 0; set u3 0; set u4 0
  370.         set u5 0; set u6 0; set u7 0; set u8 0; set u9 0
  371.         set v0 0; set v1 0; set v2 0; set v3 0; set v4 0
  372.         set v5 0; set v6 0; set v7 0; set v8 0; set v9 0
  373.         set w0 0; set w1 0; set w2 0; set w3 0; set w4 0
  374.         set w5 0; set w6 0; set w7 0; set w8 0; set w9 0
  375.         set x0 0; set x1 0; set x2 0; set x3 0; set x4 0
  376.         set x5 0; set x6 0; set x7 0; set x8 0; set x9 0
  377.         set y0 0; set y1 0; set y2 0; set y3 0; set y4 0
  378.         set y5 0; set y6 0; set y7 0; set y8 0; set y9 0
  379.         set z0 0; set z1 0; set z2 0; set z3 0; set z4 0
  380.         set z5 0; set z6 0; set z7 0; set z8 0; set z9 0
  381.         # now increment the last one (local var index > 255)
  382.         $z z9
  383.     }
  384.     260locals
  385. } {1}
  386. test incr-2.15 {incr command (not compiled): variable is array} {
  387.     set z incr
  388.     catch {unset a}
  389.     set a(foo) 27
  390.     set x [$z a(foo) 11]
  391.     catch {unset a}
  392.     set x
  393. } 38
  394. test incr-2.16 {incr command (not compiled): variable is array, elem substitutions} {
  395.     set z incr
  396.     catch {unset a}
  397.     set i 5
  398.     set a(foo5) 27
  399.     set x [$z a(foo$i) 11]
  400.     catch {unset a}
  401.     set x
  402. } 38
  403. test incr-2.17 {incr command (not compiled): increment given, simple int} {
  404.     set z incr
  405.     set i 5
  406.     $z i 123
  407. } 128
  408. test incr-2.18 {incr command (not compiled): increment given, simple int} {
  409.     set z incr
  410.     set i 5
  411.     $z i -100
  412. } -95
  413. test incr-2.19 {incr command (not compiled): increment given, but erroneous} {
  414.     set z incr
  415.     set i 5
  416.     catch {$z i [set]} msg
  417.     set errorInfo
  418. } {wrong # args: should be "set varName ?newValue?"
  419.     while compiling
  420. "set"
  421.     while compiling
  422. "$z i [set]"}
  423. test incr-2.20 {incr command (not compiled): increment given, in quotes} {
  424.     set z incr
  425.     set i 25
  426.     $z i "-100"
  427. } -75
  428. test incr-2.21 {incr command (not compiled): increment given, in braces} {
  429.     set z incr
  430.     set i 24
  431.     $z i {126}
  432. } 150
  433. test incr-2.22 {incr command (not compiled): increment given, large int} {
  434.     set z incr
  435.     set i 5
  436.     $z i 200000
  437. } 200005
  438. test incr-2.23 {incr command (not compiled): increment given, formatted int != int} {
  439.     set z incr
  440.     set i 25
  441.     $z i 000012345     ;# an octal literal
  442. } 5374
  443. test incr-2.24 {incr command (not compiled): increment given, formatted int != int} {
  444.     set z incr
  445.     set i 25
  446.     catch {$z i 1a} msg
  447.     set msg
  448. } {expected integer but got "1a"}
  449. test incr-2.25 {incr command (not compiled): too many arguments} {
  450.     set z incr
  451.     set i 10
  452.     catch {$z i 10 20} msg
  453.     set msg
  454. } {wrong # args: should be "incr varName ?increment?"}
  455. test incr-2.26 {incr command (not compiled): runtime error, bad variable name} {
  456.     set z incr
  457.     list [catch {$z {"foo}} msg] $msg $errorInfo
  458. } {1 {can't read ""foo": no such variable} {can't read ""foo": no such variable
  459.     (reading value of variable to increment)
  460.     invoked from within
  461. "$z {"foo}"}}
  462. test incr-2.27 {incr command (not compiled): runtime error, bad variable name} {
  463.     set z incr
  464.     list [catch {$z [set]} msg] $msg $errorInfo
  465. } {1 {wrong # args: should be "set varName ?newValue?"} {wrong # args: should be "set varName ?newValue?"
  466.     while compiling
  467. "set"
  468.     while compiling
  469. "$z [set]"}}
  470. test incr-2.28 {incr command (not compiled): runtime error, readonly variable} {
  471.     set z incr
  472.     proc readonly args {error "variable is read-only"}
  473.     set x 123
  474.     trace var x w readonly
  475.     list [catch {$z x 1} msg] $msg $errorInfo
  476. } {1 {can't set "x": variable is read-only} {can't set "x": variable is read-only
  477.     while executing
  478. "$z x 1"}}
  479. catch {unset x}
  480. test incr-2.29 {incr command (not compiled): runtime error, bad variable value} {
  481.     set z incr
  482.     set x "  -  "
  483.     list [catch {$z x 1} msg] $msg
  484. } {1 {expected integer but got "  -  "}}
  485. test incr-2.30 {incr command (not compiled): bad increment} {
  486.     set z incr
  487.     set x 0
  488.     list [catch {$z x 1a} msg] $msg $errorInfo
  489. } {1 {expected integer but got "1a"} {expected integer but got "1a"
  490.     (reading increment)
  491.     invoked from within
  492. "$z x 1a"}}
  493. test incr-2.31 {incr command (compiled): bad increment} {
  494.     list [catch {incr x 1a} msg] $msg $errorInfo
  495. } {1 {expected integer but got "1a"} {expected integer but got "1a"
  496.     (reading increment)
  497.     invoked from within
  498. "incr x 1a"}}
  499. # cleanup
  500. ::tcltest::cleanupTests
  501. return