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

通讯编程

开发平台:

Visual C++

  1. # This file is a Tcl script to test the visual- and colormap-handling
  2. # procedures in the file tkVisual.c.  It is organized in the standard
  3. # fashion for Tcl tests.
  4. #
  5. # Copyright (c) 1994 The Regents of the University of California.
  6. # Copyright (c) 1994-1995 Sun Microsystems, Inc.
  7. # Copyright (c) 1998-1999 by Scriptics Corporation.
  8. # All rights reserved.
  9. #
  10. # RCS: @(#) $Id: visual.test,v 1.6 2002/07/14 05:48:46 dgp Exp $
  11. package require tcltest 2.1
  12. namespace import -force tcltest::configure
  13. namespace import -force tcltest::testsDirectory
  14. configure -testdir [file join [pwd] [file dirname [info script]]]
  15. configure -loadfile [file join [testsDirectory] constraints.tcl]
  16. tcltest::loadTestedCommands
  17. update
  18. # eatColors --
  19. # Creates a toplevel window and allocates enough colors in it to
  20. # use up all the slots in the colormap.
  21. #
  22. # Arguments:
  23. # w - Name of toplevel window to create.
  24. proc eatColors {w} {
  25.     catch {destroy $w}
  26.     toplevel $w
  27.     wm geom $w +0+0
  28.     canvas $w.c -width 400 -height 200 -bd 0
  29.     pack $w.c
  30.     for {set y 0} {$y < 8} {incr y} {
  31. for {set x 0} {$x < 40} {incr x} {
  32.     set color [format #%02x%02x%02x [expr $x*6] [expr $y*30] 0]
  33.     $w.c create rectangle [expr 10*$x] [expr 20*$y] 
  34.     [expr 10*$x + 10] [expr 20*$y + 20] -outline {} 
  35.     -fill $color
  36. }
  37.     }
  38.     update
  39. }
  40. # colorsFree --
  41. #
  42. # Returns 1 if there appear to be free colormap entries in a window,
  43. # 0 otherwise.
  44. #
  45. # Arguments:
  46. # w - Name of window in which to check.
  47. # red, green, blue - Intensities to use in a trial color allocation
  48. # to see if there are colormap entries free.
  49. proc colorsFree {w {red 31} {green 245} {blue 192}} {
  50.     set vals [winfo rgb $w [format #%02x%02x%02x $red $green $blue]]
  51.     expr ([lindex $vals 0]/256 == $red) && ([lindex $vals 1]/256 == $green) 
  52.     && ([lindex $vals 2]/256 == $blue)
  53. }
  54. # If more than one visual type is available for the screen, pick one
  55. # that is *not* the default.
  56. set default "[winfo visual .] [winfo depth .]"
  57. set avail [winfo visualsavailable .]
  58. set other {}
  59. if {[llength $avail] > 1} {
  60.     foreach visual $avail {
  61. if {$visual != $default} {
  62.     set other $visual
  63.     break
  64. }
  65.     }
  66. }
  67. test visual-1.1 {Tk_GetVisual, copying from other window} {
  68.     list [catch {toplevel .t -visual .foo.bar} msg] $msg
  69. } {1 {bad window path name ".foo.bar"}}
  70. if {$other != ""} {
  71.     test visual-1.2 {Tk_GetVisual, copying from other window} {nonPortable} {
  72. catch {destroy .t1}
  73. catch {destroy .t2}
  74. toplevel .t1 -width 250 -height 100 -visual $other
  75. wm geom .t1 +0+0
  76. toplevel .t2 -width 200 -height 80 -visual .t1
  77. wm geom .t2 +5+5
  78. concat "[winfo visual .t2] [winfo depth .t2]"
  79.     } $other
  80.     test visual-1.3 {Tk_GetVisual, copying from other window} {
  81. catch {destroy .t1}
  82. catch {destroy .t2}
  83. toplevel .t1 -width 250 -height 100 -visual $other
  84. wm geom .t1 +0+0
  85. toplevel .t2 -width 200 -height 80 -visual .
  86. wm geom .t2 +5+5
  87. concat "[winfo visual .t2] [winfo depth .t2]"
  88.     } $default
  89.     # Make sure reference count is incremented when copying visual (the
  90.     # following test will cause the colormap to be freed prematurely if
  91.     # the reference count isn't incremented).
  92.     test visual-1.4 {Tk_GetVisual, colormap reference count} {
  93. catch {destroy .t1}
  94. catch {destroy .t2}
  95. toplevel .t1 -width 250 -height 100 -visual $other
  96. wm geom .t1 +0+0
  97. set result [list [catch {toplevel .t2 -gorp 80 -visual .t1} msg] $msg]
  98. update
  99. set result
  100.     } {1 {unknown option "-gorp"}}
  101. }
  102. test visual-1.5 {Tk_GetVisual, default colormap} {
  103.     catch {destroy .t1}
  104.     toplevel .t1 -width 250 -height 100 -visual default
  105.     wm geometry .t1 +0+0
  106.     update
  107.     concat "[winfo visual .t1] [winfo depth .t1]"
  108. } $default
  109. set i 1
  110. foreach visual $avail {
  111.     test visual-2.$i {Tk_GetVisual, different visual types} {nonPortable} {
  112. catch {destroy .t1}
  113. toplevel .t1 -width 250 -height 100 -visual $visual
  114. wm geometry .t1 +0+0
  115. update
  116. concat "[winfo visual .t1] [winfo depth .t1]"
  117.     } $visual
  118.     incr i
  119. }
  120. test visual-3.1 {Tk_GetVisual, parsing visual string} {
  121.     catch {destroy .t1}
  122.     toplevel .t1 -width 250 -height 100 
  123.     -visual "[winfo visual .][winfo depth .]"
  124.     wm geometry .t1 +0+0
  125.     update
  126.     concat "[winfo visual .t1] [winfo depth .t1]"
  127. } $default
  128. test visual-3.2 {Tk_GetVisual, parsing visual string} {
  129.     catch {destroy .t1}
  130.     list [catch {
  131. toplevel .t1 -width 250 -height 100 -visual goop20
  132. wm geometry .t1 +0+0
  133.     } msg] $msg
  134. } {1 {unknown or ambiguous visual name "goop20": class must be best, directcolor, grayscale, greyscale, pseudocolor, staticcolor, staticgray, staticgrey, truecolor, or default}}
  135. test visual-3.3 {Tk_GetVisual, parsing visual string} {
  136.     catch {destroy .t1}
  137.     list [catch {
  138. toplevel .t1 -width 250 -height 100 -visual d
  139. wm geometry .t1 +0+0
  140.     } msg] $msg
  141. } {1 {unknown or ambiguous visual name "d": class must be best, directcolor, grayscale, greyscale, pseudocolor, staticcolor, staticgray, staticgrey, truecolor, or default}}
  142. test visual-3.4 {Tk_GetVisual, parsing visual string} {
  143.     catch {destroy .t1}
  144.     list [catch {
  145. toplevel .t1 -width 250 -height 100 -visual static
  146. wm geometry .t1 +0+0
  147.     } msg] $msg
  148. } {1 {unknown or ambiguous visual name "static": class must be best, directcolor, grayscale, greyscale, pseudocolor, staticcolor, staticgray, staticgrey, truecolor, or default}}
  149. test visual-3.5 {Tk_GetVisual, parsing visual string} {
  150.     catch {destroy .t1}
  151.     list [catch {
  152. toplevel .t1 -width 250 -height 100 -visual "pseudocolor 48x"
  153. wm geometry .t1 +0+0
  154.     } msg] $msg
  155. } {1 {expected integer but got "48x"}}
  156. if {$other != ""} {
  157.     catch {destroy .t1}
  158.     catch {destroy .t2}
  159.     catch {destroy .t3}
  160.     toplevel .t1 -width 250 -height 100 -visual $other
  161.     wm geom .t1 +0+0
  162.     toplevel .t2 -width 200 -height 80 -visual [winfo visual .]
  163.     wm geom .t2 +5+5
  164.     toplevel .t3 -width 150 -height 250 -visual [winfo visual .t1]
  165.     wm geom .t3 +10+10
  166.     test visual-4.1 {Tk_GetVisual, numerical visual id} nonPortable {
  167. list [winfo visualid .t2] [winfo visualid .t3]
  168.     } [list [winfo visualid .] [winfo visualid .t1]]
  169.     destroy .t1 .t2 .t3
  170. }
  171. test visual-4.2 {Tk_GetVisual, numerical visual id} {
  172.     catch {destroy .t1}
  173.     list [catch {toplevel .t1 -visual 12xyz} msg] $msg
  174. } {1 {bad X identifier for visual: 12xyz"}}
  175. test visual-4.3 {Tk_GetVisual, numerical visual id} {
  176.     catch {destroy .t1}
  177.     list [catch {toplevel .t1 -visual 1291673} msg] $msg
  178. } {1 {couldn't find an appropriate visual}}
  179. if ![string match *pseudocolor* $avail] {
  180.     test visual-5.1 {Tk_GetVisual, no matching visual} {
  181. catch {destroy .t1}
  182. list [catch {
  183.     toplevel .t1 -width 250 -height 100 -visual "pseudocolor 8"
  184.     wm geometry .t1 +0+0
  185. } msg] $msg
  186.     } {1 {couldn't find an appropriate visual}}
  187. }
  188. if {[string match *pseudocolor* $avail] && ([llength $avail] > 1)} {
  189.     test visual-6.1 {Tk_GetVisual, no matching visual} {nonPortable} {
  190. catch {destroy .t1}
  191. toplevel .t1 -width 250 -height 100 -visual "best"
  192. wm geometry .t1 +0+0
  193. update
  194. winfo visual .t1
  195.     } {pseudocolor}
  196. }
  197. # These tests are non-portable due to variations in how many colors
  198. # are already in use on the screen.
  199. if {([winfo visual .] == "pseudocolor") && ([winfo depth .] == 8)} {
  200.     eatColors .t1
  201.     test visual-7.1 {Tk_GetColormap, "new"} {nonPortable} {
  202. toplevel .t2 -width 30 -height 20
  203. wm geom .t2 +0+0
  204. update
  205. colorsFree .t2
  206.     } {0}
  207.     test visual-7.2 {Tk_GetColormap, "new"} {nonPortable} {
  208. catch {destroy .t2}
  209. toplevel .t2 -width 30 -height 20 -colormap new
  210. wm geom .t2 +0+0
  211. update
  212. colorsFree .t2
  213.     } {1}
  214.     test visual-7.3 {Tk_GetColormap, copy from other window} {nonPortable} {
  215. catch {destroy .t2}
  216. toplevel .t3 -width 400 -height 50 -colormap new
  217. wm geom .t3 +0+0
  218. catch {destroy .t2}
  219. toplevel .t2 -width 30 -height 20 -colormap .t3
  220. wm geom .t2 +0+0
  221. update
  222. destroy .t3
  223. colorsFree .t2
  224.     } {1}
  225.     test visual-7.4 {Tk_GetColormap, copy from other window} {nonPortable} {
  226. catch {destroy .t2}
  227. toplevel .t3 -width 400 -height 50 -colormap new
  228. wm geom .t3 +0+0
  229. catch {destroy .t2}
  230. toplevel .t2 -width 30 -height 20 -colormap .
  231. wm geom .t2 +0+0
  232. update
  233. destroy .t3
  234. colorsFree .t2
  235.     } {0}
  236.     test visual-7.5 {Tk_GetColormap, copy from other window} {nonPortable} {
  237. catch {destroy .t1}
  238. list [catch {toplevel .t1 -width 400 -height 50 
  239. -colormap .choke.lots} msg] $msg
  240.     } {1 {bad window path name ".choke.lots"}}
  241.     if {$other != {}} {
  242. test visual-7.6 {Tk_GetColormap, copy from other window} {nonPortable} {
  243.     catch {destroy .t1}
  244.     catch {destroy .t2}
  245.     toplevel .t1 -width 300 -height 150 -visual $other
  246.     wm geometry .t1 +0+0
  247.     list [catch {toplevel .t2 -width 400 -height 50 
  248.     -colormap .t1} msg] $msg
  249. } {1 {can't use colormap for .t1: incompatible visuals}}
  250.     }
  251.     catch {destroy .t1}
  252.     catch {destroy .t2}
  253. }
  254. test visual-8.1 {Tk_FreeColormap procedure} {
  255.     deleteWindows
  256.     toplevel .t1 -width 300 -height 180 -colormap new
  257.     wm geometry .t1 +0+0
  258.     foreach i {.t2 .t3 .t4} {
  259. toplevel $i -width 250 -height 150 -colormap .t1
  260. wm geometry $i +0+0
  261.     }
  262.     destroy .t1
  263.     destroy .t3
  264.     destroy .t4
  265.     update
  266. } {}
  267. if {$other != {}} {
  268.     test visual-8.2 {Tk_FreeColormap procedure} {
  269. deleteWindows
  270. toplevel .t1 -width 300 -height 180 -visual $other
  271. wm geometry .t1 +0+0
  272. foreach i {.t2 .t3 .t4} {
  273.     toplevel $i -width 250 -height 150 -visual $other
  274.     wm geometry $i +0+0
  275. }
  276. destroy .t2
  277. destroy .t3
  278. destroy .t4
  279. update
  280.     } {}
  281. }
  282. deleteWindows
  283. rename eatColors {}
  284. rename colorsFree {}
  285. # cleanup
  286. ::tcltest::cleanupTests
  287. return