diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 20:28:26 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 20:28:26 (GMT) |
commit | b184baa1234c2143e488d1796ae98afab118b891 (patch) | |
tree | 686b0a47b272296205c7fa2bc789f62a03d20df6 /tkimg/sun/tests | |
parent | f7560d0a451a793441216d76eb4d9475aab61740 (diff) | |
parent | 5aad878400425d3af44433a47c13824385689e1d (diff) | |
download | blt-b184baa1234c2143e488d1796ae98afab118b891.zip blt-b184baa1234c2143e488d1796ae98afab118b891.tar.gz blt-b184baa1234c2143e488d1796ae98afab118b891.tar.bz2 |
Merge commit '5aad878400425d3af44433a47c13824385689e1d' as 'tkimg'
Diffstat (limited to 'tkimg/sun/tests')
-rw-r--r-- | tkimg/sun/tests/all.tcl | 24 | ||||
-rw-r--r-- | tkimg/sun/tests/folder.ras | bin | 0 -> 233 bytes | |||
-rw-r--r-- | tkimg/sun/tests/sun.test | 50 |
3 files changed, 74 insertions, 0 deletions
diff --git a/tkimg/sun/tests/all.tcl b/tkimg/sun/tests/all.tcl new file mode 100644 index 0000000..672eef7 --- /dev/null +++ b/tkimg/sun/tests/all.tcl @@ -0,0 +1,24 @@ +# all.tcl -- -*- tcl -*- +# +# Import common functionality, then run the tests in this directory. +# +# Copyright (c) 2002 Andreas Kupries <andreas_kupries@users.sourceforge.net> +# All rights reserved. +# +# RCS: @(#) $Id: all.tcl,v 1.1.1.1 2016/01/25 21:20:47 joye Exp $ + +set _pwd [pwd] +cd [file dirname [file join [pwd] [info script]]] +set _here [pwd] +cd $_pwd +source [file join [file dirname [file dirname $_here]] tests all.tcl] +unset _pwd _here + +set ::tcltest::testSingleFile false +set ::tcltest::testsDirectory [file dirname [info script]] + +# We need to ensure that the testsDirectory is absolute +::tcltest::normalizePath ::tcltest::testsDirectory + +run_tests +exit diff --git a/tkimg/sun/tests/folder.ras b/tkimg/sun/tests/folder.ras Binary files differnew file mode 100644 index 0000000..b94cde5 --- /dev/null +++ b/tkimg/sun/tests/folder.ras diff --git a/tkimg/sun/tests/sun.test b/tkimg/sun/tests/sun.test new file mode 100644 index 0000000..2146c64 --- /dev/null +++ b/tkimg/sun/tests/sun.test @@ -0,0 +1,50 @@ +# This file is a Tcl script to test out SUN reading and writing. +# It is organized in the standard fasion for Tcl tests. +# + +puts "img::sun [package require img::sun]" + +set sundata \ +{WaZqlQAAABAAAAAMAAAAGAAAAkAAAAACAAAAAAAAAACACNmACwCAINmAAgCAAP/wgAD/8IAA +//CAAP/wgAIAgBrZgAIAgAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAIAgBTZgCYAgAjZgAIA +gAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAgCACNmAAgCA +AP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAD/8IACAIAI2YACAIAA +//CAAP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAIAgAjZgAIAgAD/ +8IAA//CAAP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAgCACNmAAgCAAP/w +gAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAD/8IACAIAI2YACAIAA//CA +AP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAIAgAjZgAIAgAD/8IAA +//CAAP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAP/wgAD/8IAA//CAAgCACNmAJgCACNk=} + +test sun-1.1 {} { + catch {image delete i} + image create photo i -file [file join $tcltest::testsDirectory folder.ras] + i data -format sun +} $sundata +test sun-1.2 {} { + catch {image delete i} + image create photo i -data $sundata + set data [i data -format sun] +} $sundata +test sun-1.3 {} { + i blank + i put $data + set data [i data -format sun] +} $sundata +test sun-1.4 {} { + i blank + i put $data -format sun + set data [i data -format sun] +} $sundata + +if {[info tclversion] < 8.0} { + return +} + +test sun-2.0 {Binary I/O with SUN images} { + i blank + set f [open [file join $tcltest::testsDirectory folder.ras] r] + fconfigure $f -translation binary + set return [catch {i put [read $f]} msg] + close $f + lappend return $msg +} {0 {}} |