File: decls.test

package info (click to toggle)
tclxml 3.1-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,080 kB
  • ctags: 876
  • sloc: ansic: 6,064; tcl: 5,116; xml: 4,642; sh: 3,112; makefile: 60
file content (351 lines) | stat: -rw-r--r-- 9,657 bytes parent folder | download | duplicates (2)
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
# Features covered:  Declarations
#
# This file contains a collection of tests for the TclXML parser.
# This file tests the parser's performance on markup declarations.
# Sourcing this file into Tcl runs the tests and generates output
# for errors.  No output means no errors were found.
#
# Copyright (c) 2000-2004 Zveno Pty Ltd.
#
# $Id: decls.test,v 1.15 2004/02/20 09:15:52 balls Exp $

package require tcltest
source [file join [tcltest::workingDirectory] tclxmlutils.tcl]

testPackage $::tcltest::parser

namespace eval ::xml::declsTest {
    namespace import -force ::tcltest::*

    variable SETUP {
	catch {unset elements}
	variable elements
	array set elements {}
	catch {unset attrs}
	variable attrs
	array set attrs {}
	catch {unset entities}
	variable entities
	array set entities {}
	catch {unset externals}
	variable externals
	array set externals {}
	catch {unset cdata}
	variable cdata {}

	proc elementDecl {name cmodel} {
	    variable elements
	    set elements($name) $cmodel
	}
	proc attlistDecl {name attName type default dfltValue} {
	    variable attrs
	    lappend attrs($name/$attName) $type $default $dfltValue
	}
	proc entityDecl {name args} {
	    variable entities
	    switch [llength $args] {
		1 {
		    set entities($name) [lindex $args 0]
	 	}
		2 {
		    set externals($name) $args
		}
		default {
		    error "wrong number of arguments"
		}
	    }
	}
	proc CData data {
	    variable cdata
	    append cdata [string trim $data]
	}

	set parser [xml::parser \
		-elementdeclcommand [namespace code elementDecl] \
		-attlistdeclcommand [namespace code attlistDecl] \
		-entitydeclcommand [namespace code entityDecl]]

    }
    variable CLEANUP {
	catch {unset elements}
	catch {unset attrs}
	catch {unset entities}
	catch {unset externals}
	catch {unset cdata}
	rename elementDecl {}
	rename attlistDecl {}
	rename entityDecl {}
	rename CData {}
	$parser free
    }

    # Internal DTD subset

    test decls-1.1 {element declaration} -setup $SETUP -constraints {!xml_libxml2} -body {
	$parser parse {<?xml version="1.0"?>
<!DOCTYPE Test [
<!ELEMENT Test (#PCDATA)>
]>
<Test></Test>
}

	array get elements
    } -cleanup $CLEANUP -result {Test (#PCDATA)}

    test decls-2.1 {attribute list declaration, implied} -setup $SETUP -constraints {!xml_libxml2} -body {
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test [
<!ELEMENT Test (#PCDATA)>
<!ATTLIST Test
	test CDATA #IMPLIED>
]>
<Test test="value"/>}

	array get attrs
    } -cleanup $CLEANUP -result {Test/test {CDATA #IMPLIED {}}}

    test decls-2.2 {attribute list declaration, enum} -setup $SETUP -constraints {!xml_libxml2} -body {
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test [
<!ELEMENT Test (#PCDATA)>
<!ATTLIST Test
	test (LGL|OTH) "LGL">
]>
<Test test="value"/>}

	array get attrs
    } -cleanup $CLEANUP -result {Test/test {LGL|OTH {} LGL}}

    # Disable this test for the moment
    test decls-2.3 {attribute list declaration, error} -setup $SETUP -match regexp -body {
	expectError {
	    $parser parse {<?xml version='1.0'?>
<!DOCTYPE Test [
<!ELEMENT Test (#PCDATA)>
<!ATTLIST Test
	test CDATA>
]>
<Test test="value"/>}}
    } -cleanup $CLEANUP -result {(unexpected text)|(.*space-required.*)}

    # Bug #714316
    test decls-2.4 {attribute list declaration - multiple attribute definitions} -setup $SETUP -body {
	$parser parse {<!DOCTYPE Test [
<!ELEMENT Test (#PCDATA)>
<!ATTLIST Test
	test CDATA #IMPLIED
	id ID #IMPLIED>
]>
<Test/>
}
	ok
    } -cleanup $CLEANUP -result {}

    test decls-3.1 {entity declarations} -setup $SETUP -constraints {!xml_libxml2} -body {
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test [
<!ENTITY testEnt "replacement text">
<!ELEMENT Test (#PCDATA)>
]>
<Test/>}

	array get entities
    } -cleanup $CLEANUP -result {testEnt {replacement text}}

    test decls-4.1 {parameter entity declarations} -setup $SETUP -constraints {!xml_libxml2 && !xml_tcl} -body {
	expectError {
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test [
<!ENTITY % PEnt "&#60;!ELEMENT Test (#PCDATA)&#62;">
%PEnt;
]>
<Test/>}
	}
	#list [array get entities] [array get elements]
    } -cleanup $CLEANUP -result {{PEnt {<!ELEMENT Test (#PCDATA)>}} {Test (#PCDATA)}}

    # Example from XML Rec. section 4.5
    test decls-4.2 {parameter entity declarations} -setup $SETUP -constraints {!xml_libxml2} -body {
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test [
<!ENTITY % pub    "&#xc9;ditions Gallimard" >
<!ENTITY   rights "All rights reserved" >
<!ENTITY   book   "La Peste: Albert Camus,
&#xA9; 1947 %pub;. &rights;" >

<!ELEMENT Test EMPTY>
]>
<Test>&book;</Test>}

	array get entities book
    } -cleanup $CLEANUP -result [list book [format {La Peste: Albert Camus,
%c 1947 %cditions Gallimard. &rights;} 169 201]]

    # First example from XML Rec. appendix D
    # This test requires a validating parser
    test decls-4.3 {parameter entity declarations} -setup $SETUP -constraints {validating} -body {
	$parser configure -validate 1
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test [
<!ENTITY Example "<p>An ampersand (&#38;#38;) may be escaped
numerically (&#38;#38;#38;) or with a general entity
(&amp;amp;).</p>" >

<!ELEMENT Test (#PCDATA|p)*>
<!ELEMENT p (#PCDATA)>
]>
<Test>&Example;</Test>}

	set cdata
    } -cleanup $CLEANUP -result {An ampersand (&) may be escaped
numerically (&#38;) or with a general entity
(&amp;).}

    # NB. entity.test tests entity replacement as well

    # External entities

    test decls-5.1 {external entity} -setup $SETUP -constraints {validating} -body {
	$parser configure \
		-validate 1 \
		-baseuri file://[file join [pwd] decls.test]]
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test SYSTEM "dtd-5.1.dtd">
<Test/>}

	array get elements
    } -cleanup $CLEANUP -result {Test (#PCDATA)}

    test decls-5.2 {external DTD subset} -setup $SETUP -constraints {validating} -body {
	$parser configure \
		-validate 1 \
		-parameterentitydeclcommand entityDecl \
		-baseuri file://[file join [pwd] decls.test]]
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test SYSTEM "dtd-5.2.dtd">
<Test/>}

	list [array get elements] [array get entities]
    } -cleanup $CLEANUP -result {{Test (#PCDATA)} {content (#PCDATA)}}

    test decls-5.3 {external entity} -setup $SETUP -constraints {validating} -body {
	$parser configure \
		-validate 1 \
		-parameterentitydeclcommand entityDecl \
		-baseuri file://[file join [pwd] decls.test]]
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test [
<!ENTITY % module SYSTEM "dtd-5.2.dtd">
%module;
]>
<Test/>}

	list [array get elements] [array get entities] [array get externals]
    } -cleanup $CLEANUP -result {{Test (#PCDATA)} {content (#PCDATA)} {module {dtd-5.2.dtd {}}}}

    # Bug #676399
    test decls-5.4 {external entity w/- baseuri} -setup {
	set parser [::xml::parser -validate 1 -baseuri file://[file join [workingDirectory] decls.test]]
    } -constraints {xml_tcl} -body {
	$parser parse {<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE foo SYSTEM "dtd-5.4.dtd">
<foo/>
}
    } -cleanup {
	$parser free
    } -result {}

    # Conditional Sections

    test decls-6.1 {conditional section: include} -setup $SETUP -constraints {validating} -body {
	$parser configure \
		-validate 1 \
		-baseuri file://[file join [pwd] decls.test]]
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test SYSTEM "dtd-6.1.dtd">
<Test/>}

	array get elements
    } -cleanup $CLEANUP -result {Test (#PCDATA)}

    test decls-6.2 {conditional section: include, empty} -setup $SETUP -constraints {validating} -body {
	$parser configure \
		-validate 1 \
		-baseuri file://[file join [pwd] decls.test]]
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test SYSTEM "dtd-6.2.dtd">
<Test/>}

	array get elements
    } -cleanup $CLEANUP -result {}
    test decls-6.3 {conditional section: include, empty} -setup $SETUP -constraints {validating} -body {
	$parser configure \
		-validate 1 \
		-baseuri file://[file join [pwd] decls.test]]
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test SYSTEM "dtd-6.3.dtd">
<Test/>}

	array get elements
    } -cleanup $CLEANUP -result {}

    test decls-6.4 {conditional section: include, nested} -setup $SETUP -constraints {validating} -body {
	$parser configure \
		-validate 1 \
		-baseuri file://[file join [pwd] decls.test]]
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test SYSTEM "dtd-6.4.dtd">
<Test/>}

	array size elements
    } -cleanup $CLEANUP -result 3

    test decls-6.5 {conditional section: ignore} -setup $SETUP -constraints {validating} -body {
	$parser configure \
		-validate 1 \
		-baseuri file://[file join [pwd] decls.test]]
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test SYSTEM "dtd-6.5.dtd">
<Test/>}

	array size elements
    } -cleanup $CLEANUP -result 0

    test decls-6.6 {conditional section/PE combo} -setup $SETUP -constraints {validating} -body {
	$parser configure \
		-validate 1 \
		-baseuri file://[file join [pwd] decls.test]]
	$parser parse {<?xml version='1.0'?>
<!DOCTYPE Test SYSTEM "dtd-6.6.dtd">
<Test/>}

	array size elements
    } -cleanup $CLEANUP -result 2

    test decls-7.1 {comment in DTD} -setup $SETUP -constraints !xml_libxml2 -body {
	$parser parse {
<!DOCTYPE Test [
<!-- a simple comment -->
<!ELEMENT Test (#PCDATA)>
]>
<Test></Test>
}
	array get elements
    } -cleanup $CLEANUP -result {Test (#PCDATA)}

    test decls-7.2 {complex comment in DTD} -setup $SETUP -constraints !xml_libxml2 -body {
	$parser parse {
<!DOCTYPE Test [
<!-- <Type> </Type> -->
<!ELEMENT Test (#PCDATA)>
]>
<Test></Test>
}
	array get elements
    } -cleanup $CLEANUP -result {Test (#PCDATA)}

    cleanupTests
}

namespace delete ::xml::declsTest
return