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

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  incr
  2. #
  3. # This file contains the original set of tests for Tcl's incr command.
  4. # Since the incr command is now compiled, a new set of tests covering
  5. # the new implementation is in the file "incr.test". Sourcing this file
  6. # into Tcl runs the tests and generates output for errors.
  7. # No output means no errors were found.
  8. #
  9. # Copyright (c) 1991-1993 The Regents of the University of California.
  10. # Copyright (c) 1994-1996 Sun Microsystems, Inc.
  11. # Copyright (c) 1998-1999 by Scriptics Corporation.
  12. #
  13. # See the file "license.terms" for information on usage and redistribution
  14. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  15. #
  16. # RCS: @(#) $Id: incr-old.test,v 1.6.2.1 2003/03/27 13:11:13 dkf Exp $
  17. if {[lsearch [namespace children] ::tcltest] == -1} {
  18.     package require tcltest
  19.     namespace import -force ::tcltest::*
  20. }
  21. catch {unset x}
  22. test incr-old-1.1 {basic incr operation} {
  23.     set x 23
  24.     list [incr x] $x
  25. } {24 24}
  26. test incr-old-1.2 {basic incr operation} {
  27.     set x 106
  28.     list [incr x -5] $x
  29. } {101 101}
  30. test incr-old-1.3 {basic incr operation} {
  31.     set x "  -106"
  32.     list [incr x 1] $x
  33. } {-105 -105}
  34. test incr-old-1.4 {basic incr operation} {
  35.     set x "  +106"
  36.     list [incr x 1] $x
  37. } {107 107}
  38. test incr-old-2.1 {incr errors} {
  39.     list [catch incr msg] $msg
  40. } {1 {wrong # args: should be "incr varName ?increment?"}}
  41. test incr-old-2.2 {incr errors} {
  42.     list [catch {incr a b c} msg] $msg
  43. } {1 {wrong # args: should be "incr varName ?increment?"}}
  44. test incr-old-2.3 {incr errors} {
  45.     catch {unset x}
  46.     list [catch {incr x} msg] $msg $errorInfo
  47. } {1 {can't read "x": no such variable} {can't read "x": no such variable
  48.     (reading value of variable to increment)
  49.     invoked from within
  50. "incr x"}}
  51. test incr-old-2.4 {incr errors} {
  52.     set x abc
  53.     list [catch {incr x} msg] $msg $errorInfo
  54. } {1 {expected integer but got "abc"} {expected integer but got "abc"
  55.     while executing
  56. "incr x"}}
  57. test incr-old-2.5 {incr errors} {
  58.     set x 123
  59.     list [catch {incr x 1a} msg] $msg $errorInfo
  60. } {1 {expected integer but got "1a"} {expected integer but got "1a"
  61.     (reading increment)
  62.     invoked from within
  63. "incr x 1a"}}
  64. test incr-old-2.6 {incr errors} {
  65.     proc readonly args {error "variable is read-only"}
  66.     set x 123
  67.     trace var x w readonly
  68.     list [catch {incr x 1} msg] $msg $errorInfo
  69. } {1 {can't set "x": variable is read-only} {can't set "x": variable is read-only
  70.     while executing
  71. "incr x 1"}}
  72. catch {unset x}
  73. test incr-old-2.7 {incr errors} {
  74.     set x -
  75.     list [catch {incr x 1} msg] $msg
  76. } {1 {expected integer but got "-"}}
  77. test incr-old-2.8 {incr errors} {
  78.     set x {  -  }
  79.     list [catch {incr x 1} msg] $msg
  80. } {1 {expected integer but got "  -  "}}
  81. test incr-old-2.9 {incr errors} {
  82.     set x +
  83.     list [catch {incr x 1} msg] $msg
  84. } {1 {expected integer but got "+"}}
  85. test incr-old-2.10 {incr errors} {
  86.     set x {20 x}
  87.     list [catch {incr x 1} msg] $msg
  88. } {1 {expected integer but got "20 x"}}
  89. # cleanup
  90. ::tcltest::cleanupTests
  91. return