URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [itcl/] [iwidgets3.0.0/] [tests/] [spintime.test] - Rev 1765
Compare with Previous | Blame | View Log
# 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: spintime.test,v 1.1.1.1 2002-01-16 10:24:51 markom Exp $
package require Iwidgets 3.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
} {}