blob: db486f0b1b59a90a1ec323cc630cca4cb71fc179 (
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
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
|
# This file is a Tcl script to test out embedded Windows.
#
# Copyright (c) 1996-1997 Sun Microsystems, Inc.
# Copyright (c) 1998-1999 by Scriptics Corporation.
# All rights reserved.
#
# RCS: @(#) $Id: embed.test,v 1.5 2008/08/12 22:52:23 aniap Exp $
package require tcltest 2.2
namespace import ::tcltest::*
eval tcltest::configure $argv
tcltest::loadTestedCommands
test embed-1.1 {TkpUseWindow procedure, bad window identifier} -setup {
deleteWindows
} -body {
toplevel .t -use xyz
} -cleanup {
deleteWindows
} -returnCodes error -result {expected integer but got "xyz"}
test embed-1.2 {CreateFrame procedure, bad window identifier} -setup {
deleteWindows
} -body {
toplevel .t -container xyz
} -cleanup {
deleteWindows
} -returnCodes error -result {expected boolean value but got "xyz"}
test embed-1.3 {CreateFrame procedure, both -use and -container is invalid} -setup {
deleteWindows
} -body {
toplevel .container -container 1
toplevel .t -use [winfo id .container] -container 1
} -cleanup {
deleteWindows
} -returnCodes error -result {A window cannot have both the -use and the -container option set.}
# testing window embedding for win platforms
test embed-1.4 {TkpUseWindow procedure, -container must be set} -constraints {
win
} -setup {
deleteWindows
} -body {
toplevel .container
toplevel .embd -use [winfo id .container]
} -cleanup {
deleteWindows
} -returnCodes error -result {the window to use is not a Tk container}
# testing window embedding for win platforms
test embed-1.5 {TkpUseWindow procedure, -container must be set} -constraints {
win
} -setup {
deleteWindows
} -body {
frame .container
toplevel .embd -use [winfo id .container]
} -cleanup {
deleteWindows
} -returnCodes error -result {the window to use is not a Tk container}
# testing window embedding for other than win platforms
test embed-1.5 {TkpUseWindow procedure, -container must be set} -constraints {
nonwin
} -setup {
deleteWindows
} -body {
toplevel .container
toplevel .embd -use [winfo id .container]
} -cleanup {
deleteWindows
} -returnCodes error -result {window ".container" doesn't have -container option set}
# testing window embedding for other than win platforms
test embed-1.6 {TkpUseWindow procedure, -container must be set} -constraints {
nonwin
} -setup {
deleteWindows
} -body {
frame .container
toplevel .embd -use [winfo id .container]
} -cleanup {
deleteWindows
} -returnCodes error -result {window ".container" doesn't have -container option set}
cleanupTests
return
|