summaryrefslogtreecommitdiff
path: root/iwidgets/tests/spintime.test
diff options
context:
space:
mode:
Diffstat (limited to 'iwidgets/tests/spintime.test')
-rw-r--r--iwidgets/tests/spintime.test156
1 files changed, 156 insertions, 0 deletions
diff --git a/iwidgets/tests/spintime.test b/iwidgets/tests/spintime.test
new file mode 100644
index 00000000000..f366c1d8593
--- /dev/null
+++ b/iwidgets/tests/spintime.test
@@ -0,0 +1,156 @@
+# This file is a Tcl script to test out [incr Widgets] Spintime class.
+# It is organized in the standard fashion for Tcl tests with the following
+# notation for test case labels:
+#
+# 1.x - Construction/Destruction tests
+# 2.x - Configuration option tests
+# 3.x - Method tests
+#
+# Copyright (c) 1995 DSC Technologies Corporation
+#
+# See the file "license.terms" for information on usage and redistribution
+# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
+#
+# @(#) $Id$
+
+package require tcltest
+namespace import -force ::tcltest::*
+
+if [catch {package require Iwidgets 4.0}] {
+ # Let's try modifying the auto_path. Note that the IWIDGETS_LIBRARY
+ # env var is initialized in the Makefile when doing a 'make test'.
+ # If sourcing this file independently, this variable must be set manually.
+ if ![info exists env(IWIDGETS_LIBRARY)] {
+ error "Unable to locate Iwidgets package. Set your IWIDGETS_LIBRARY\
+ environment\nvariable to the directory that contains iwidgets.tcl"
+ }
+ lappend auto_path $env(IWIDGETS_LIBRARY)
+ package require Iwidgets 4.0
+}
+
+if {[string compare test [info procs test]] == 1} {
+ source defs
+}
+
+wm geometry . {}
+raise .
+
+set c 1
+set o 1
+set m 1
+
+#
+# Initial construction test
+#
+test Spintime-1.$c {Spintime construction} {
+ iwidgets::Spintime .st
+ pack .st -padx 10 -pady 10 -fill both -expand yes
+ update
+} {}
+
+incr c
+
+#
+# Option tests which are successful.
+#
+test Spintime-2.$o {configuration option} {
+ llength [.st configure]
+} {25}
+
+incr o
+
+foreach test {
+ {-arroworient horizontal horizontal}
+ {-arroworient vertical vertical}
+ {-background #d9d9d9 #d9d9d9}
+ {-cursor gumby gumby}
+ {-hourlabel Hour: Hour:}
+ {-houron false false}
+ {-houron true true}
+ {-hourwidth 4 4}
+ {-labelmargin 4 4}
+ {-labelpos n n}
+ {-labelpos s s}
+ {-labelpos e e}
+ {-labelpos w w}
+ {-militaryon no no}
+ {-militaryon yes yes}
+ {-minutelabel Minute: Minute:}
+ {-minuteon false false}
+ {-minuteon true true}
+ {-minutewidth 4 4}
+ {-orient horizontal horizontal}
+ {-orient vertical vertical}
+ {-secondlabel Second: Second:}
+ {-secondon false false}
+ {-secondon true true}
+ {-secondwidth 4 4}
+ {-textbackground GhostWhite GhostWhite}
+ {-timemargin 3 3}} {
+ set option [lindex $test 0]
+ test Spintime-2.$o "configuration options, $option" {
+ .st configure $option [lindex $test 1]
+ lindex [.st configure $option] 4
+ } [lindex $test 2]
+ update
+ incr o
+}
+
+#
+# Method tests which are successful.
+#
+foreach test {
+ {{.st show "21:21:21"} {}}
+ {{.st get -string} "21:21:21"}} {
+ set method [lindex [lindex $test 0] 1]
+ test Spintime-3.$m "object methods, $method" {
+ list [catch {eval [lindex $test 0]} msg] $msg
+ } [list 0 [lindex $test 1]]
+ update
+ incr m
+}
+
+foreach test {
+ {{.st show bogus} {bad time: "bogus", must be a valid time string, clock clicks value or the keyword now}}
+ {{.st get bogus} {bad format option "bogus": should be -string or -clicks}}} {
+ set method [lindex [lindex $test 0] 1]
+ test ScrolledListBox-3.$m "object methods, $method" {
+ list [catch {eval [lindex $test 0]} msg] $msg
+ } [list 1 [lindex $test 1]]
+ incr m
+}
+
+#
+# Conclusion of constrcution/destruction tests
+#
+test Spintime-1.$c {Spintime destruction} {
+ destroy .st
+ update
+} {}
+
+incr c
+
+test Spintime-1.$c {Spintime construction} {
+ iwidgets::spintime .st
+ pack .st -padx 10 -pady 10 -fill both -expand yes
+ update
+} {}
+
+incr c
+
+test Spintime-1.$c {Spintime destruction} {
+ destroy .st
+ update
+} {}
+
+incr c
+
+test Spintime-1.$c {Spintime destruction} {
+ iwidgets::spintime .st
+ pack .st
+ destroy .st
+ update
+} {}
+
+::tcltest::cleanupTests
+exit