summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_minidom.py
blob: 73c8ac48e55adda4a9eb6020d07b30aeeda9dffd (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
# test for xml.dom.minidom

from xml.dom.minidom import parse, Node, Document, parseString

import os.path
import sys
import traceback

if __name__ == "__main__":
    base = sys.argv[0]
else:
    base = __file__
tstfile = os.path.join(os.path.dirname(base), "test.xml")
del base

Node._debug=1

def testGetElementsByTagName( ):
    dom=parse( tstfile )
    assert dom.getElementsByTagName( "LI" )==\
            dom.documentElement.getElementsByTagName( "LI" )
    dom.unlink()
    dom=None
    assert( len( Node.allnodes ))==0

def testInsertBefore( ):
    dom=parse( tstfile )
    docel=dom.documentElement
    #docel.insertBefore( dom.createProcessingInstruction("a", "b"),
    #                        docel.childNodes[1])
                            
    #docel.insertBefore( dom.createProcessingInstruction("a", "b"),
    #                        docel.childNodes[0])

    #assert docel.childNodes[0].target=="a"
    #assert docel.childNodes[2].target=="a"
    dom.unlink()
    del dom
    del docel
    assert( len( Node.allnodes ))==0

def testAppendChild():
    dom=parse( tstfile )
    dom.documentElement.appendChild( dom.createComment( u"Hello" ))
    assert dom.documentElement.childNodes[-1].nodeName=="#comment"
    assert dom.documentElement.childNodes[-1].data=="Hello"
    dom.unlink()
    dom=None
    assert( len( Node.allnodes ))==0

def testNonZero():
    dom=parse( tstfile )
    assert dom # should not be zero
    dom.appendChild( dom.createComment( "foo" ) )
    assert not dom.childNodes[-1].childNodes
    dom.unlink()
    dom=None
    assert( len( Node.allnodes ))==0

def testUnlink():
    dom=parse( tstfile )
    dom.unlink()
    dom=None
    assert( len( Node.allnodes ))==0

def testElement():
    dom=Document()
    dom.appendChild( dom.createElement( "abc" ) )
    assert dom.documentElement
    dom.unlink()
    dom=None
    assert( len( Node.allnodes ))==0

def testAAA():
    dom=parseString( "<abc/>" )
    el=dom.documentElement
    el.setAttribute( "spam", "jam2" )
    dom.unlink()
    dom=None

def testAAB():
    dom=parseString( "<abc/>" )
    el=dom.documentElement
    el.setAttribute( "spam", "jam" )
    el.setAttribute( "spam", "jam2" )
    dom.unlink()
    dom=None

def testAddAttr():
    dom=Document()
    child=dom.appendChild( dom.createElement( "abc" ) )

    child.setAttribute( "def", "ghi" )
    assert child.getAttribute( "def" )=="ghi"
    assert child.attributes["def"].value=="ghi"

    child.setAttribute( "jkl", "mno" )
    assert child.getAttribute( "jkl" )=="mno"
    assert child.attributes["jkl"].value=="mno"

    assert len( child.attributes )==2

    child.setAttribute( "def", "newval" )
    assert child.getAttribute( "def" )=="newval"
    assert child.attributes["def"].value=="newval"

    assert len( child.attributes )==2

    dom.unlink()
    dom=None
    child=None

def testDeleteAttr():
    dom=Document()
    child=dom.appendChild( dom.createElement( "abc" ) )

    assert len( child.attributes)==0
    child.setAttribute( "def", "ghi" )
    assert len( child.attributes)==1
    del child.attributes["def"]
    assert len( child.attributes)==0
    dom.unlink()
    assert( len( Node.allnodes ))==0

def testRemoveAttr():
    dom=Document()
    child=dom.appendChild( dom.createElement( "abc" ) )

    child.setAttribute( "def", "ghi" )
    assert len( child.attributes)==1
    child.removeAttribute("def" )
    assert len( child.attributes)==0

    dom.unlink()

def testRemoveAttrNS():
    dom=Document()
    child=dom.appendChild( 
            dom.createElementNS( "http://www.python.org", "python:abc" ) )
    child.setAttributeNS( "http://www.w3.org", "xmlns:python", 
                                            "http://www.python.org" )
    child.setAttributeNS( "http://www.python.org", "python:abcattr", "foo" )
    assert len( child.attributes )==2
    child.removeAttributeNS( "http://www.python.org", "abcattr" )
    assert len( child.attributes )==1

    dom.unlink()
    dom=None
    
def testRemoveAttributeNode():
    dom=Document()
    child=dom.appendChild( dom.createElement( "foo" ) )
    child.setAttribute( "spam", "jam" )
    assert len( child.attributes )==1
    node=child.getAttributeNode( "spam" )
    child.removeAttributeNode( node )
    assert len( child.attributes )==0

    dom.unlink()
    dom=None
    assert len( Node.allnodes )==0

def testChangeAttr():
    dom=parseString( "<abc/>" )
    el=dom.documentElement
    el.setAttribute( "spam", "jam" )
    assert len( el.attributes )==1
    el.setAttribute( "spam", "bam" )
    assert len( el.attributes )==1
    el.attributes["spam"]="ham"
    assert len( el.attributes )==1
    el.setAttribute( "spam2", "bam" )
    assert len( el.attributes )==2
    el.attributes[ "spam2"]= "bam2"
    assert len( el.attributes )==2
    dom.unlink()
    dom=None
    assert len( Node.allnodes )==0

def testGetAttrList():
    pass

def testGetAttrValues(): pass

def testGetAttrLength(): pass

def testGetAttribute(): pass

def testGetAttributeNS(): pass

def testGetAttributeNode(): pass

def testGetElementsByTagNameNS(): pass

def testGetEmptyNodeListFromElementsByTagNameNS(): pass

def testElementReprAndStr():
    dom=Document()
    el=dom.appendChild( dom.createElement( "abc" ) )
    string1=repr( el )
    string2=str( el )
    assert string1==string2
    dom.unlink()

# commented out until Fredrick's fix is checked in
def _testElementReprAndStrUnicode():
    dom=Document()
    el=dom.appendChild( dom.createElement( u"abc" ) )
    string1=repr( el )
    string2=str( el )
    assert string1==string2
    dom.unlink()

# commented out until Fredrick's fix is checked in
def _testElementReprAndStrUnicodeNS():
    dom=Document()
    el=dom.appendChild(
	 dom.createElementNS( u"http://www.slashdot.org", u"slash:abc" ))
    string1=repr( el )
    string2=str( el )
    assert string1==string2
    assert string1.find("slash:abc" )!=-1
    dom.unlink()

def testAttributeRepr():
    dom=Document()
    el=dom.appendChild( dom.createElement( u"abc" ) )
    node=el.setAttribute( "abc", "def" )
    assert str( node ) == repr( node )
    dom.unlink()

def testTextNodeRepr(): pass

def testWriteXML(): pass

def testProcessingInstruction(): pass

def testProcessingInstructionRepr(): pass

def testTextRepr(): pass

def testWriteText(): pass

def testDocumentElement(): pass

def testTooManyDocumentElements(): pass

def testCreateElementNS(): pass

def testCreatAttributeNS(): pass

def testParse(): pass

def testParseString(): pass

def testComment(): pass

def testAttrListItem(): pass

def testAttrListItems(): pass

def testAttrListItemNS(): pass

def testAttrListKeys(): pass

def testAttrListKeysNS(): pass

def testAttrListValues(): pass

def testAttrListLength(): pass

def testAttrList__getitem__(): pass

def testAttrList__setitem__(): pass

def testSetAttrValueandNodeValue(): pass

def testParseElement(): pass

def testParseAttributes(): pass

def testParseElementNamespaces(): pass

def testParseAttributeNamespaces(): pass

def testParseProcessingInstructions(): pass

def testChildNodes(): pass

def testFirstChild(): pass

def testHasChildNodes(): pass

def testCloneElementShallow(): pass

def testCloneElementShallowCopiesAttributes(): pass

def testCloneElementDeep(): pass

def testCloneDocumentShallow(): pass

def testCloneDocumentDeep(): pass

def testCloneAttributeShallow(): pass

def testCloneAttributeDeep(): pass

def testClonePIShallow(): pass

def testClonePIDeep(): pass


names=globals().keys()
names.sort()
for name in names:
    if name.startswith( "test" ):
        func=globals()[name]
        try:
            func()
            print "Test Succeeded", name
            if len( Node.allnodes ):
                print "Garbage left over:"
                print Node.allnodes.items()[0:10]
            Node.allnodes={}
        except Exception, e :
            print "Test Failed: ", name
            apply( traceback.print_exception, sys.exc_info() )
            print `e`
            Node.allnodes={}
            raise