1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
# This file is a Tcl script to test out procedures to write postscript
# for canvases to files and channels. It exercises the procedure
# TkCanvPostscriptCmd in generic/tkCanvPs.c
#
# Copyright (c) 1995 Sun Microsystems, Inc.
# Copyright (c) 1998-1999 by Scriptics Corporation.
# All rights reserved.
package require tcltest 2.1
eval tcltest::configure $argv
tcltest::loadTestedCommands
canvas .c -width 400 -height 300 -bd 2 -relief sunken
.c create rectangle 20 20 80 80 -fill red
pack .c
update
test canvPs-1.1 {test writing to a file} -constraints {
unixOrPc
} -setup {
set foo [makeFile {} foo.ps]
} -body {
.c postscript -file $foo
file exists $foo
} -cleanup {
removeFile foo.ps
} -result 1
test canvPs-1.2 {test writing to a file, idempotency} -constraints {
unixOrPc
} -setup {
set foo [makeFile {} foo.ps]
set bar [makeFile {} bar.ps]
} -body {
.c postscript -file $foo
.c postscript -file $bar
set status ok
if {[file size $bar] != [file size $foo]} {
set status broken
}
set status
} -cleanup {
removeFile foo.ps
removeFile bar.ps
} -result ok
test canvPs-2.1 {test writing to a channel} -constraints {
unixOrPc
} -setup {
set foo [makeFile {} foo.ps]
file delete $foo
} -body {
set chan [open $foo w]
fconfigure $chan -translation lf
.c postscript -channel $chan
close $chan
file exists $foo
} -cleanup {
removeFile foo.ps
} -result 1
test canvPs-2.2 {test writing to channel, idempotency} -constraints {
unixOrPc
} -setup {
set foo [makeFile {} foo.ps]
set bar [makeFile {} bar.ps]
file delete $foo
file delete $bar
} -body {
set c1 [open $foo w]
set c2 [open $bar w]
fconfigure $c1 -translation lf
fconfigure $c2 -translation lf
.c postscript -channel $c1
.c postscript -channel $c2
close $c1
close $c2
set status ok
if {[file size $bar] != [file size $foo]} {
set status broken
}
set status
} -cleanup {
removeFile foo.ps
removeFile bar.ps
} -result ok
test canvPs-2.3 {test writing to channel and file, same output} -constraints {
unix
} -setup {
set foo [makeFile {} foo.ps]
set bar [makeFile {} bar.ps]
file delete $foo
file delete $bar
} -body {
set c1 [open $foo w]
fconfigure $c1 -translation lf
.c postscript -channel $c1
close $c1
.c postscript -file $bar
set status ok
if {[file size $foo] != [file size $bar]} {
set status broken
}
set status
} -cleanup {
removeFile foo.ps
removeFile bar.ps
} -result ok
test canvPs-2.4 {test writing to channel and file, same output} -constraints {
win
} -setup {
set foo [makeFile {} foo.ps]
set bar [makeFile {} bar.ps]
file delete $foo
file delete $bar
} -body {
set c1 [open $foo w]
fconfigure $c1 -translation crlf
.c postscript -channel $c1
close $c1
.c postscript -file $bar
set status ok
if {[file size $foo] != [file size $bar]} {
set status broken
}
set status
} -cleanup {
removeFile foo.ps
removeFile bar.ps
} -result ok
test canvPs-3.1 {test ps generation with an embedded window} -setup {
set bar [makeFile {} bar.ps]
file delete $bar
} -constraints {
notAqua
} -body {
destroy .c
pack [canvas .c -width 200 -height 200 -background white]
.c create rect 20 20 150 150 -tags rect0 -dash . -width 2
.c create arc 0 50 200 200 -tags arc0 \
-dash {4 4} -stipple question -outline red -fill green
image create photo logo \
-file [file join [file dirname [info script]] pwrdLogo150.gif]
.c create image 200 50 -image logo -anchor nw
entry .c.e -background pink -foreground blue -width 14
.c.e insert 0 "we gonna be postscripted"
.c create window 50 180 -anchor nw -window .c.e
update
.c postscript -file $bar
file exists $bar
} -cleanup {
removeFile bar.ps
} -result 1
test canvPs-3.2 {test ps generation with an embedded window not mapped} -setup {
set bar [makeFile {} bar.ps]
file delete $bar
} -body {
destroy .c
pack [canvas .c -width 200 -height 200 -background white]
entry .c.e -background pink -foreground blue -width 14
.c.e insert 0 "we gonna be postscripted"
.c create window 50 180 -anchor nw -window .c.e
.c postscript -file $bar
file exists $bar
} -cleanup {
removeFile bar.ps
} -result 1
test canvPs-4.1 {test ps generation with single-point uncolored poly, bug 734498} {} {
destroy .c
pack [canvas .c]
.c create poly 10 20 10 20
catch {.c postscript}
} 0
# cleanup
unset -nocomplain foo bar
deleteWindows
cleanupTests
return
|