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

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  none
  2. #
  3. # This file contains a collection of tests for the procedures in the
  4. # file tclGet.c.  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) 1995-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: get.test,v 1.8 2002/11/19 02:34:50 hobbs Exp $
  14. if {[lsearch [namespace children] ::tcltest] == -1} {
  15.     package require tcltest
  16.     namespace import -force ::tcltest::*
  17. }
  18. test get-1.1 {Tcl_GetInt procedure} {
  19.     set x 44
  20.     incr x {    22}
  21. } {66}
  22. test get-1.2 {Tcl_GetInt procedure} {
  23.     set x 44
  24.     incr x -3
  25. } {41}
  26. test get-1.3 {Tcl_GetInt procedure} {
  27.     set x 44
  28.     incr x +8
  29. } {52}
  30. test get-1.4 {Tcl_GetInt procedure} {
  31.     set x 44
  32.     list [catch {incr x foo} msg] $msg
  33. } {1 {expected integer but got "foo"}}
  34. test get-1.5 {Tcl_GetInt procedure} {
  35.     set x 44
  36.     list [catch {incr x {16  }} msg] $msg
  37. } {0 60}
  38. test get-1.6 {Tcl_GetInt procedure} {
  39.     set x 44
  40.     list [catch {incr x {16  x}} msg] $msg
  41. } {1 {expected integer but got "16  x"}}
  42. # The following tests are non-portable because they depend on
  43. # word size.
  44. if {wide(0x80000000) > wide(0)} {
  45.     test get-1.7 {Tcl_GetInt procedure} {
  46. set x 44
  47. list [catch {eval incr x 18446744073709551616} msg] $msg $errorCode
  48.     } {1 {integer value too large to represent} {ARITH IOVERFLOW {integer value too large to represent}}}
  49.     test get-1.8 {Tcl_GetInt procedure} {
  50. set x 0
  51. list [catch {incr x 18446744073709551614} msg] $msg
  52.     } {0 -2}
  53.     test get-1.9 {Tcl_GetInt procedure} {
  54. set x 0
  55. list [catch {incr x +18446744073709551614} msg] $msg
  56.     } {0 -2}
  57.     test get-1.10 {Tcl_GetInt procedure} {
  58. set x 0
  59. list [catch {incr x -18446744073709551614} msg] $msg
  60.     } {0 2}
  61. } else {
  62.     test get-1.11 {Tcl_GetInt procedure} {
  63. set x 44
  64. list [catch {incr x 4294967296} msg] $msg $errorCode
  65.     } {1 {integer value too large to represent} {ARITH IOVERFLOW {integer value too large to represent}}}
  66.     test get-1.12 {Tcl_GetInt procedure} {
  67. set x 0
  68. list [catch {incr x 4294967294} msg] $msg
  69.     } {0 -2}
  70.     test get-1.13 {Tcl_GetInt procedure} {
  71. set x 0
  72. list [catch {incr x +4294967294} msg] $msg
  73.     } {0 -2}
  74.     test get-1.14 {Tcl_GetInt procedure} {
  75. set x 0
  76. list [catch {incr x -4294967294} msg] $msg
  77.     } {0 2}
  78. }
  79. test get-2.1 {Tcl_GetInt procedure} {
  80.     format %g 1.23
  81. } {1.23}
  82. test get-2.2 {Tcl_GetInt procedure} {
  83.     format %g {   1.23  }
  84. } {1.23}
  85. test get-2.3 {Tcl_GetInt procedure} {
  86.     list [catch {format %g clip} msg] $msg
  87. } {1 {expected floating-point number but got "clip"}}
  88. test get-2.4 {Tcl_GetInt procedure} {nonPortable} {
  89.     list [catch {format %g .000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001} msg] $msg $errorCode
  90. } {1 {floating-point value too small to represent} {ARITH UNDERFLOW {floating-point value too small to represent}}}
  91. test get-3.1 {Tcl_GetInt(FromObj), bad numbers} {
  92.     # SF bug #634856
  93.     set result ""
  94.     set numbers [list 1 +1 ++1 +-1 -+1 -1 --1 "- +1" "+12345678987654321" "++12345678987654321"]
  95.     foreach num $numbers {
  96. lappend result [catch {format %ld $num} msg] $msg
  97.     }
  98.     set result
  99. } {0 1 0 1 1 {expected integer but got "++1"} 1 {expected integer but got "+-1"} 1 {expected integer but got "-+1"} 0 -1 1 {expected integer but got "--1"} 1 {expected integer but got "- +1"} 0 12345678987654321 1 {expected integer but got "++12345678987654321"}}
  100. test get-3.2 {Tcl_GetDouble(FromObj), bad numbers} {
  101.     set result ""
  102.     set numbers [list 1.0 +1.0 ++1.0 +-1.0 -+1.0 -1.0 --1.0 "- +1.0"]
  103.     foreach num $numbers {
  104. lappend result [catch {format %g $num} msg] $msg
  105.     }
  106.     set result
  107. } {0 1 0 1 1 {expected floating-point number but got "++1.0"} 1 {expected floating-point number but got "+-1.0"} 1 {expected floating-point number but got "-+1.0"} 0 -1 1 {expected floating-point number but got "--1.0"} 1 {expected floating-point number but got "- +1.0"}}
  108. # cleanup
  109. ::tcltest::cleanupTests
  110. return