summaryrefslogtreecommitdiffstats
path: root/tests/cmds.test
blob: 71b14f450ac35f3f634aa85dfb6ac6f406d11bdf (plain)
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
# This file is a Tcl script to test the procedures in the file
# tkCmds.c.  It is organized in the standard fashion for Tcl tests.
#
# Copyright (c) 1996 Sun Microsystems, Inc.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# SCCS: @(#) cmds.test 1.1 96/03/14 13:25:24

if {[string compare test [info procs test]] == 1} {
    source defs
}

eval destroy [winfo child .]
wm geometry . {}
update

test cmds-1.1 {tkwait visibility, argument errors} {
    list [catch {tkwait visibility} msg] $msg
} {1 {wrong # args: should be "tkwait variable|visibility|window name"}}
test cmds-1.2 {tkwait visibility, argument errors} {
    list [catch {tkwait visibility foo bar} msg] $msg
} {1 {wrong # args: should be "tkwait variable|visibility|window name"}}
test cmds-1.3 {tkwait visibility, argument errors} {
    list [catch {tkwait visibility bad_window} msg] $msg
} {1 {bad window path name "bad_window"}}
test cmds-1.4 {tkwait visibility, waiting for window to be mapped} {
    button .b -text "Test"
    set x init
    after 100 {set x delay; place .b -x 0 -y 0}
    tkwait visibility .b
    destroy .b
    set x
} {delay}
test cmds-1.5 {tkwait visibility, window gets deleted} {
    frame .f
    button .f.b -text "Test"
    pack .f.b
    set x init
    after 100 {set x deleted; destroy .f}
    list [catch {tkwait visibility .f.b} msg] $msg $x
} {1 {window ".f.b" was deleted before its visibility changed} deleted}