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

通讯编程

开发平台:

Visual C++

  1. # This file is a Tcl script to test out the the procedures in file
  2. # tkIndexObj.c, which implement indexed table lookups.  The tests here
  3. # are organized in the standard fashion for Tcl tests.
  4. #
  5. # Copyright (c) 1997 Sun Microsystems, Inc.
  6. # Copyright (c) 1998-1999 by Scriptics Corporation.
  7. #
  8. # See the file "license.terms" for information on usage and redistribution
  9. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10. #
  11. # RCS: @(#) $Id: indexObj.test,v 1.7.18.4 2006/04/06 18:57:30 dgp Exp $
  12. if {[lsearch [namespace children] ::tcltest] == -1} {
  13.     package require tcltest
  14.     namespace import -force ::tcltest::*
  15. }
  16. if {[info commands testindexobj] == {}} {
  17.     puts "This application hasn't been compiled with the "testindexobj""
  18.     puts "command, so I can't test Tcl_GetIndexFromObj etc."
  19.     ::tcltest::cleanupTests
  20.     return 
  21. }
  22. test indexObj-1.1 {exact match} {
  23.     testindexobj 1 1 xyz abc def xyz alm
  24. } {2}
  25. test indexObj-1.2 {exact match} {
  26.     testindexobj 1 1 abc abc def xyz alm
  27. } {0}
  28. test indexObj-1.3 {exact match} {
  29.     testindexobj 1 1 alm abc def xyz alm
  30. } {3}
  31. test indexObj-1.4 {unique abbreviation} {
  32.     testindexobj 1 1 xy abc def xalb xyz alm
  33. } {3}
  34. test indexObj-1.5 {multiple abbreviations and exact match} {
  35.     testindexobj 1 1 x abc def xalb xyz alm x
  36. } {5}
  37. test indexObj-1.6 {forced exact match} {
  38.     testindexobj 1 0 xy abc def xalb xy alm
  39. } {3}
  40. test indexObj-1.7 {forced exact match} {
  41.     testindexobj 1 0 x abc def xalb xyz alm x
  42. } {5}
  43. test indexObj-1.8 {exact match of empty values} {
  44.     testindexobj 1 1 {} a aa aaa {} b bb bbb
  45. } 3
  46. test indexObj-1.9 {exact match of empty values} {
  47.     testindexobj 1 0 {} a aa aaa {} b bb bbb
  48. } 3
  49. test indexObj-2.1 {no match} {
  50.     list [catch {testindexobj 1 1 dddd abc def xalb xyz alm x} msg] $msg
  51. } {1 {bad token "dddd": must be abc, def, xalb, xyz, alm, or x}}
  52. test indexObj-2.2 {no match} {
  53.     list [catch {testindexobj 1 1 dddd abc} msg] $msg
  54. } {1 {bad token "dddd": must be abc}}
  55. test indexObj-2.3 {no match: no abbreviations} {
  56.     list [catch {testindexobj 1 0 xy abc def xalb xyz alm} msg] $msg
  57. } {1 {bad token "xy": must be abc, def, xalb, xyz, or alm}}
  58. test indexObj-2.4 {ambiguous value} {
  59.     list [catch {testindexobj 1 1 d dumb daughter a c} msg] $msg
  60. } {1 {ambiguous token "d": must be dumb, daughter, a, or c}}
  61. test indexObj-2.5 {omit error message} {
  62.     list [catch {testindexobj 0 1 d x} msg] $msg
  63. } {1 {}}
  64. test indexObj-2.6 {TCL_EXACT => no "ambiguous" error message} {
  65.     list [catch {testindexobj 1 0 d dumb daughter a c} msg] $msg
  66. } {1 {bad token "d": must be dumb, daughter, a, or c}}
  67. test indexObj-2.7 {exact match of empty values} {
  68.     list [catch {testindexobj 1 1 {} a b c} msg] $msg
  69. } {1 {ambiguous token "": must be a, b, or c}}
  70. test indexObj-2.8 {exact match of empty values: singleton case} {
  71.     list [catch {testindexobj 1 0 {} a} msg] $msg
  72. } {1 {bad token "": must be a}}
  73. test indexObj-2.9 {non-exact match of empty values: singleton case} {
  74.     # NOTE this is a special case.  Although the empty string is a
  75.     # unique prefix, we have an established history of rejecting
  76.     # empty lookup keys, requiring any unique prefix match to have
  77.     # at least one character.
  78.     list [catch {testindexobj 1 1 {} a} msg] $msg
  79. } {1 {bad token "": must be a}}
  80. test indexObj-3.1 {cache result to skip next lookup} {
  81.     testindexobj check 42
  82. } {42}
  83. test indexObj-4.1 {free old internal representation} {
  84.     set x {a b}
  85.     lindex $x 1
  86.     testindexobj 1 1 $x abc def {a b} zzz
  87. } {2}
  88. test indexObj-5.1 {Tcl_WrongNumArgs} {
  89.     testwrongnumargs 1 "?option?" mycmd
  90. } "wrong # args: should be "mycmd ?option?""
  91. test indexObj-5.2 {Tcl_WrongNumArgs} {
  92.     testwrongnumargs 2 "bar" mycmd foo
  93. } "wrong # args: should be "mycmd foo bar""
  94. test indexObj-5.3 {Tcl_WrongNumArgs} {
  95.     testwrongnumargs 0 "bar" mycmd foo
  96. } "wrong # args: should be "bar""
  97. test indexObj-5.4 {Tcl_WrongNumArgs} {
  98.     testwrongnumargs 0 "" mycmd foo
  99. } "wrong # args: should be """
  100. test indexObj-5.5 {Tcl_WrongNumArgs} {
  101.     testwrongnumargs 1 "" mycmd foo
  102. } "wrong # args: should be "mycmd""
  103. test indexObj-5.6 {Tcl_WrongNumArgs} {
  104.     testwrongnumargs 2 "" mycmd foo
  105. } "wrong # args: should be "mycmd foo""
  106. test indexObj-6.1 {Tcl_GetIndexFromObjStruct} {
  107.     set x a
  108.     testgetindexfromobjstruct $x 0
  109. } "wrong # args: should be "testgetindexfromobjstruct a 0""
  110. test indexObj-6.2 {Tcl_GetIndexFromObjStruct} {
  111.     set x a
  112.     testgetindexfromobjstruct $x 0
  113.     testgetindexfromobjstruct $x 0
  114. } "wrong # args: should be "testgetindexfromobjstruct a 0""
  115. test indexObj-6.3 {Tcl_GetIndexFromObjStruct} {
  116.     set x c
  117.     testgetindexfromobjstruct $x 1
  118. } "wrong # args: should be "testgetindexfromobjstruct c 1""
  119. test indexObj-6.4 {Tcl_GetIndexFromObjStruct} {
  120.     set x c
  121.     testgetindexfromobjstruct $x 1
  122.     testgetindexfromobjstruct $x 1
  123. } "wrong # args: should be "testgetindexfromobjstruct c 1""
  124. # cleanup
  125. ::tcltest::cleanupTests
  126. return