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

通讯编程

开发平台:

Visual C++

  1. # This file is a Tcl script to test the tk command.
  2. # It is organized in the standard fashion for Tcl tests.
  3. #
  4. # Copyright (c) 1997 Sun Microsystems, Inc.
  5. # Copyright (c) 1998-1999 by Scriptics Corporation.
  6. # Copyright (c) 2002 ActiveState Corporation.
  7. #
  8. # RCS: @(#) $Id: tk.test,v 1.9 2002/09/02 19:15:38 hobbs Exp $
  9. package require tcltest 2.1
  10. namespace import -force tcltest::configure
  11. namespace import -force tcltest::testsDirectory
  12. configure -testdir [file join [pwd] [file dirname [info script]]]
  13. configure -loadfile [file join [testsDirectory] constraints.tcl]
  14. tcltest::loadTestedCommands
  15. test tk-1.1 {tk command: general} {
  16.     list [catch {tk} msg] $msg
  17. } {1 {wrong # args: should be "tk option ?arg?"}}
  18. test tk-1.2 {tk command: general} {
  19.     list [catch {tk xyz} msg] $msg
  20. } {1 {bad option "xyz": must be appname, caret, scaling, useinputmethods, or windowingsystem}}
  21. set appname [tk appname]
  22. test tk-2.1 {tk command: appname} {
  23.     list [catch {tk appname xyz abc} msg] $msg
  24. } {1 {wrong # args: should be "tk appname ?newName?"}}
  25. test tk-2.2 {tk command: appname} {
  26.     tk appname foobazgarply
  27. } {foobazgarply}
  28. test tk-2.3 {tk command: appname} {unixOnly} {
  29.     tk appname bazfoogarply
  30.     expr {[lsearch -exact [winfo interps] [tk appname]] >= 0}
  31. } {1}
  32. test tk-2.4 {tk command: appname} {
  33.     tk appname $appname
  34. } $appname
  35. tk appname $appname
  36. set scaling [tk scaling]
  37. test tk-3.1 {tk command: scaling} {
  38.     list [catch {tk scaling -displayof} msg] $msg
  39. } {1 {value for "-displayof" missing}}
  40. test tk-3.2 {tk command: scaling: get current} {
  41.     tk scaling 1
  42.     format %.2g [tk scaling]
  43. } 1
  44. test tk-3.3 {tk command: scaling: get current} {
  45.     tk scaling -displayof . 1.25
  46.     format %.3g [tk scaling]
  47. } 1.25
  48. test tk-3.4 {tk command: scaling: set new} {
  49.     list [catch {tk scaling xyz} msg] $msg
  50. } {1 {expected floating-point number but got "xyz"}}
  51. test tk-3.5 {tk command: scaling: set new} {
  52.     list [catch {tk scaling -displayof . xyz} msg] $msg
  53. } {1 {expected floating-point number but got "xyz"}}
  54. test tk-3.6 {tk command: scaling: set new} {
  55.     tk scaling 1
  56.     format %.2g [tk scaling]
  57. } 1
  58. test tk-3.7 {tk command: scaling: set new} {
  59.     tk scaling -displayof . 1.25
  60.     format %.3g [tk scaling]
  61. } 1.25
  62. test tk-3.8 {tk command: scaling: negative} {
  63.     tk scaling -1
  64.     expr {[tk scaling] > 0}
  65. } {1}
  66. test tk-3.9 {tk command: scaling: too big} {
  67.     tk scaling 1000000
  68.     expr {[tk scaling] < 10000}
  69. } {1}    
  70. test tk-3.10 {tk command: scaling: widthmm} {
  71.     tk scaling 1.25
  72.     expr {int((25.4*[winfo screenwidth .])/(72*1.25)+0.5)-[winfo screenmmwidth .]}
  73. } {0}
  74. test tk-3.11 {tk command: scaling: heightmm} {
  75.     tk scaling 1.25
  76.     expr {int((25.4*[winfo screenheight .])/(72*1.25)+0.5)-[winfo screenmmheight .]}
  77. } {0}
  78. tk scaling $scaling
  79. set useim [tk useinputmethods]
  80. test tk-4.1 {tk command: useinputmethods} {
  81.     list [catch {tk useinputmethods -displayof} msg] $msg
  82. } {1 {value for "-displayof" missing}}
  83. test tk-4.2 {tk command: useinputmethods: get current} {
  84.     tk useinputmethods no
  85. } 0
  86. test tk-4.3 {tk command: useinputmethods: get current} {
  87.     tk useinputmethods -displayof .
  88. } 0
  89. test tk-4.4 {tk command: useinputmethods: set new} {
  90.     list [catch {tk useinputmethods xyz} msg] $msg
  91. } {1 {expected boolean value but got "xyz"}}
  92. test tk-4.5 {tk command: useinputmethods: set new} {
  93.     list [catch {tk useinputmethods -displayof . xyz} msg] $msg
  94. } {1 {expected boolean value but got "xyz"}}
  95. test tk-4.6 {tk command: useinputmethods: set new} {unixOnly} {
  96.     # This isn't really a test, but more of a check...
  97.     # The answer is what was given, because we may be on a Unix
  98.     # system that doesn't have the XIM stuff
  99.     if {[tk useinputmethods 1] == 0} {
  100. puts "this wish doesn't have XIM (X Input Methods) support"
  101.     }
  102.     set useim
  103. } $useim
  104. test tk-4.7 {tk command: useinputmethods: set new} {macOrPc} {
  105.     # Mac and Windows don't have X Input Methods, so this should
  106.     # always return 0
  107.     tk useinputmethods 1
  108. } 0
  109. tk useinputmethods $useim
  110. test tk-5.1 {tk caret} {
  111.     list [catch {tk caret} msg] $msg
  112. } {1 {wrong # args: should be "tk caret window ?-x x? ?-y y? ?-height height?"}}
  113. test tk-5.2 {tk caret} {
  114.     list [catch {tk caret bogus} msg] $msg
  115. } {1 {bad window path name "bogus"}}
  116. test tk-5.3 {tk caret} {
  117.     list [catch {tk caret . -foo} msg] $msg
  118. } {1 {bad caret option "-foo": must be -x, -y, or -height}}
  119. test tk-5.4 {tk caret} {
  120.     list [catch {tk caret . -x 0 -y} msg] $msg
  121. } {1 {wrong # args: should be "tk caret window ?-x x? ?-y y? ?-height height?"}}
  122. test tk-5.5 {tk caret} {
  123.     list [catch {tk caret . -x 10 -y 11 -h 12; tk caret .} msg] $msg
  124. } {0 {-height 12 -x 10 -y 11}}
  125. test tk-5.6 {tk caret} {
  126.     list [catch {tk caret . -x 20 -y 25 -h 30; tk caret . -hei} msg] $msg
  127. } {0 30}
  128. # cleanup
  129. ::tcltest::cleanupTests
  130. return