summaryrefslogtreecommitdiff
path: root/itcl/itcl/tests/old/basic.test
blob: c5240073f58e8e882283c3c95796059508d21adf (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
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
#
# Basic tests for class definition and method/proc access
# ----------------------------------------------------------------------
#   AUTHOR:  Michael J. McLennan
#            Bell Labs Innovations for Lucent Technologies
#            mmclennan@lucent.com
#            http://www.tcltk.com/itcl
#
#      RCS:  $Id$
# ----------------------------------------------------------------------
#            Copyright (c) 1993-1998  Lucent Technologies, Inc.
# ======================================================================
# See the file "license.terms" for information on usage and
# redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.

# ----------------------------------------------------------------------
#  CLEAN THE SLATE
# ----------------------------------------------------------------------
foreach obj [itcl_info objects -class Foo] {
	$obj delete
}

# ----------------------------------------------------------------------
#  CREATING OBJECTS
# ----------------------------------------------------------------------
test {Create a simple object} {
	Foo x
} {
	$result == "x"
}

test {Make sure that object names cannot be duplicated} {
	catch "Foo x" errmsg
} {
	$result == 1
}

test {Create another object} {
	Foo xx
} {
	$result == "xx"
}

test {Create an object with an automatic name} {
	Foo #auto
} {
	[string match foo* $result]
}

test {Get list of objects in a class} {
	itcl_info objects -class Foo
} {
	[llength $result] == 3
}

# ----------------------------------------------------------------------
#  PUBLIC VARIABLES
# ----------------------------------------------------------------------
test {Info: all public variables} {
	x info public
} {
	[test_cmp_lists $result {Foo::blit Foo::blat Foo::blot}]
}

test {Info: public variable initial value} {
	x info public blit -init
} {
	$result == ""
}

test {Info: public variable initial value (undefined)} {
	x info public blit -value
} {
	$result == "<undefined>"
}

test {Info: public variable initial value} {
	x info public blat -init
} {
	$result == 0
}

test {Info: public variable current value} {
	x info public blot -value
} {
	$result == 1
}

test {Info: public variable config statement} {
	x info public blit -config
} {
	$result == ""
}

test {Info: public variable config statement} {
	x info public blot -config
} {
	$result == {global WATCH; set WATCH "blot=$blot"}
}

# ----------------------------------------------------------------------
#  CONFIG-ING PUBLIC VARIABLES
# ----------------------------------------------------------------------
test {Setting public variables via "config"} {
	x config -blit 27 -blat xyz
} {
	$result == "Foo::blit Foo::blat"
}

test {Info: public variable init/current value} {
	x info public blit -init -value
} {
	$result == {{} 27}
}

test {Info: public variable init/current value} {
	x info public blat -init -value
} {
	$result == {0 xyz}
}

test {"config" is ordinary arg if it is not last arg} {
	x configx -blit pdq
} {
	$result == {-blit|pdq}
}

test {Public variables with "config" code} {
	set WATCH ""
	concat [x config -blot abc] / $WATCH
} {
	$result == "Foo::blot / blot=abc"
}

test {Make sure object data is local to objects} {
	x config -blit abc
	xx config -blit xyz
	concat [x info public blit -value] / [xx info public blit -value]
} {
	$result == "abc / xyz"
}

# ----------------------------------------------------------------------
#  PROTECTED VARIABLES
# ----------------------------------------------------------------------
test {Info: all protected variables} {
	x info protected
} {
	[test_cmp_lists $result {Foo::_blit Foo::_blat Foo::this}]
}

test {Info: protected "this" variable} {
	x info protected this -value
} {
	$result == "::x"
}

test {Info: protected "this" variable} {
	xx info protected this -value
} {
	$result == "::xx"
}

test {Info: protected variable initial value} {
	x info protected _blit -init
} {
	$result == ""
}

test {Info: protected variable access/value} {
	x do {set _blit rst}
} {
	$result == "Foo says 'rst'" &&
	[x info protected _blit -value] == "rst"
}

# ----------------------------------------------------------------------
#  COMMON VARIABLES
# ----------------------------------------------------------------------
test {Info: all protected variables} {
	x info common
} {
	[test_cmp_lists $result {Foo::foos Foo::nfoo}]
}

test {Info: common variable initial value} {
	x info common foos -init
} {
	$result == ""
}

test {Info: common variable initial value} {
	x info common nfoo -init
} {
	$result == 0
}

test {Info: common variable access/value} {
	x do {set nfoo 999}
	x info common nfoo -value
} {
	$result == 999
}

test {Make sure common data is really common} {
	x do {set nfoo 0}
	x info common nfoo -value
} {
	$result == [xx info common nfoo -value]
}

test {Access common data in proc} {
	x do {set nfoo 10}
	Foo :: nfoos
} {
	$result == 10
}

test {Common variables can be initialized within class definition} {
	x do {if {[info exists foos(_ignore_)]} {set foos(_ignore_)}}
} {
	$result == "Foo says 'foos-is-now-an-array'"
}

test {Arrays as common data} {
	Foo :: foos
} {
	[test_cmp_lists $result [itcl_info objects -class Foo]]
}

# ----------------------------------------------------------------------
#  METHODS
# ----------------------------------------------------------------------
test {Info: all methods} {
	x info method
} {
	[test_cmp_lists $result {
		Foo::constructor Foo::destructor
		Foo::nothing Foo::do Foo::xecho
		Foo::config Foo::xconfig Foo::configx
		Foo::testMethodArgs
		Foo::configure Foo::delete Foo::cget Foo::isa
	}]
}

test {Info: method args} {
	x info method nothing -args
} {
	$result == ""
}

test {Info: method args} {
	x info method xconfig -args
} {
	$result == "x config"
}

test {Info: method body} {
	x info method nothing -body
} {
	$result == ""
}

test {Info: method body} {
	x info method xconfig -body
} {
	$result == {
		return "$x|$config"
	}
}

# ----------------------------------------------------------------------
#  PROCS
# ----------------------------------------------------------------------
test {Info: all procs} {
	x info proc
} {
	[test_cmp_lists $result {
		Foo::echo Foo::foos Foo::nfoos Foo::testProcArgs
	}]
}

test {Info: proc args} {
	x info proc nfoos -args
} {
	$result == ""
}

test {Info: proc args} {
	x info proc foos -args
} {
	$result == "{pattern *}"
}

test {Info: proc body} {
	x info proc nfoos -body
} {
	$result == {
		return $nfoo
	}
}

test {Info: proc body} {
	x info body nfoos
} {
	$result == {
		return $nfoo
	}
}

# ----------------------------------------------------------------------
#  ARGUMENT LISTS
# ----------------------------------------------------------------------
test {Default arguments can get assigned a proper value} {
	Foo :: foos x*
} {
	[test_cmp_lists $result {x xx}]
}

test {Default value for "config" argument} {
	x config
} {
	$result == "Foo::blit Foo::blat" &&
	[x info public blit -value] == "auto" &&
	[x info public blat -value] == "matic"
}

test {"args" formal argument absorbs extra arguments} {
	Foo :: echo abc 1 2 3
} {
	$result == "abc | 3: 1 2 3"
}

test {"args" formal argument absorbs extra arguments} {
	Foo :: echo def
} {
	$result == "def | 0: "
}

test {"args" formal argument absorbs extra arguments} {
	x xecho abc 1 2 3
} {
	$result == "abc | 3: 1 2 3"
}

test {"args" formal argument absorbs extra arguments} {
	x xecho def
} {
	$result == "def | 0: "
}

test {Extra args cause an error} {
	catch "x configx arg arg error"
} {
	$result != 0
}

test {Extra args cause an error} {
	catch "x nothing error"
} {
	$result != 0
}

test {Formal arguments don't clobber public/protected variables} {
	x do {
		set blit okay
		set _blit no-problem
	}
	x testMethodArgs yuck puke etc.
} {
	$result == "yuck, puke, and 1 other args" &&
	[x info public blit -value] == "okay" &&
	[x info protected _blit -value] == "no-problem"
}

test {Formal arguments don't clobber common variables} {
	Foo :: testProcArgs yuck etc.
} {
	$result == "yuck, and 1 other args" &&
	[x info common nfoo -value] != "yuck"
}

# ----------------------------------------------------------------------
#  DELETING OBJECTS
# ----------------------------------------------------------------------
test {Delete an object} {
	x delete
} {
	$result == ""
}

test {Delete an object} {
	xx delete
} {
	$result == ""
}

test {Destructor is properly invoked} {
	Foo :: foos
} {
	[test_cmp_lists $result [itcl_info objects -class Foo]]
}

test {Object names are removed as commands} {
	expr {[info commands x] == "" && [info commands xx] == ""}
} {
	$result == 1
}