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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
|
# This file is a Tcl script to test the Windows specific behavior of
# the common dialog boxes.
#
# Copyright © 1997 Sun Microsystems, Inc.
# Copyright © 1998-1999 Scriptics Corporation.
# Copyright © 1998-1999 ActiveState Corporation.
# NOTES
#
# * This test file is specific for the MS Windows platform. Tests that are
# platform-indifferent go into the test file dialog.test.
# * This test file is skipped entirely on non-windows platforms.
#
#
# TESTFILE INITIALIZATION
#
package require tcltest 2.2; # needed in mode -singleproc 0
# Load the main script main.tcl, which takes care of:
# - setup for the application and the root window
# - importing commands from the tcltest namespace
# - loading of the testutils mechanism along with its utility procs
# - loading of Tk specific test constraints (additionally to constraints
# provided by the package tcltest)
source [file join [tcltest::configure -testdir] main.tcl]
# Ensure a pristine initial window state
resetWindows
# Import utility procs for specific functional areas
testutils import dialog
set applyFontCmd [list set testDialogFont]
if {[testConstraint testwinevent]} {
catch {testwinevent debug 1}
}
#
# LOCAL UTILITY PROCS
#
proc GetText {id} {
variable testDialog
switch -exact -- $id {
ok { set id 1 }
cancel { set id 2 }
}
return [testwinevent $testDialog $id WM_GETTEXT]
}
proc SetText {id text} {
variable testDialog
return [testwinevent $testDialog $id WM_SETTEXT $text]
}
#
# LOCAL TEST CONSTRAINTS
#
# Locale identifier LANG_ENGLISH is 0x09
testConstraint english [expr {
[llength [info commands testwinlocale]]
&& (([testwinlocale] & 0xff) == 9)
}]
#
# COMMON TEST SETUP
#
set initialDir [tcltest::temporaryDirectory]
#
# TESTS
#
test winDialog-1.1 {Tk_ChooseColorObjCmd} -constraints {
testwinevent
} -body {
testDialog launch {tk_chooseColor}
testDialog onDisplay {
Click cancel
}
} -result 0
test winDialog-1.2 {Tk_ChooseColorObjCmd} -constraints {
testwinevent
} -body {
testDialog launch {set clr [tk_chooseColor -initialcolor "#ff9933"]}
testDialog onDisplay {
set x [Click cancel]
}
list $x $clr
} -result {0 {}}
test winDialog-1.3 {Tk_ChooseColorObjCmd} -constraints {
testwinevent
} -body {
testDialog launch {set clr [tk_chooseColor -initialcolor "#ff9933"]}
testDialog onDisplay {
set x [Click ok]
}
list $x $clr
} -result [list 0 "#ff9933"]
test winDialog-1.4 {Tk_ChooseColorObjCmd: -title} -constraints {
testwinevent
} -setup {
catch {unset a x}
} -body {
set x {}
testDialog launch {set clr [tk_chooseColor -initialcolor "#ff9933" -title "Hello"]}
testDialog onDisplay {
if {[catch {
array set a [testgetwindowinfo $testDialog]
if {[info exists a(text)]} {lappend x $a(text)}
} err]} { lappend x $err }
lappend x [Click ok]
}
lappend x $clr
} -result [list Hello 0 "#ff9933"]
test winDialog-1.5 {Tk_ChooseColorObjCmd: -title} -constraints {
testwinevent
} -setup {
catch {unset a x}
} -body {
set x {}
testDialog launch {
set clr [tk_chooseColor -initialcolor "#ff9933" \
-title "Привет"]
}
testDialog onDisplay {
if {[catch {
array set a [testgetwindowinfo $testDialog]
if {[info exists a(text)]} {lappend x $a(text)}
} err]} { lappend x $err }
lappend x [Click ok]
}
lappend x $clr
} -result [list "Привет" 0 "#ff9933"]
test winDialog-1.6 {Tk_ChooseColorObjCmd: -parent} -constraints {
testwinevent
} -setup {
catch {unset a x}
} -body {
testDialog launch {set clr [tk_chooseColor -initialcolor "#ff9933" -parent .]}
set x {}
testDialog onDisplay {
if {[catch {
array set a [testgetwindowinfo $testDialog]
if {[info exists a(parent)]} {
append x [expr {$a(parent) == [wm frame .]}]
}
} err]} {lappend x $err}
Click ok
}
list $x $clr
} -result [list 1 "#ff9933"]
test winDialog-1.7 {Tk_ChooseColorObjCmd: -parent} -constraints {
testwinevent
} -body {
tk_chooseColor -initialcolor "#ff9933" -parent .xyzzy12
} -returnCodes error -match glob -result {bad window path name*}
test winDialog-2.1 {ColorDlgHookProc} -constraints {emptyTest nt} -body {}
test winDialog-3.1 {Tk_GetOpenFileObjCmd} -constraints {
nt testwinevent english
} -body {
testDialog launch {tk_getOpenFile}
testDialog onDisplay {
set x [GetText cancel]
Click cancel
}
return $x
} -result {Cancel}
test winDialog-4.1 {Tk_GetSaveFileObjCmd} -constraints {
nt testwinevent english
} -body {
testDialog launch {tk_getSaveFile}
testDialog onDisplay {
set x [GetText cancel]
Click cancel
}
return $x
} -result {Cancel}
test winDialog-5.1 {GetFileName: no arguments} -constraints {
nt testwinevent
} -body {
testDialog launch {tk_getOpenFile -title Open}
testDialog onDisplay {
Click cancel
}
} -result 0
test winDialog-5.2 {GetFileName: one argument} -constraints {
nt
} -body {
tk_getOpenFile -foo
} -returnCodes error -result {bad option "-foo": must be -defaultextension, -filetypes, -initialdir, -initialfile, -multiple, -parent, -title, or -typevariable}
test winDialog-5.3 {GetFileName: many arguments} -constraints {
nt testwinevent
} -body {
testDialog launch {tk_getOpenFile -initialdir $initialDir -parent . -title test -initialfile foo}
testDialog onDisplay {
Click cancel
}
} -result 0
test winDialog-5.4 {GetFileName: Tcl_GetIndexFromObj() != TCL_OK} -constraints {
nt
} -body {
tk_getOpenFile -foo bar -abc
} -returnCodes error -result {bad option "-foo": must be -defaultextension, -filetypes, -initialdir, -initialfile, -multiple, -parent, -title, or -typevariable}
test winDialog-5.5 {GetFileName: Tcl_GetIndexFromObj() == TCL_OK} -constraints {
nt testwinevent
} -body {
testDialog launch {set x [tk_getOpenFile -title bar]}
set y [testDialog onDisplay {
Click cancel
}]
# Note this also tests fix for
# https://core.tcl-lang.org/tk/tktview/4a0451f5291b3c9168cc560747dae9264e1d2ef6
# $x is expected to be empty
append x $y
} -result 0
test winDialog-5.6 {GetFileName: valid option, but missing value} -constraints {
nt
} -body {
tk_getOpenFile -initialdir bar -title
} -returnCodes error -result {value for "-title" missing}
test winDialog-5.7 {GetFileName: extension begins with .} -constraints {
nt testwinevent
} -body {
testDialog launch {set x [tk_getSaveFile -defaultextension .foo -title Save]}
set msg {}
testDialog onDisplay {
if {[catch {SetText 0x3e9 bar} msg]} {
Click cancel
} else {
Click ok
}
}
set x "[file tail $x]$msg"
} -cleanup {
unset msg
} -result bar.foo
test winDialog-5.7.1 {GetFileName: extension {} } -constraints {
nt testwinevent
} -body {
testDialog launch {set x [tk_getSaveFile -defaultextension {} -title Save]}
set msg {}
testDialog onDisplay {
if {[catch {SetText 0x3e9 bar} msg]} {
Click cancel
} else {
Click ok
}
}
set x "[file tail $x]$msg"
} -cleanup {
unset msg
} -result bar
test winDialog-5.7.2 {GetFileName: extension {} Bug 47af31bd3ac6fbbb33cde1a5bab1e756ff2a6e00 } -constraints {
nt testwinevent
} -body {
testDialog launch {set x [tk_getSaveFile -filetypes {{All *}} -defaultextension {} -title Save]}
set msg {}
testDialog onDisplay {
if {[catch {SetText 0x3e9 bar} msg]} {
Click cancel
} else {
Click ok
}
}
set x "[file tail $x]$msg"
} -cleanup {
unset msg
} -result bar
test winDialog-5.7.3 {GetFileName: extension {} Bug 47af31bd3ac6fbbb33cde1a5bab1e756ff2a6e00 } -constraints {
nt testwinevent
} -body {
testDialog launch {set x [tk_getSaveFile -filetypes {{All *}} -defaultextension {} -title Save]}
set msg {}
testDialog onDisplay {
if {[catch {SetText 0x3e9 bar.c} msg]} {
Click cancel
} else {
Click ok
}
}
set x "[file tail $x]$msg"
} -cleanup {
unset msg
} -result bar.c
test winDialog-5.7.4 {GetFileName: extension {} } -constraints {
nt testwinevent
} -body {
# Although the docs do not explicitly mention, -filetypes seems to
# override -defaultextension
testDialog launch {set x [tk_getSaveFile -filetypes {{C .c} {Tcl .tcl}} -defaultextension {foo} -title Save]}
set msg {}
testDialog onDisplay {
if {[catch {SetText 0x3e9 bar} msg]} {
Click cancel
} else {
Click ok
}
}
set x "[file tail $x]$msg"
} -cleanup {
unset msg
} -result bar.c
test winDialog-5.7.5 {GetFileName: extension {} } -constraints {
nt testwinevent
} -body {
# Although the docs do not explicitly mention, -filetypes seems to
# override -defaultextension
testDialog launch {set x [tk_getSaveFile -filetypes {{C .c} {Tcl .tcl}} -defaultextension {} -title Save]}
set msg {}
testDialog onDisplay {
if {[catch {SetText 0x3e9 bar} msg]} {
Click cancel
} else {
Click ok
}
}
set x "[file tail $x]$msg"
} -cleanup {
unset msg
} -result bar.c
test winDialog-5.7.6 {GetFileName: All/extension } -constraints {
nt testwinevent
} -body {
# In 8.6.4 this combination resulted in bar.aaa.aaa which is bad
testDialog launch {set x [tk_getSaveFile -filetypes {{All *}} -defaultextension {aaa} -title Save]}
set msg {}
testDialog onDisplay {
if {[catch {SetText 0x3e9 bar} msg]} {
Click cancel
} else {
Click ok
}
}
set x "[file tail $x]$msg"
} -cleanup {
unset msg
} -result bar.aaa
test winDialog-5.7.7 {tk_getOpenFile: -defaultextension} -constraints {
nt testwinevent
} -body {
unset -nocomplain x
tcltest::makeFile "" "5 7 7.aaa" $initialDir
testDialog launch {set x [tk_getOpenFile \
-defaultextension aaa \
-initialdir [file nativename $initialDir] \
-initialfile "5 7 7" -title Foo]}
testDialog onDisplay {
Click ok
}
return $x
} -result [file join $initialDir "5 7 7.aaa"]
test winDialog-5.7.8 {tk_getOpenFile: -defaultextension} -constraints {
nt testwinevent
} -body {
unset -nocomplain x
tcltest::makeFile "" "5 7 8.aaa" $initialDir
testDialog launch {set x [tk_getOpenFile \
-defaultextension aaa \
-initialdir [file nativename $initialDir] \
-initialfile "5 7 8.aaa" -title Foo]}
testDialog onDisplay {
Click ok
}
return $x
} -result [file join $initialDir "5 7 8.aaa"]
test winDialog-5.8 {GetFileName: extension doesn't begin with .} -constraints {
nt testwinevent
} -body {
testDialog launch {set x [tk_getSaveFile -defaultextension foo -title Save]}
set msg {}
testDialog onDisplay {
if {[catch {SetText 0x3e9 bar} msg]} {
Click cancel
} else {
Click ok
}
}
set x "[file tail $x]$msg"
} -cleanup {
unset msg
} -result bar.foo
test winDialog-5.9 {GetFileName: file types} -constraints {
nt testwinevent knownBug
} -body {
#
# This test was used with MS Windows versions before Windows Vista.
# Starting from that version, the test is not valid anymore because the
# dialog's file types control has no control ID and we don't have a
# mechanism to locate it.
# The test remains at this place, with constraint knownBug, to serve as an
# example/template in the event that the situation changes in the future
# somehow.
#
testDialog launch {tk_getSaveFile -filetypes {{"foo files" .foo FOOF}} -title Foo}
testDialog onDisplay {
set x [GetText 0x470]
Click cancel
}
return $x
} -result {foo files (*.foo)}
test winDialog-5.10 {GetFileName: file types: MakeFilter() fails} -constraints {
nt
} -body {
# if (MakeFilter(interp, string, &utfFilterString) != TCL_OK)
tk_getSaveFile -filetypes {{"foo" .foo FOO}}
} -returnCodes error -result {bad Macintosh file type "FOO"}
test winDialog-5.11 {GetFileName: initial directory} -constraints {
nt testwinevent
} -body {
# case FILE_INITDIR:
unset -nocomplain x
testDialog launch {set x [tk_getSaveFile \
-initialdir $initialDir \
-initialfile "12x 455" -title Foo]}
testDialog onDisplay {
Click ok
}
return $x
} -result [file join $initialDir "12x 455"]
test winDialog-5.12.4 {tk_getSaveFile: initial directory: unicode} -constraints {
nt testwinevent
} -body {
set dir [tcltest::makeDirectory "ŧéŝŧ"]
unset -nocomplain x
testDialog launch {set x [tk_getSaveFile \
-initialdir $dir \
-initialfile "testfile" -title Foo]}
testDialog onDisplay {
Click ok
}
string equal $x [file join $dir testfile]
} -result 1
test winDialog-5.12.5 {tk_getSaveFile: initial directory: nativename} -constraints {
nt testwinevent
} -body {
unset -nocomplain x
testDialog launch {set x [tk_getSaveFile \
-initialdir [file nativename $initialDir] \
-initialfile "5 12 5" -title Foo]}
testDialog onDisplay {
Click ok
}
return $x
} -result [file join $initialDir "5 12 5"]
test winDialog-5.12.6 {tk_getSaveFile: initial directory: relative} -constraints {
nt testwinevent
} -body {
# Windows remembers dirs from previous selections so use
# a subdir for this test, not $initialDir itself
set dir [tcltest::makeDirectory "5 12 6"]
set cur [pwd]
try {
cd [file dirname $dir]
unset -nocomplain x
testDialog launch {set x [tk_getSaveFile \
-initialdir "5 12 6" \
-initialfile "testfile" -title Foo]}
testDialog onDisplay {
Click ok
}
} finally {
cd $cur
}
string equal $x [file join $dir testfile]
} -result 1
test winDialog-5.12.8 {tk_getOpenFile: initial directory: .} -constraints {
nt testwinevent
} -body {
# Windows remembers dirs from previous selections so use
# a subdir for this test, not $initialDir itself
set newdir [tcltest::makeDirectory "5 12 8"]
set path [tcltest::makeFile "" "testfile" $newdir]
set cur [pwd]
try {
cd $newdir
unset -nocomplain x
testDialog launch {set x [tk_getOpenFile \
-initialdir . \
-initialfile "testfile" -title Foo]}
testDialog onDisplay {
Click ok
}
} finally {
cd $cur
}
string equal $x $path
} -result 1
test winDialog-5.12.9 {tk_getOpenFile: initial directory: unicode} -constraints {
nt testwinevent
} -body {
set dir [tcltest::makeDirectory "ŧéŝŧ"]
set path [tcltest::makeFile "" testfile $dir]
unset -nocomplain x
testDialog launch {set x [tk_getOpenFile \
-initialdir $dir \
-initialfile "testfile" -title Foo]}
testDialog onDisplay {
Click ok
}
string equal $x $path
} -result 1
test winDialog-5.12.10 {tk_getOpenFile: initial directory: nativename} -constraints {
nt testwinevent
} -body {
unset -nocomplain x
tcltest::makeFile "" "5 12 10" $initialDir
testDialog launch {set x [tk_getOpenFile \
-initialdir [file nativename $initialDir] \
-initialfile "5 12 10" -title Foo]}
testDialog onDisplay {
Click ok
}
return $x
} -result [file join $initialDir "5 12 10"]
test winDialog-5.12.11 {tk_getOpenFile: initial directory: relative} -constraints {
nt testwinevent
} -body {
# Windows remembers dirs from previous selections so use
# a subdir for this test, not $initialDir itself
set dir [tcltest::makeDirectory "5 12 11"]
set path [tcltest::makeFile "" testfile $dir]
set cur [pwd]
try {
cd [file dirname $dir]
unset -nocomplain x
testDialog launch {set x [tk_getOpenFile \
-initialdir [file tail $dir] \
-initialfile "testfile" -title Foo]}
testDialog onDisplay {
Click ok
}
} finally {
cd $cur
}
string equal $x $path
} -result 1
test winDialog-5.13 {GetFileName: initial file} -constraints {
nt testwinevent
} -body {
# case FILE_INITFILE:
testDialog launch {set x [tk_getSaveFile -initialfile "12x 456" -title Foo]}
testDialog onDisplay {
Click ok
}
file tail $x
} -result "12x 456"
test winDialog-5.16 {GetFileName: parent} -constraints {
nt
} -body {
# case FILE_PARENT:
toplevel .t
set x 0
testDialog launch {tk_getOpenFile -parent .t -title Parent; set x 1}
testDialog onDisplay {
destroy .t
}
return $x
} -result 1
test winDialog-5.17 {GetFileName: title} -constraints {
nt testwinevent
} -body {
# case FILE_TITLE:
testDialog launch {tk_getOpenFile -title Narf}
testDialog onDisplay {
Click cancel
}
} -result 0
# In the newer file dialogs, the file type widget does not even exist
# if no file types specified
test winDialog-5.18 {GetFileName: no filter specified} -constraints {
nt testwinevent
} -body {
# if (ofn.lpstrFilter == NULL)
testDialog launch {tk_getOpenFile -title Filter}
testDialog onDisplay {
catch {set x [GetText 0x470]} y
Click cancel
}
return $y
} -result {Could not find control with id 1136}
test winDialog-5.19 {GetFileName: parent HWND doesn't yet exist} -constraints {
nt
} -setup {
destroy .t
} -body {
# if (Tk_WindowId(parent) == None)
toplevel .t
testDialog launch {tk_getOpenFile -parent .t -title Open}
testDialog onDisplay {
destroy .t
}
} -result {}
test winDialog-5.20 {GetFileName: parent HWND already exists} -constraints {
nt
} -setup {
destroy .t
} -body {
toplevel .t
update
testDialog launch {tk_getOpenFile -parent .t -title Open}
testDialog onDisplay {
destroy .t
}
} -result {}
test winDialog-5.21 {GetFileName: call GetOpenFileName} -constraints {
nt testwinevent english
} -body {
# winCode = GetOpenFileName(&ofn);
testDialog launch {tk_getOpenFile -title Open}
testDialog onDisplay {
set x [GetText ok]
Click cancel
}
return $x
} -result {&Open}
test winDialog-5.22 {GetFileName: call GetSaveFileName} -constraints {
nt testwinevent english
} -body {
# winCode = GetSaveFileName(&ofn);
testDialog launch {tk_getSaveFile -title Save}
testDialog onDisplay {
set x [GetText ok]
Click cancel
}
return $x
} -result {&Save}
test winDialog-5.23 {GetFileName: convert \ to /} -constraints {
nt testwinevent
} -body {
set msg {}
testDialog launch {set x [tk_getSaveFile -title Back]}
testDialog onDisplay {
if {[catch {SetText 0x3e9 [file nativename \
[file join $initialDir "12x 457"]]} msg]} {
Click cancel
} else {
Click ok
}
}
return $x$msg
} -cleanup {
unset msg
} -result [file join $initialDir "12x 457"]
test winDialog-5.24 {GetFileName: file types: MakeFilter() succeeds} -constraints {
nt
} -body {
# MacOS type that is correct, but has embedded nulls.
testDialog launch {set x [catch {tk_getSaveFile -filetypes {{"foo" .foo {\0\0\0\0}}}}]}
testDialog onDisplay {
Click cancel
}
return $x
} -result 0
test winDialog-5.25 {GetFileName: file types: MakeFilter() succeeds} -constraints {
nt
} -body {
# MacOS type that is correct, but has embedded high-bit chars.
testDialog launch {set x [catch {tk_getSaveFile -filetypes {{"foo" .foo {••••}}}}]}
testDialog onDisplay {
Click cancel
}
return $x
} -result 0
test winDialog-6.1 {MakeFilter} -constraints {emptyTest nt} -body {}
test winDialog-7.1 {Tk_MessageBoxObjCmd} -constraints {emptyTest nt} -body {}
test winDialog-8.1 {OFNHookProc} -constraints {emptyTest nt} -body {}
## The Tk_ChooseDirectoryObjCmd hang on the static build of Windows
## because somehow the GetOpenFileName ends up a noop in the static
## build.
##
test winDialog-9.1 {Tk_ChooseDirectoryObjCmd: no arguments} -constraints {
nt testwinevent
} -body {
testDialog launch {set x [tk_chooseDirectory]}
set y [testDialog onDisplay {
Click cancel
}]
# $x should be "" on a Cancel
append x $y
} -result 0
test winDialog-9.2 {Tk_ChooseDirectoryObjCmd: one argument} -constraints {
nt
} -body {
tk_chooseDirectory -foo
} -returnCodes error -result {bad option "-foo": must be -initialdir, -mustexist, -parent, or -title}
test winDialog-9.3 {Tk_ChooseDirectoryObjCmd: many arguments} -constraints {
nt testwinevent
} -body {
testDialog launch {
tk_chooseDirectory -initialdir $initialDir -mustexist 1 -parent . -title test
}
testDialog onDisplay {
Click cancel
}
} -result 0
test winDialog-9.4 {Tk_ChooseDirectoryObjCmd: Tcl_GetIndexFromObj() != TCL_OK} -constraints {
nt
} -body {
tk_chooseDirectory -foo bar -abc
} -returnCodes error -result {bad option "-foo": must be -initialdir, -mustexist, -parent, or -title}
test winDialog-9.5 {Tk_ChooseDirectoryObjCmd: Tcl_GetIndexFromObj() == TCL_OK} -constraints {
nt testwinevent
} -body {
testDialog launch {tk_chooseDirectory -title bar}
testDialog onDisplay {
Click cancel
}
} -result 0
test winDialog-9.6 {Tk_ChooseDirectoryObjCmd: valid option, but missing value} -constraints {
nt
} -body {
tk_chooseDirectory -initialdir bar -title
} -returnCodes error -result {value for "-title" missing}
test winDialog-9.7 {Tk_ChooseDirectoryObjCmd: -initialdir} -constraints {
nt testwinevent
} -body {
# case DIR_INITIAL:
testDialog launch {set x [tk_chooseDirectory -initialdir $initialDir -title Foo]}
testDialog onDisplay {
Click ok
}
string tolower [set x]
} -result [string tolower $initialDir]
test winDialog-10.1 {Tk_FontchooserObjCmd: no arguments} -constraints {
nt testwinevent
} -body {
testDialog launch {tk fontchooser show}
list [testDialog onDisplay {
Click cancel
}] $testDialogFont
} -result {0 {}}
test winDialog-10.2 {Tk_FontchooserObjCmd: -initialfont} -constraints {
nt testwinevent
} -body {
testDialog launch {
tk fontchooser configure -command $applyFontCmd -font system
tk fontchooser show
}
list [testDialog onDisplay {
Click cancel
}] $testDialogFont
} -result {0 {}}
test winDialog-10.3 {Tk_FontchooserObjCmd: -initialfont} -constraints {
nt testwinevent
} -body {
testDialog launch {
tk fontchooser configure -command $applyFontCmd -font system
tk fontchooser show
}
list [testDialog onDisplay {
Click 1
}] [expr {[llength $testDialogFont] > 0}]
} -result {0 1}
test winDialog-10.4 {Tk_FontchooserObjCmd: -title} -constraints {
nt testwinevent
} -body {
testDialog launch {
tk fontchooser configure -command $applyFontCmd -title "tk test"
tk fontchooser show
}
list [testDialog onDisplay {
Click cancel
}] $testDialogFont
} -result {0 {}}
test winDialog-10.5 {Tk_FontchooserObjCmd: -parent} -constraints {
nt testwinevent
} -setup {
array set a {parent {}}
} -body {
testDialog launch {
tk fontchooser configure -command $applyFontCmd -parent .
tk fontchooser show
}
testDialog onDisplay {
array set a [testgetwindowinfo $testDialog]
Click cancel
}
list [expr {$a(parent) == [wm frame .]}] $testDialogFont
} -result {1 {}}
test winDialog-10.6 {Tk_FontchooserObjCmd: -apply} -constraints {
nt testwinevent
} -body {
testDialog launch {
tk fontchooser configure -command FooBarBaz
tk fontchooser show
}
testDialog onDisplay {
Click cancel
}
} -result 0
test winDialog-10.7 {Tk_FontchooserObjCmd: -apply} -constraints {
nt testwinevent
} -body {
testDialog launch {
tk fontchooser configure -command $applyFontCmd -parent .
tk fontchooser show
}
list [testDialog onDisplay {
Click [expr {0x0402}] ;# value from XP
Click cancel
}] [expr {[llength $testDialogFont] > 0}]
} -result {0 1}
test winDialog-10.8 {Tk_FontchooserObjCmd: -title} -constraints {
nt testwinevent
} -setup {
array set a {text failed}
} -body {
testDialog launch {
tk fontchooser configure -command $applyFontCmd -title "Hello"
tk fontchooser show
}
testDialog onDisplay {
array set a [testgetwindowinfo $testDialog]
Click cancel
}
set a(text)
} -result "Hello"
test winDialog-10.9 {Tk_FontchooserObjCmd: -title} -constraints {
nt testwinevent
} -setup {
array set a {text failed}
} -body {
testDialog launch {
tk fontchooser configure -command $applyFontCmd \
-title "Привет"
tk fontchooser show
}
testDialog onDisplay {
array set a [testgetwindowinfo $testDialog]
Click cancel
}
set a(text)
} -result "Привет"
#
# TESTFILE CLEANUP
#
if {[testConstraint testwinevent]} {
catch {testwinevent debug 0}
}
unset applyFontCmd initialDir
testutils forget dialog
cleanupTests
# Local variables:
# mode: tcl
# End:
|