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
|
# This file is a Tcl script to test the command "pkgconfig".
#
# Copyright © 1991-1993 The Regents of the University of California.
# Copyright © 1994-1996 Sun Microsystems, Inc.
# Copyright © 1998-1999 Scriptics Corporation.
# Copyright © 2017 Stuart Cassoff <stwo@users.sourceforge.net>
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# 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
#
# TESTS
#
test pkgconfig-1.1 {query keys} -constraints {nonwin} -body {
lsort [::tk::pkgconfig list]
} -match glob -result [list \
*bindir,install bindir,runtime *demodir,install \
demodir,runtime*docdir,install docdir,runtime fontsystem \
includedir,install includedir,runtime \
libdir,install libdir,runtime*\
scriptdir,install scriptdir,runtime*\
]
test pkgconfig-1.2 {query keys multiple times} {
string compare [::tk::pkgconfig list] [::tk::pkgconfig list]
} 0
test pkgconfig-1.3 {query value multiple times} {
string compare \
[::tk::pkgconfig get fontsystem] \
[::tk::pkgconfig get fontsystem]
} 0
test pkgconfig-2.0 {error: missing subcommand} {
catch {::tk::pkgconfig} msg
set msg
} {wrong # args: should be "::tk::pkgconfig subcommand ?arg?"}
test pkgconfig-2.1 {error: illegal subcommand} {
catch {::tk::pkgconfig foo} msg
set msg
} {bad subcommand "foo": must be get or list}
test pkgconfig-2.2 {error: list with arguments} {
catch {::tk::pkgconfig list foo} msg
set msg
} {wrong # args: should be "::tk::pkgconfig list"}
test pkgconfig-2.3 {error: get without arguments} {
catch {::tk::pkgconfig get} msg
set msg
} {wrong # args: should be "::tk::pkgconfig get key"}
test pkgconfig-2.4 {error: query unknown key} {
catch {::tk::pkgconfig get foo} msg
set msg
} {key not known}
test pkgconfig-2.5 {error: query with to many arguments} {
catch {::tk::pkgconfig get foo bar} msg
set msg
} {wrong # args: should be "::tk::pkgconfig subcommand ?arg?"}
#
# TESTFILE CLEANUP
#
cleanupTests
|