-
-
Notifications
You must be signed in to change notification settings - Fork 599
/
Copy pathtest_xsd_parse.py
610 lines (549 loc) · 19.4 KB
/
test_xsd_parse.py
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
import datetime
import pytest
from lxml import etree
from tests.utils import load_xml
from zeep import exceptions, xsd
from zeep.xsd.schema import Schema
def test_sequence_parse_regression():
schema_doc = load_xml(
b"""
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema xmlns:tns="http://tests.python-zeep.org/attr"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
targetNamespace="http://tests.python-zeep.org/attr">
<xsd:complexType name="Result">
<xsd:attribute name="id" type="xsd:int" use="required"/>
</xsd:complexType>
<xsd:element name="Response">
<xsd:complexType>
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="1" name="Result" type="tns:Result"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
"""
)
response_doc = load_xml(
b"""
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Response xmlns="http://tests.python-zeep.org/attr">
<Result id="2"/>
</Response>
</s:Body>
</s:Envelope>
"""
)
schema = xsd.Schema(schema_doc)
elm = schema.get_element("{http://tests.python-zeep.org/attr}Response")
node = response_doc.xpath(
"//ns0:Response",
namespaces={
"xsd": "http://www.w3.org/2001/XMLSchema",
"ns0": "http://tests.python-zeep.org/attr",
},
)
response = elm.parse(node[0], None)
assert response.Result.id == 2
def test_sequence_parse_anytype():
custom_type = xsd.Element(
etree.QName("http://tests.python-zeep.org/", "container"),
xsd.ComplexType(
xsd.Sequence(
[
xsd.Element(
etree.QName("http://tests.python-zeep.org/", "item_1"),
xsd.AnyType(),
)
]
)
),
)
expected = etree.fromstring(
"""
<ns0:container xmlns:ns0="http://tests.python-zeep.org/">
<ns0:item_1>foo</ns0:item_1>
</ns0:container>
"""
)
obj = custom_type.parse(expected, None)
assert obj.item_1 == "foo"
def test_sequence_parse_anytype_nil():
schema = xsd.Schema(
load_xml(
b"""
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema xmlns:tns="http://tests.python-zeep.org/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
targetNamespace="http://tests.python-zeep.org/">
<xsd:element name="container">
<xsd:complexType>
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="1" name="item_1" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
"""
)
)
container = schema.get_element("{http://tests.python-zeep.org/}container")
expected = etree.fromstring(
"""
<ns0:container
xmlns:ns0="http://tests.python-zeep.org/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ns0:item_1 xsi:type="xsd:anyType"/>
</ns0:container>
"""
)
obj = container.parse(expected, schema)
assert obj.item_1 is None
def test_sequence_parse_anytype_obj():
value_type = xsd.ComplexType(
xsd.Sequence(
[xsd.Element("{http://tests.python-zeep.org/}value", xsd.Integer())]
)
)
schema = Schema(
etree.Element(
"{http://www.w3.org/2001/XMLSchema}Schema",
targetNamespace="http://tests.python-zeep.org/",
)
)
root = schema.root_document
root.register_type("{http://tests.python-zeep.org/}something", value_type)
custom_type = xsd.Element(
etree.QName("http://tests.python-zeep.org/", "container"),
xsd.ComplexType(
xsd.Sequence(
[
xsd.Element(
etree.QName("http://tests.python-zeep.org/", "item_1"),
xsd.AnyType(),
)
]
)
),
)
expected = etree.fromstring(
"""
<ns0:container
xmlns:ns0="http://tests.python-zeep.org/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ns0:item_1 xsi:type="ns0:something">
<ns0:value>100</ns0:value>
</ns0:item_1>
</ns0:container>
"""
)
obj = custom_type.parse(expected, schema)
assert obj.item_1.value == 100
def test_sequence_parse_anytype_regression_17():
schema_doc = load_xml(
b"""
<?xml version="1.0" encoding="utf-8"?>
<schema
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://tests.python-zeep.org/tst"
elementFormDefault="qualified"
targetNamespace="http://tests.python-zeep.org/tst">
<complexType name="CustomField">
<sequence>
<element name="parentItemURI" type="xsd:string"/>
<element name="key" type="xsd:string"/>
<element name="value" nillable="true"/>
</sequence>
</complexType>
<complexType name="Text">
<sequence>
<element name="type" type="xsd:string"/>
<element name="content" type="xsd:string"/>
<element name="contentLossy" type="xsd:boolean"/>
</sequence>
</complexType>
<element name="getCustomFieldResponse">
<complexType>
<sequence>
<element name="getCustomFieldReturn" type="tns:CustomField"/>
</sequence>
</complexType>
</element>
</schema>
"""
)
xml = load_xml(
b"""
<?xml version="1.0" encoding="utf-8"?>
<tst:getCustomFieldResponse
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tst="http://tests.python-zeep.org/tst">
<tst:getCustomFieldReturn>
<tst:parentItemURI>blabla</tst:parentItemURI>
<tst:key>solution</tst:key>
<tst:value xsi:type="tst:Text">
<tst:type xsi:type="xsd:string">text/html</tst:type>
<tst:content xsi:type="xsd:string">Test Solution</tst:content>
<tst:contentLossy xsi:type="xsd:boolean">false</tst:contentLossy>
</tst:value>
</tst:getCustomFieldReturn>
</tst:getCustomFieldResponse>
"""
)
schema = xsd.Schema(schema_doc)
elm = schema.get_element("{http://tests.python-zeep.org/tst}getCustomFieldResponse")
result = elm.parse(xml, schema)
assert result.getCustomFieldReturn.value.content == "Test Solution"
def test_nested_complex_type():
custom_type = xsd.Element(
etree.QName("http://tests.python-zeep.org/", "authentication"),
xsd.ComplexType(
xsd.Sequence(
[
xsd.Element(
etree.QName("http://tests.python-zeep.org/", "item_1"),
xsd.String(),
),
xsd.Element(
etree.QName("http://tests.python-zeep.org/", "item_2"),
xsd.ComplexType(
xsd.Sequence(
[
xsd.Element(
"{http://tests.python-zeep.org/}item_2a",
xsd.String(),
),
xsd.Element(
"{http://tests.python-zeep.org/}item_2b",
xsd.String(),
),
]
)
),
),
]
)
),
)
expected = etree.fromstring(
"""
<ns0:container xmlns:ns0="http://tests.python-zeep.org/">
<ns0:item_1>foo</ns0:item_1>
<ns0:item_2>
<ns0:item_2a>2a</ns0:item_2a>
<ns0:item_2b>2b</ns0:item_2b>
</ns0:item_2>
</ns0:container>
"""
)
obj = custom_type.parse(expected, None)
assert obj.item_1 == "foo"
assert obj.item_2.item_2a == "2a"
assert obj.item_2.item_2b == "2b"
def test_nested_complex_type_optional():
custom_type = xsd.Element(
etree.QName("http://tests.python-zeep.org/", "authentication"),
xsd.ComplexType(
xsd.Sequence(
[
xsd.Element(
etree.QName("http://tests.python-zeep.org/", "item_1"),
xsd.String(),
),
xsd.Element(
etree.QName("http://tests.python-zeep.org/", "item_2"),
xsd.ComplexType(
xsd.Sequence(
[
xsd.Choice(
[
xsd.Element(
"{http://tests.python-zeep.org/}item_2a1",
xsd.String(),
min_occurs=0,
),
xsd.Element(
"{http://tests.python-zeep.org/}item_2a2",
xsd.String(),
min_occurs=0,
),
]
),
xsd.Element(
"{http://tests.python-zeep.org/}item_2b",
xsd.String(),
),
]
)
),
min_occurs=0,
max_occurs="unbounded",
),
]
)
),
)
expected = etree.fromstring(
"""
<ns0:container xmlns:ns0="http://tests.python-zeep.org/">
<ns0:item_1>foo</ns0:item_1>
</ns0:container>
"""
)
obj = custom_type.parse(expected, None)
assert obj.item_1 == "foo"
assert obj.item_2 == []
expected = etree.fromstring(
"""
<ns0:container xmlns:ns0="http://tests.python-zeep.org/">
<ns0:item_1>foo</ns0:item_1>
<ns0:item_2/>
</ns0:container>
"""
)
obj = custom_type.parse(expected, None)
assert obj.item_1 == "foo"
assert obj.item_2 == [None]
expected = etree.fromstring(
"""
<ns0:container xmlns:ns0="http://tests.python-zeep.org/">
<ns0:item_1>foo</ns0:item_1>
<ns0:item_2>
<ns0:item_2a1>x</ns0:item_2a1>
</ns0:item_2>
</ns0:container>
"""
)
obj = custom_type.parse(expected, None)
assert obj.item_1 == "foo"
assert obj.item_2[0].item_2a1 == "x"
assert obj.item_2[0].item_2b is None
expected = etree.fromstring(
"""
<ns0:container xmlns:ns0="http://tests.python-zeep.org/">
<ns0:item_1>foo</ns0:item_1>
<ns0:item_2>
<ns0:item_2a1>x</ns0:item_2a1>
<ns0:item_2b/>
</ns0:item_2>
</ns0:container>
"""
)
obj = custom_type.parse(expected, None)
assert obj.item_1 == "foo"
assert obj.item_2[0].item_2a1 == "x"
assert obj.item_2[0].item_2b is None
def test_nested_choice_optional():
custom_type = xsd.Element(
etree.QName("http://tests.python-zeep.org/", "authentication"),
xsd.ComplexType(
xsd.Sequence(
[
xsd.Element(
etree.QName("http://tests.python-zeep.org/", "item_1"),
xsd.String(),
),
xsd.Choice(
[
xsd.Element(
"{http://tests.python-zeep.org/}item_2", xsd.String()
),
xsd.Element(
"{http://tests.python-zeep.org/}item_3", xsd.String()
),
],
min_occurs=0,
max_occurs=1,
),
]
)
),
)
expected = etree.fromstring(
"""
<ns0:container xmlns:ns0="http://tests.python-zeep.org/">
<ns0:item_1>foo</ns0:item_1>
<ns0:item_2>bar</ns0:item_2>
</ns0:container>
"""
)
obj = custom_type.parse(expected, None)
assert obj.item_1 == "foo"
assert obj.item_2 == "bar"
expected = etree.fromstring(
"""
<ns0:container xmlns:ns0="http://tests.python-zeep.org/">
<ns0:item_1>foo</ns0:item_1>
</ns0:container>
"""
)
obj = custom_type.parse(expected, None)
assert obj.item_1 == "foo"
assert obj.item_2 is None
assert obj.item_3 is None
def test_union():
schema_doc = load_xml(
b"""
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://tests.python-zeep.org/tst"
elementFormDefault="qualified"
targetNamespace="http://tests.python-zeep.org/tst">
<xsd:element name="State" type="tns:StateType"/>
<xsd:complexType name="StateType">
<xsd:simpleContent>
<xsd:extension base="tns:StateBaseType">
<xsd:anyAttribute namespace="##other" processContents="lax"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="tns:StateBaseType">
<xsd:union memberTypes="tns:Type1 tns:Type2"/>
</xsd:simpleType>
<xsd:simpleType name="Type1">
<xsd:restriction base="xsd:NMTOKEN">
<xsd:maxLength value="255"/>
<xsd:enumeration value="Idle"/>
<xsd:enumeration value="Processing"/>
<xsd:enumeration value="Stopped"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="Type2">
<xsd:restriction base="xsd:NMTOKEN">
<xsd:maxLength value="255"/>
<xsd:enumeration value="Paused"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>
"""
)
xml = load_xml(
b"""
<?xml version="1.0" encoding="utf-8"?>
<tst:State xmlns:tst="http://tests.python-zeep.org/tst">Idle</tst:State>
"""
)
schema = xsd.Schema(schema_doc)
elm = schema.get_element("{http://tests.python-zeep.org/tst}State")
result = elm.parse(xml, schema)
assert result._value_1 == "Idle"
ty_1 = schema.get_type("{http://tests.python-zeep.org/tst}Type1")
assert ty_1.facets.max_length == 255
assert ty_1.facets.enumeration == ['Idle', 'Processing', 'Stopped']
ty_2 = schema.get_type("{http://tests.python-zeep.org/tst}Type2")
assert ty_2.facets.max_length == 255
assert ty_2.facets.enumeration == ['Paused']
def test_parse_invalid_values():
schema = xsd.Schema(
load_xml(
b"""
<?xml version="1.0" encoding="utf-8"?>
<schema
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://tests.python-zeep.org/"
elementFormDefault="qualified"
targetNamespace="http://tests.python-zeep.org/">
<element name="container">
<complexType>
<sequence>
<element name="item_1" type="xsd:dateTime" />
<element name="item_2" type="xsd:date" />
</sequence>
<attribute name="attr_1" type="xsd:dateTime" />
<attribute name="attr_2" type="xsd:date" />
</complexType>
</element>
</schema>
"""
)
)
xml = load_xml(
b"""
<?xml version="1.0" encoding="utf-8"?>
<tns:container
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tns="http://tests.python-zeep.org/"
attr_1="::" attr_2="2013-10-20">
<tns:item_1>foo</tns:item_1>
<tns:item_2>2016-10-20</tns:item_2>
</tns:container>
"""
)
elm = schema.get_element("{http://tests.python-zeep.org/}container")
result = elm.parse(xml, schema)
assert result.item_1 is None
assert result.item_2 == datetime.date(2016, 10, 20)
assert result.attr_1 is None
assert result.attr_2 == datetime.date(2013, 10, 20)
def test_xsd_missing_localname():
schema = xsd.Schema(
load_xml(
b"""
<?xml version="1.0" encoding="utf-8"?>
<schema
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://tests.python-zeep.org/"
elementFormDefault="qualified"
targetNamespace="http://tests.python-zeep.org/">
<element name="container" type="xsd:"/>
</schema>
"""
)
)
schema.get_element("{http://tests.python-zeep.org/}container")
def test_xsd_choice_with_references():
schema = xsd.Schema(
load_xml(
"""
<xsd:schema
xmlns:zeep="http://tests.python-zeep.org/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://tests.python-zeep.org/">
<xsd:element name="el1" type="xsd:string"/>
<xsd:element name="el2" type="xsd:string"/>
<xsd:element name="container">
<xsd:complexType>
<xsd:sequence>
<xsd:choice>
<xsd:element ref="zeep:el1"/>
<xsd:element ref="zeep:el2"/>
<xsd:element name="el3" type="xsd:string"/>
</xsd:choice>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
"""
)
)
schema.set_ns_prefix("tns", "http://tests.python-zeep.org/")
xml = load_xml(
b"""
<ns0:container xmlns:ns0="http://tests.python-zeep.org/">
<ns0:BAD_ELEMENT>BAD VALUE</ns0:BAD_ELEMENT>
</ns0:container>
"""
)
elm = schema.get_element("{http://tests.python-zeep.org/}container")
with pytest.raises(exceptions.XMLParseError) as exc:
result = elm.parse(xml, schema)
assert "BAD_ELEMENT" in str(exc)
xml = load_xml(
b"""
<ns0:container xmlns:ns0="http://tests.python-zeep.org/">
<ns0:el2>value2</ns0:el2>
</ns0:container>
"""
)
result = elm.parse(xml, schema)
assert result.el2 == "value2"