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

通讯编程

开发平台:

Visual C++

  1. # This file is a Tcl script to test out the procedures in tkRectOval.c,
  2. # which implement canvas "rectangle" and "oval" items.  It is organized
  3. # in the standard fashion for Tcl tests.
  4. #
  5. # Copyright (c) 1994-1996 Sun Microsystems, Inc.
  6. # Copyright (c) 1998-1999 by Scriptics Corporation.
  7. # All rights reserved.
  8. #
  9. # RCS: @(#) $Id: canvRect.test,v 1.6 2003/02/09 07:48:22 hobbs Exp $
  10. package require tcltest 2.1
  11. namespace import -force tcltest::configure
  12. namespace import -force tcltest::testsDirectory
  13. configure -testdir [file join [pwd] [file dirname [info script]]]
  14. configure -loadfile [file join [testsDirectory] constraints.tcl]
  15. tcltest::loadTestedCommands
  16. canvas .c -width 400 -height 300 -bd 2 -relief sunken
  17. pack .c
  18. bind .c <1> {
  19.     puts "button down at (%x,%y)"
  20. }
  21. update
  22. set i 1
  23. .c create rectangle 20 20 80 80 -tag test
  24. foreach test {
  25.     {-fill #ff0000 #ff0000 non-existent {unknown color name "non-existent"}}
  26.     {-outline #123456 #123456 bad_color {unknown color name "bad_color"}}
  27.     {-stipple gray50 gray50 bogus {bitmap "bogus" not defined}}
  28.     {-tags {test a b c} {test a b c} {} {}}
  29.     {-width 6.0 6.0 abc {bad screen distance "abc"}}
  30. } {
  31.     set name [lindex $test 0]
  32.     test canvRect-1.$i {configuration options} {
  33. .c itemconfigure test $name [lindex $test 1]
  34. list [lindex [.c itemconfigure test $name] 4] [.c itemcget test $name]
  35.     } [list [lindex $test 2] [lindex $test 2]]
  36.     incr i
  37.     if {[lindex $test 3] != ""} {
  38. test canvRect-1.$i {configuration options} {
  39.     list [catch {.c itemconfigure test $name [lindex $test 3]} msg] $msg
  40. } [list 1 [lindex $test 4]]
  41.     }
  42.     incr i
  43. }
  44. test canvRect-1.$i {configuration options} {
  45.     .c itemconfigure test -tags {test xyz}
  46.     .c itemcget xyz -tags
  47. } {test xyz}
  48. test canvRect-2.1 {CreateRectOval procedure} {
  49.     list [catch {.c create rect} msg] $msg
  50. } {1 {wrong # args: should be ".c create rect coords ?arg arg ...?"}}
  51. test canvRect-2.2 {CreateRectOval procedure} {
  52.     list [catch {.c create oval x y z} msg] $msg
  53. } {1 {wrong # coordinates: expected 0 or 4, got 3}}
  54. test canvRect-2.3 {CreateRectOval procedure} {
  55.     list [catch {.c create rectangle x 2 3 4} msg] $msg
  56. } {1 {bad screen distance "x"}}
  57. test canvRect-2.4 {CreateRectOval procedure} {
  58.     list [catch {.c create rectangle 1 y 3 4} msg] $msg
  59. } {1 {bad screen distance "y"}}
  60. test canvRect-2.5 {CreateRectOval procedure} {
  61.     list [catch {.c create rectangle 1 2 z 4} msg] $msg
  62. } {1 {bad screen distance "z"}}
  63. test canvRect-2.6 {CreateRectOval procedure} {
  64.     list [catch {.c create rectangle 1 2 3 q} msg] $msg
  65. } {1 {bad screen distance "q"}}
  66. test canvRect-2.7 {CreateRectOval procedure} {
  67.     .c create rectangle 1 2 3 4 -tags x
  68.     set result {}
  69.     foreach element [.c coords x] {
  70. lappend result [format %.1f $element]
  71.     }
  72.     set result
  73. } {1.0 2.0 3.0 4.0}
  74. test canvRect-2.8 {CreateRectOval procedure} {
  75.     list [catch {.c create rectangle 1 2 3 4 -gorp foo} msg] $msg
  76. } {1 {unknown option "-gorp"}}
  77. .c delete withtag all
  78. .c create rectangle 10 20 30 40 -tags x
  79. test canvRect-3.1 {RectOvalCoords procedure} {
  80.     set result {}
  81.     foreach element [.c coords x] {
  82. lappend result [format %.1f $element]
  83.     }
  84.     set result
  85. } {10.0 20.0 30.0 40.0}
  86. test canvRect-3.2 {RectOvalCoords procedure} {
  87.     list [catch {.c coords x a 2 3 4} msg] $msg
  88. } {1 {bad screen distance "a"}}
  89. test canvRect-3.3 {RectOvalCoords procedure} {
  90.     list [catch {.c coords x 1 b 3 4} msg] $msg
  91. } {1 {bad screen distance "b"}}
  92. test canvRect-3.4 {RectOvalCoords procedure} {
  93.     list [catch {.c coords x 1 2 c 4} msg] $msg
  94. } {1 {bad screen distance "c"}}
  95. test canvRect-3.5 {RectOvalCoords procedure} {
  96.     list [catch {.c coords x 1 2 3 d} msg] $msg
  97. } {1 {bad screen distance "d"}}
  98. test canvRect-3.6 {RectOvalCoords procedure} {nonPortable} {
  99.     # Non-portable due to rounding differences.
  100.     .c coords x 10 25 15 40
  101.     .c bbox x
  102. } {9 24 16 41}
  103. test canvRect-3.7 {RectOvalCoords procedure} {
  104.     list [catch {.c coords x 1 2 3 4 5} msg] $msg
  105. } {1 {wrong # coordinates: expected 0 or 4, got 5}}
  106. .c delete withtag all
  107. .c create rectangle 10 20 30 40 -tags x -width 1
  108. test canvRect-4.1 {ConfigureRectOval procedure} {
  109.     list [catch {.c itemconfigure x -width abc} msg] $msg 
  110.     [.c itemcget x -width]
  111. } {1 {bad screen distance "abc"} 1.0}
  112. test canvRect-4.2 {ConfigureRectOval procedure} {
  113.     list [catch {.c itemconfigure x -width -5} msg] $msg
  114. } {1 {bad screen distance "-5"}}
  115. test canvRect-4.3 {ConfigureRectOval procedure} {nonPortable} {
  116.     # Non-portable due to rounding differences.
  117.     .c itemconfigure x -width 10
  118.     .c bbox x
  119. } {5 15 35 45}
  120. # I can't come up with any good tests for DeleteRectOval.
  121. .c delete withtag all
  122. .c create rectangle 10 20 30 40 -tags x -width 1 -outline {}
  123. test canvRect-5.1 {ComputeRectOvalBbox procedure} {nonPortable} {
  124.     # Non-portable due to rounding differences:
  125.     .c coords x 20 15 10 5
  126.     .c bbox x
  127. } {10 5 20 15}
  128. test canvRect-5.2 {ComputeRectOvalBbox procedure} {nonPortable} {
  129.     # Non-portable due to rounding differences:
  130.     .c coords x 10 20 30 10
  131.     .c itemconfigure x -width 1 -outline red
  132.     .c bbox x
  133. } {9 9 31 21}
  134. test canvRect-5.3 {ComputeRectOvalBbox procedure} {nonPortable} {
  135.     # Non-portable due to rounding differences:
  136.     .c coords x 10 20 30 10
  137.     .c itemconfigure x -width 2 -outline red
  138.     .c bbox x
  139. } {9 9 31 21}
  140. test canvRect-5.4 {ComputeRectOvalBbox procedure} {nonPortable} {
  141.     # Non-portable due to rounding differences:
  142.     .c coords x 10 20 30 10
  143.     .c itemconfigure x -width 3 -outline red
  144.     .c bbox x
  145. } {8 8 32 22}
  146. # I can't come up with any good tests for DisplayRectOval.
  147. .c delete withtag all
  148. set x  [.c create rectangle 10 20 30 35 -tags x -fill green]
  149. set y [.c create rectangle 15 25 25 30  -tags y -fill red]
  150. test canvRect-6.1 {RectToPoint procedure} {
  151.     .c itemconfigure y -outline {}
  152.     list [.c find closest 14.9 28] [.c find closest 15.1 28] 
  153.     [.c find closest 24.9 28] [.c find closest 25.1 28]
  154. } "$x $y $y $x"
  155. test canvRect-6.2 {RectToPoint procedure} {
  156.     .c itemconfigure y -outline {}
  157.     list [.c find closest 20 24.9] [.c find closest 20 25.1] 
  158.     [.c find closest 20 29.9]  [.c find closest 20 30.1]
  159. } "$x $y $y $x"
  160. test canvRect-6.3 {RectToPoint procedure} {
  161.     .c itemconfigure y -width 1 -outline black
  162.     list [.c find closest 14.4 28] [.c find closest 14.6 28] 
  163.     [.c find closest 25.4 28] [.c find closest 25.6 28]
  164. } "$x $y $y $x"
  165. test canvRect-6.4 {RectToPoint procedure} {
  166.     .c itemconfigure  y -width 1 -outline black
  167.     list [.c find closest 20 24.4] [.c find closest 20 24.6] 
  168.     [.c find closest 20 30.4] [.c find closest 20 30.6]
  169. } "$x $y $y $x"
  170. .c itemconfigure x -fill {} -outline black -width 3
  171. .c itemconfigure y -outline {}
  172. test canvRect-6.5 {RectToPoint procedure} {
  173.     list [.c find closest 13.2 28] [.c find closest 13.3 28] 
  174.     [.c find closest 26.7 28] [.c find closest 26.8 28]
  175. } "$x $y $y $x"
  176. test canvRect-6.6 {RectToPoint procedure} {
  177.     list [.c find closest 20 23.2] [.c find closest 20 23.3] 
  178.     [.c find closest 20 31.7] [.c find closest 20 31.8]
  179. } "$x $y $y $x"
  180. .c delete withtag all
  181. set x [.c create rectangle 10 20 30 40 -outline {} -fill black]
  182. set y [.c create rectangle 40 40 50 50 -outline {} -fill black]
  183. test canvRect-6.7 {RectToPoint procedure} {
  184.     list [.c find closest 35 35] [.c find closest 36 36] 
  185.     [.c find closest 37 37] [.c find closest 38 38]
  186. } "$x $y $y $y"
  187. .c delete withtag all
  188. set x  [.c create rectangle 10 20 30 35 -fill green -outline {}]
  189. set y [.c create rectangle 40 45 60 70 -fill red -outline black -width 3]
  190. set z [.c create rectangle 100 150 120 170 -fill {} -outline black -width 3]
  191. test canvRect-7.1 {RectToArea procedure} {
  192.     list [.c find overlapping 20 50 38 60] 
  193.     [.c find overlapping 20 50 39 60] 
  194.     [.c find overlapping 20 50 70 60] 
  195.     [.c find overlapping 61 50 70 60] 
  196.     [.c find overlapping 62 50 70 60]
  197. } "{} $y $y $y {}"
  198. test canvRect-7.2 {RectToArea procedure} {
  199.     list [.c find overlapping 45 20 55 43] 
  200.     [.c find overlapping 45 20 55 44] 
  201.     [.c find overlapping 45 20 55 80] 
  202.     [.c find overlapping 45 71 55 80] 
  203.     [.c find overlapping 45 72 55 80]
  204. } "{} $y $y $y {}"
  205. test canvRect-7.3 {RectToArea procedure} {
  206.     list [.c find overlapping 5 25 9.9 30] [.c find overlapping 5 25 10.1 30]
  207. } "{} $x"
  208. test canvRect-7.4 {RectToArea procedure} {
  209.     list [.c find overlapping 102 152 118 168] 
  210.     [.c find overlapping 101 152 118 168] 
  211.     [.c find overlapping 102 151 118 168] 
  212.     [.c find overlapping 102 152 119 168] 
  213.     [.c find overlapping 102 152 118 169]
  214. } "{} $z $z $z $z"
  215. test canvRect-7.5 {RectToArea procedure} {
  216.     list [.c find enclosed 20 40 38 80] 
  217.     [.c find enclosed 20 40 39 80] 
  218.     [.c find enclosed 20 40 70 80] 
  219.     [.c find enclosed 61 40 70 80] 
  220.     [.c find enclosed 62 40 70 80]
  221. } "{} {} $y {} {}"
  222. test canvRect-7.6 {RectToArea procedure} {
  223.     list [.c find enclosed 20 20 65 43] 
  224.     [.c find enclosed 20 20 65 44] 
  225.     [.c find enclosed 20 20 65 80] 
  226.     [.c find enclosed 20 71 65 80] 
  227.     [.c find enclosed 20 72 65 80]
  228. } "{} {} $y {} {}"
  229. .c delete withtag all
  230. set x  [.c create oval 50 100 200 150 -fill green -outline {}]
  231. set y [.c create oval 50 100 200 150 -fill red -outline black -width 3]
  232. set z [.c create oval 50 100 200 150 -fill {} -outline black -width 3]
  233. test canvRect-8.1 {OvalToArea procedure} {
  234.     list [.c find overlapping 20 120 48 130] 
  235.     [.c find overlapping 20 120 49 130] 
  236.     [.c find overlapping 20 120 50.2 130] 
  237.     [.c find overlapping 20 120 300 130] 
  238.     [.c find overlapping 60 120 190 130] 
  239.     [.c find overlapping 199.9 120 300 130] 
  240.     [.c find overlapping 201 120 300 130] 
  241.     [.c find overlapping 202 120 300 130]
  242. } "{} {$y $z} {$x $y $z} {$x $y $z} {$x $y} {$x $y $z} {$y $z} {}"
  243. test canvRect-8.2 {OvalToArea procedure} {
  244.     list [.c find overlapping 100 50 150 98] 
  245.     [.c find overlapping 100 50 150 99] 
  246.     [.c find overlapping 100 50 150 100.1] 
  247.     [.c find overlapping 100 50 150 200] 
  248.     [.c find overlapping 100 110 150 140] 
  249.     [.c find overlapping 100 149.9 150 200] 
  250.     [.c find overlapping 100 151 150 200] 
  251.     [.c find overlapping 100 152 150 200]
  252. } "{} {$y $z} {$x $y $z} {$x $y $z} {$x $y} {$x $y $z} {$y $z} {}"
  253. test canvRect-8.3 {OvalToArea procedure} {
  254.     list [.c find overlapping 176 104 177 105] 
  255.     [.c find overlapping 187 116 188 117] 
  256.     [.c find overlapping 192 142 193 143] 
  257.     [.c find overlapping 180 138 181 139] 
  258.     [.c find overlapping 61 142 62 143] 
  259.     [.c find overlapping 65 137 66 136] 
  260.     [.c find overlapping 62 108 63 109] 
  261.     [.c find overlapping 68 115 69 116]
  262. } "{} {$x $y} {} {$x $y} {} {$x $y} {} {$x $y}"
  263. test canvRect-9.1 {ScaleRectOval procedure} {
  264.     .c delete withtag all
  265.     .c create rect 100 300 200 350 -tags x
  266.     .c scale x 50 100 2 4
  267.     .c coords x
  268. } {150.0 900.0 350.0 1100.0}
  269. test canvRect-10.1 {TranslateRectOval procedure} {
  270.     .c delete withtag all
  271.     .c create rect 100 300 200 350 -tags x
  272.     .c move x 100 -10
  273.     .c coords x
  274. } {200.0 290.0 300.0 340.0}
  275. # This test is non-portable because different color information
  276. # will get generated on different displays (e.g. mono displays
  277. # vs. color).
  278. test canvRect-11.1 {RectOvalToPostscript procedure} {nonPortable macCrash} {
  279.     # Crashes on Mac because the XGetImage() call isn't implemented, causing a
  280.     # dereference of NULL.
  281.     
  282.     .c configure -bd 0 -highlightthickness 0
  283.     .c delete withtag all
  284.     .c create rect 50 60 90 80 -fill black -stipple gray50 -outline {}
  285.     .c create oval 100 150 200 200 -fill {} -outline #ff0000 -width 5
  286.     update
  287.     set x [.c postscript]
  288.     string range $x [string first "-200 -150 translate" $x] end
  289. } {-200 -150 translate
  290. 0 300 moveto 400 300 lineto 400 0 lineto 0 0 lineto closepath clip newpath
  291. gsave
  292. 50 240 moveto 40 0 rlineto 0 -20 rlineto -40 0 rlineto closepath
  293. 0.000 0.000 0.000 setrgbcolor AdjustColor
  294. clip 16 16 <5555aaaa5555aaaa5555aaaa5555aaaa5555aaaa5555aaaa5555aaaa5555
  295. aaaa> StippleFill
  296. grestore
  297. gsave
  298. matrix currentmatrix
  299. 150 125 translate 50 25 scale 1 0 moveto 0 0 1 0 360 arc
  300. setmatrix
  301. 5 setlinewidth 0 setlinejoin 2 setlinecap
  302. 1.000 0.000 0.000 setrgbcolor AdjustColor
  303. stroke
  304. grestore
  305. restore showpage
  306. %%Trailer
  307. end
  308. %%EOF
  309. }
  310. # cleanup
  311. ::tcltest::cleanupTests
  312. return