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 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
|
#!/usr/bin/env python
#
# Copyright (c), 2016-2020, SISSA (International School for Advanced Studies).
# All rights reserved.
# This file is distributed under the terms of the MIT License.
# See the file 'LICENSE' in the root directory of the present
# distribution, or http://opensource.org/licenses/MIT.
#
# @author Davide Brunato <brunato@sissa.it>
#
import copy
import unittest
import os
import platform
import re
from textwrap import dedent
from xml.etree import ElementTree
try:
import lxml.etree as lxml_etree
except ImportError:
lxml_etree = None
from xmlschema.validators import XsdValidator, XsdComponent, XMLSchema10, XMLSchema11, \
XMLSchemaParseError, XsdAnnotation, XsdGroup, XsdSimpleType, XMLSchemaNotBuiltError
from xmlschema.validators.xsdbase import check_validation_mode
from xmlschema.names import XSD_NAMESPACE, XSD_ELEMENT, XSD_ANNOTATION, XSD_ANY_TYPE
CASES_DIR = os.path.join(os.path.dirname(__file__), '../test_cases')
class TestXsdValidator(unittest.TestCase):
def test_check_validation_mode(self):
self.assertIsNone(check_validation_mode('strict'))
self.assertIsNone(check_validation_mode('lax'))
self.assertIsNone(check_validation_mode('skip'))
self.assertRaises(ValueError, check_validation_mode, 'none')
self.assertRaises(ValueError, check_validation_mode, ' strict ')
self.assertRaises(TypeError, check_validation_mode, None)
def test_initialization(self):
validator = XsdValidator()
self.assertEqual(validator.validation, 'strict')
validator = XsdValidator(validation='lax')
self.assertEqual(validator.validation, 'lax')
self.assertListEqual(validator.errors, [])
def test_string_representation(self):
validator = XsdValidator()
tmpl = '<xmlschema.validators.xsdbase.XsdValidator object at {}>'
string_repr = str(validator)
if platform.python_implementation() == 'PyPy' or platform.system() == 'Windows':
string_repr = re.sub(r'0x[0]+', '0x', string_repr, count=1)
self.assertEqual(string_repr.lower(), tmpl.format(hex(id(validator))).lower())
def test_check_validator(self):
xsd_file = os.path.join(CASES_DIR, 'examples/vehicles/vehicles.xsd')
schema = XMLSchema10(xsd_file, build=False)
self.assertIsNone(schema.check_validator())
self.assertEqual(schema.validity, 'notKnown')
self.assertEqual(schema.validation_attempted, 'none')
with self.assertRaises(XMLSchemaNotBuiltError):
schema.check_validator('strict')
with self.assertRaises(XMLSchemaNotBuiltError):
schema.check_validator('lax')
self.assertIsNone(schema.check_validator('skip'))
schema.build()
self.assertEqual(schema.validity, 'valid')
self.assertEqual(schema.validation_attempted, 'full')
self.assertIsNone(schema.check_validator())
self.assertIsNone(schema.check_validator('strict'))
xsd_file = os.path.join(CASES_DIR, 'examples/vehicles/invalid.xsd')
schema = XMLSchema10(xsd_file, validation='lax')
with self.assertRaises(XMLSchemaNotBuiltError):
schema.check_validator('strict')
self.assertIsNone(schema.check_validator('lax'))
self.assertIsNone(schema.check_validator('skip'))
def test_parse_error(self):
xsd_file = os.path.join(CASES_DIR, 'examples/vehicles/vehicles.xsd')
schema = XMLSchema10(xsd_file)
with self.assertRaises(TypeError):
schema.parse_error("test error", elem=(1, 2))
with self.assertRaises(TypeError):
schema.parse_error(b"test error")
with self.assertRaises(XMLSchemaParseError):
schema.parse_error("test error")
self.assertEqual(len(schema.errors), 0)
schema.parse_error("test error", validation='skip')
self.assertEqual(len(schema.errors), 0)
schema.parse_error("test error", validation='lax')
self.assertEqual(len(schema.errors), 1)
schema.parse_error(XMLSchemaParseError(schema, "test error"), validation='lax')
self.assertEqual(len(schema.errors), 2)
schema.parse_error(ValueError("wrong value"), validation='lax')
self.assertEqual(len(schema.errors), 3)
schema.parse_error(ValueError("'invalid value'"), validation='lax')
self.assertEqual(len(schema.errors), 4)
self.assertEqual(schema.errors[-1].message, "invalid value")
validator = XsdValidator()
error = XMLSchemaParseError(validator, 'validator error')
elem = ElementTree.Element('foo')
namespaces = {'xs': XSD_NAMESPACE}
with self.assertRaises(XMLSchemaParseError):
validator.parse_error(error, elem, namespaces=namespaces)
self.assertIs(error.elem, elem)
self.assertIs(error.namespaces, namespaces)
validator.validation = 'lax'
elem = ElementTree.Element('foo')
namespaces = {'xs': XSD_NAMESPACE}
with self.assertLogs('xmlschema', level='DEBUG'):
validator.parse_error(error, elem, namespaces=namespaces)
self.assertIsNot(error.elem, elem)
self.assertIsNot(error.namespaces, namespaces)
def test_copy(self):
validator = XsdValidator(validation='lax')
validator.parse_error(ValueError("test error"))
self.assertEqual(len(validator.errors), 1)
self.assertListEqual(copy.copy(validator).errors, validator.errors)
def test_valid_schema(self):
xsd_file = os.path.join(CASES_DIR, 'examples/vehicles/vehicles.xsd')
schema = XMLSchema10(xsd_file, build=False)
self.assertEqual(schema.validity, 'notKnown')
self.assertEqual(len(schema.all_errors), 0)
schema.build()
self.assertEqual(schema.validity, 'valid')
self.assertEqual(len(schema.all_errors), 0)
def test_invalid_schema(self):
xsd_text = """<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root" minOccurs="0"/>
</xs:schema>"""
with self.assertRaises(XMLSchemaParseError):
XMLSchema10(xsd_text)
schema = XMLSchema10(xsd_text, validation='lax')
self.assertEqual(schema.validity, 'invalid')
self.assertEqual(len(schema.all_errors), 2) # One by meta-schema check
schema = XMLSchema10(xsd_text, validation='skip')
self.assertEqual(schema.validity, 'notKnown')
self.assertEqual(len(schema.all_errors), 0)
def test_parse_xpath_default_namespace(self):
xsd_text = """<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root"/>
</xs:schema>"""
schema = XMLSchema11(xsd_text)
elem = ElementTree.Element('A')
self.assertEqual(schema._parse_xpath_default_namespace(elem), '')
elem = ElementTree.Element('A', xpathDefaultNamespace='##local')
self.assertEqual(schema._parse_xpath_default_namespace(elem), '')
elem = ElementTree.Element('A', xpathDefaultNamespace='##defaultNamespace')
self.assertEqual(schema._parse_xpath_default_namespace(elem), '')
elem = ElementTree.Element('A', xpathDefaultNamespace='##targetNamespace')
self.assertEqual(schema._parse_xpath_default_namespace(elem), '')
xsd_text = """<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="tns0" targetNamespace="tns0">
<xs:element name="root"/>
</xs:schema>"""
schema = XMLSchema11(xsd_text, validation='lax')
elem = ElementTree.Element('A')
self.assertEqual(schema._parse_xpath_default_namespace(elem), '')
elem = ElementTree.Element('A', xpathDefaultNamespace='##local')
self.assertEqual(schema._parse_xpath_default_namespace(elem), '')
elem = ElementTree.Element('A', xpathDefaultNamespace='##defaultNamespace')
self.assertEqual(schema._parse_xpath_default_namespace(elem), 'tns0')
elem = ElementTree.Element('A', xpathDefaultNamespace='##targetNamespace')
self.assertEqual(schema._parse_xpath_default_namespace(elem), 'tns0')
elem = ElementTree.Element('A', xpathDefaultNamespace='tns1')
self.assertEqual(schema._parse_xpath_default_namespace(elem), 'tns1')
elem = ElementTree.Element('A', xpathDefaultNamespace='tns0 tns1')
self.assertEqual(schema._parse_xpath_default_namespace(elem), '')
self.assertIn('tns0 tns1', schema.errors[-1].message)
class TestXsdComponent(unittest.TestCase):
class FakeElement(XsdComponent):
@property
def built(self):
return super().built
_ADMITTED_TAGS = (XSD_ELEMENT,)
@classmethod
def setUpClass(cls):
xsd_file = os.path.join(CASES_DIR, 'examples/vehicles/vehicles.xsd')
cls.schema = XMLSchema10(xsd_file)
def test_initialization(self):
with self.assertRaises(AttributeError):
XsdComponent(elem=None, schema=self.schema)
with self.assertRaises(ValueError):
XsdComponent(elem=ElementTree.Element('A'), schema=self.schema)
def test_errors(self):
schema = XMLSchema10(dedent("""<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root" type="xs:string">
<xs:simpleType>
<xs:restriction base="xs:string"/>
</xs:simpleType>
</xs:element>
</xs:schema>"""), validation='lax')
xsd_element = schema.elements['root']
self.assertEqual(len(schema.all_errors), 1)
self.assertEqual(len(xsd_element.errors), 1)
xsd_element.elem.attrib.pop('type')
xsd_element.parse(xsd_element.elem)
self.assertEqual(len(schema.all_errors), 0)
self.assertEqual(len(xsd_element.errors), 0)
def test_meta_tag(self):
self.assertEqual(self.FakeElement.meta_tag(), XSD_ELEMENT)
with self.assertRaises(NotImplementedError):
XsdComponent.meta_tag()
def test_is_override(self):
self.assertFalse(self.schema.elements['cars'].is_override())
self.assertFalse(self.schema.elements['cars'].type.content[0].is_override())
def test_representation(self):
schema = XMLSchema10("""<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="node">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute ref="slot"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:attribute name="slot" type="xs:string"/>
</xs:schema>""")
self.assertEqual(repr(schema.elements['node']), "XsdElement(name='node', occurs=[1, 1])")
self.assertEqual(repr(schema.attributes['slot']), "XsdAttribute(name='slot')")
self.assertEqual(repr(schema.elements['node'].type.attributes['slot']),
"XsdAttribute(ref='slot')")
def test_parse_reference(self):
group = self.schema.elements['vehicles'].type.content
name = '{%s}motorbikes' % XSD_NAMESPACE
elem = ElementTree.Element(XSD_ELEMENT, name=name)
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=None)
self.assertIsNone(xsd_element._parse_reference())
elem = ElementTree.Element(XSD_ELEMENT, name=name, ref=name)
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=None)
with self.assertRaises(XMLSchemaParseError):
xsd_element._parse_reference()
elem = ElementTree.Element(XSD_ELEMENT, ref=name)
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=None)
with self.assertRaises(XMLSchemaParseError):
xsd_element._parse_reference()
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=group)
xsd_element._parse_reference()
elem = ElementTree.Element(XSD_ELEMENT, ref='tns0:motorbikes')
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=group)
with self.assertRaises(XMLSchemaParseError):
xsd_element._parse_reference()
elem = ElementTree.Element(XSD_ELEMENT, ref=name)
elem.append(ElementTree.Element('child'))
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=group)
with self.assertRaises(XMLSchemaParseError):
xsd_element._parse_reference()
elem = ElementTree.Element(XSD_ELEMENT)
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=None)
with self.assertRaises(XMLSchemaParseError):
xsd_element._parse_reference()
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=group)
with self.assertRaises(XMLSchemaParseError):
xsd_element._parse_reference()
def test_parse_child_component(self):
name = '{%s}motorbikes' % self.schema.target_namespace
elem = ElementTree.Element(XSD_ELEMENT, name=name)
elem.append(ElementTree.Element(XSD_ANNOTATION))
elem.append(ElementTree.Element('child1'))
elem.append(ElementTree.Element('child2'))
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=None)
self.assertEqual(xsd_element._parse_child_component(elem, strict=False), elem[1])
with self.assertRaises(XMLSchemaParseError):
xsd_element._parse_child_component(elem)
self.assertEqual(len(xsd_element.errors), 0)
xsd_element.validation = 'lax'
xsd_element._parse_child_component(elem)
self.assertEqual(len(xsd_element.errors), 1)
def test_parse_target_namespace(self):
name = '{%s}motorbikes' % self.schema.target_namespace
elem = ElementTree.Element(XSD_ELEMENT, name=name, targetNamespace='tns0')
group = self.schema.elements['vehicles'].type.content
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=None)
with self.assertRaises(XMLSchemaParseError) as ctx:
xsd_element._parse_target_namespace()
self.assertIn("must have the same namespace", ctx.exception.message)
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=group)
self.assertIsNone(xsd_element._parse_target_namespace())
self.assertEqual(xsd_element.name, '{tns0}motorbikes')
elem = ElementTree.Element(XSD_ELEMENT, targetNamespace='tns0')
xsd_element = self.FakeElement(elem=elem, name=None, schema=self.schema, parent=group)
with self.assertRaises(XMLSchemaParseError) as ctx:
xsd_element._parse_target_namespace()
self.assertIn("attribute 'name' must be present", ctx.exception.message)
elem = ElementTree.Element(XSD_ELEMENT, name=name, form='qualified', targetNamespace='tns0')
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=group)
with self.assertRaises(XMLSchemaParseError) as ctx:
xsd_element._parse_target_namespace()
self.assertIn("attribute 'form' must be absent", ctx.exception.message)
elem = ElementTree.Element(
XSD_ELEMENT, name='motobikes', targetNamespace=self.schema.target_namespace
)
xsd_element = self.FakeElement(elem, self.schema, parent=group, name=name)
self.assertIsNone(xsd_element._parse_target_namespace())
self.assertEqual(xsd_element.name, name)
xsd_attribute = self.schema.types['vehicleType'].attributes['model']
xsd_attribute.elem.attrib['targetNamespace'] = 'tns0'
with self.assertRaises(XMLSchemaParseError) as ctx:
xsd_attribute._parse_target_namespace()
self.assertIn("a declaration contained in a global complexType must "
"have the same namespace", ctx.exception.message)
del xsd_attribute.elem.attrib['targetNamespace']
with self.assertRaises(XMLSchemaParseError) as ctx:
XMLSchema11("""<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root" targetNamespace=""/>
</xs:schema>""")
self.assertIn("use of attribute 'targetNamespace' is prohibited", ctx.exception.message)
schema = XMLSchema11("""<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="type0">
<xs:sequence>
<xs:any namespace="http://xmlschema.test/ns"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="type1">
<xs:complexContent>
<xs:restriction base="type0">
<xs:sequence>
<xs:element name="elem1" targetNamespace="http://xmlschema.test/ns"
type="xs:integer"/>
</xs:sequence>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:element name="root" type="type1"/>
</xs:schema>""")
self.assertEqual(schema.elements['root'].type.content[0].target_namespace,
'http://xmlschema.test/ns')
schema = XMLSchema11("""<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root">
<xs:complexType>
<xs:sequence>
<xs:element name="node" targetNamespace=""/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>""")
self.assertEqual(schema.elements['root'].type.content[0].name, 'node')
def test_xmlns_namespace_forbidden(self):
source = dedent("""\
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root">
<xs:complexType>
<xs:sequence>
<xs:element name="node" targetNamespace="http://www.w3.org/2000/xmlns/"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>""")
with self.assertRaises(ValueError) as ctx:
XMLSchema11(source)
self.assertIn('http://www.w3.org/2000/xmlns/', str(ctx.exception))
def test_id_property(self):
name = '{%s}motorbikes' % self.schema.target_namespace
elem = ElementTree.Element(XSD_ELEMENT, name=name, id='1999')
xsd_element = self.FakeElement(elem=elem, name=name, schema=self.schema, parent=None)
self.assertEqual(xsd_element.id, '1999')
def test_validation_attempted(self):
schema = XMLSchema10("""<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:notation name="content" public="text/html"/>
<xs:element name="root"/>
</xs:schema>""")
self.assertEqual(schema.notations['content'].validation_attempted, 'full')
def test_name_matching(self):
name = '{%s}motorbikes' % self.schema.target_namespace
elem = ElementTree.Element(XSD_ELEMENT, name=name)
xsd_element = self.FakeElement(elem, self.schema, parent=None, name=name)
self.assertFalse(xsd_element.is_matching('motorbikes'))
self.assertFalse(xsd_element.is_matching(''))
self.assertTrue(
xsd_element.is_matching('motorbikes', default_namespace=self.schema.target_namespace)
)
self.assertFalse(xsd_element.is_matching('{%s}bikes' % self.schema.target_namespace))
self.assertTrue(xsd_element.is_matching(name))
self.assertIs(xsd_element.match(name), xsd_element)
def test_get_matching_item(self):
xsd_element = self.schema.elements['vehicles']
self.assertIsNone(xsd_element.get_matching_item({}))
self.assertTrue(xsd_element.get_matching_item({xsd_element.qualified_name: True}))
self.assertTrue(xsd_element.get_matching_item({xsd_element.prefixed_name: True}))
mapping = {xsd_element.local_name: True}
self.assertIsNone(xsd_element.get_matching_item(mapping))
self.assertTrue(xsd_element.get_matching_item(mapping, match_local_name=True))
mapping = {xsd_element.type.local_name: True} # type.name is None
self.assertIsNone(xsd_element.type.get_matching_item(mapping, match_local_name=True))
mapping = {'vhs:vehicles': True}
self.assertIsNone(xsd_element.get_matching_item(mapping))
self.schema.namespaces['vhs'] = self.schema.target_namespace
try:
self.assertTrue(xsd_element.get_matching_item(mapping))
finally:
self.schema.namespaces.pop('vhs')
mapping = {'vhs:vehicles': {'xmlns:vhs': self.schema.target_namespace}}
self.assertIs(xsd_element.get_matching_item(mapping), mapping['vhs:vehicles'])
mapping = {'vhs:vehicles': {'xmlns:vhs': 'http://xmlschema.test/ns'}}
self.assertIsNone(xsd_element.get_matching_item(mapping))
schema = XMLSchema10(dedent("""\
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root"/>
</xs:schema>"""))
xsd_element = schema.elements['root']
self.assertTrue(xsd_element.get_matching_item({'root': True}))
self.assertIsNone(xsd_element.get_matching_item({'rook': True}))
def test_get_global(self):
xsd_element = self.schema.elements['vehicles']
self.assertIs(xsd_element.get_global(), xsd_element)
xsd_type = self.schema.types['vehicleType']
self.assertIs(xsd_type.attributes['model'].get_global(), xsd_type)
def test_get_parent_type(self):
xsd_type = self.schema.types['vehicleType']
self.assertIs(xsd_type.attributes['model'].get_parent_type(), xsd_type)
self.assertIsNone(xsd_type.get_parent_type())
def test_iter_components(self):
name = '{%s}motorbikes' % self.schema.target_namespace
elem = ElementTree.Element(XSD_ELEMENT, name=name)
xsd_element = self.FakeElement(elem, self.schema, parent=None, name=name)
self.assertListEqual(list(xsd_element.iter_components()), [xsd_element])
self.assertListEqual(list(xsd_element.iter_components(str)), [])
def test_iter_ancestors(self):
xsd_element = self.schema.elements['cars'].type.content[0]
ancestors = [e for e in xsd_element.iter_ancestors()]
self.assertListEqual(ancestors, [
self.schema.elements['cars'].type.content,
self.schema.elements['cars'].type,
self.schema.elements['cars'],
])
self.assertListEqual(list(xsd_element.iter_ancestors(str)), [])
def test_tostring(self):
cars_dump = str(self.schema.elements['cars'].tostring())
self.assertEqual(len(cars_dump.split('\n')), 7)
self.assertIn('name="car" type="vh:vehicleType"', cars_dump)
self.assertIsInstance(ElementTree.XML(cars_dump), ElementTree.Element)
def test_annotations(self):
schema = XMLSchema10("""<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root">
<xs:annotation/>
</xs:element>
</xs:schema>""")
self.assertTrue(schema.elements['root'].annotation.built)
schema = XMLSchema10("""<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root">
<xs:simpleType>
<xs:restriction base="xs:string"/>
</xs:simpleType>
</xs:element>
</xs:schema>""")
self.assertIsNone(schema.elements['root'].annotation)
if lxml_etree is not None:
root = lxml_etree.XML("""<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root">
<!-- comment -->
<xs:annotation/>
</xs:element>
</xs:schema>""")
schema = XMLSchema10(root)
self.assertTrue(schema.elements['root'].annotation.built)
schema = XMLSchema10("""<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root">
<xs:annotation>
<xs:appinfo/>
<xs:documentation/>
</xs:annotation>
</xs:element>
</xs:schema>""")
self.assertEqual(len(schema.all_errors), 0)
self.assertEqual(len(schema.annotations), 0)
annotations = schema.elements['root'].annotations
self.assertEqual(len(annotations), 1)
self.assertIs(annotations[0], schema.elements['root'].annotation)
# XSD annotation errors found with meta-schema validation
schema = XMLSchema10("""<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root">
<xs:annotation>
<xs:documentation wrong="abc" source=""/>
<xs:appinfo wrong="10" source=""/>
<xs:element name="wrong"/>
</xs:annotation>
</xs:element>
</xs:schema>""", validation='lax')
self.assertEqual(len(schema.all_errors), 3)
# Lazy XSD annotation build (errors not counted in schema.all_errors)
xsd_element = schema.elements['root']
self.assertNotIn('annotation', xsd_element.__dict__)
annotation = xsd_element.annotation
self.assertIsInstance(annotation, XsdAnnotation)
self.assertIn('annotation', xsd_element.__dict__)
self.assertEqual(len(schema.all_errors), 3)
self.assertEqual(len(annotation.errors), 0) # see issue 287
self.assertIsNone(annotation.annotation)
def test_attribute_group_annotation__issue_366(self):
schema = XMLSchema10(dedent("""\
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:attributeGroup name="attrGroup">
<xs:annotation>
<xs:documentation>
A global attribute group
</xs:documentation>
</xs:annotation>
<xs:attribute name="attr1"/>
<xs:attribute name="attr2"/>
</xs:attributeGroup>
<xs:complexType name="rootType" mixed="true">
<xs:annotation>
<xs:documentation>
A global complex type
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
</xs:sequence>
<xs:attributeGroup ref="attrGroup"/>
</xs:complexType>
<xs:element name="root" type="rootType">
<xs:annotation>
<xs:documentation>
The root element
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:schema>"""))
attribute_group = schema.attribute_groups['attrGroup']
self.assertIn('A global attribute group', str(attribute_group.annotation))
xsd_type = schema.types['rootType']
self.assertIn('A global complex type', str(xsd_type.annotation))
self.assertIsNone(xsd_type.attributes.annotation)
xsd_element = schema.elements['root']
self.assertIn('The root element', str(xsd_element.annotation))
self.assertIsNone(xsd_element.attributes.annotation)
def test_dump_status(self):
schema = XMLSchema10("""\
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root"/>
</xs:schema>""")
with self.assertLogs('xmlschema', 'WARNING') as cm:
schema.elements['root'].dump_status('foo')
self.assertIn("dump data", cm.output[0])
self.assertIn("XMLResource(root=", cm.output[0])
self.assertIn("'foo'", cm.output[0])
class TestXsdType(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.schema = XMLSchema10(dedent("""\
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="emptyType">
<xs:restriction base="xs:string">
<xs:length value="0"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="emptyType2">
<xs:attribute name="foo" type="xs:string"/>
</xs:complexType>
<xs:simpleType name="idType">
<xs:restriction base="xs:ID"/>
</xs:simpleType>
<xs:simpleType name="decimalType">
<xs:restriction base="xs:decimal"/>
</xs:simpleType>
<xs:simpleType name="dateTimeType">
<xs:restriction base="xs:dateTime"/>
</xs:simpleType>
<xs:simpleType name="fooType">
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="fooListType">
<xs:list itemType="xs:string"/>
</xs:simpleType>
<xs:simpleType name="fooUnionType">
<xs:union memberTypes="xs:string xs:anyURI"/>
</xs:simpleType>
<xs:complexType name="barType">
<xs:sequence>
<xs:element name="node"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="barExtType">
<xs:complexContent>
<xs:extension base="barType">
<xs:sequence>
<xs:element name="node"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="barResType">
<xs:complexContent>
<xs:restriction base="barType">
<xs:sequence>
<xs:element name="node"/>
</xs:sequence>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="mixedType" mixed="true">
<xs:sequence>
<xs:element name="node" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:element name="fooElem" type="fooType"/>
<xs:element name="barElem" type="barType" block="extension"/>
</xs:schema>"""))
def test_content_type_label(self):
self.assertEqual(self.schema.types['emptyType'].content_type_label, 'empty')
self.assertEqual(self.schema.types['emptyType2'].content_type_label, 'empty')
self.assertEqual(self.schema.types['fooType'].content_type_label, 'simple')
self.assertEqual(self.schema.types['barType'].content_type_label, 'element-only')
self.assertEqual(self.schema.types['mixedType'].content_type_label, 'mixed')
def test_simple_type_property(self):
self.assertIsInstance(self.schema.types['emptyType'].simple_type, XsdSimpleType)
self.assertIsNone(self.schema.types['emptyType2'].simple_type)
def test_model_group_property(self):
self.assertIsNone(self.schema.types['emptyType'].model_group)
self.assertIsInstance(self.schema.types['emptyType2'].model_group, XsdGroup)
def test_root_type(self):
self.assertIs(self.schema.types['fooType'].root_type,
self.schema.meta_schema.types['string'])
self.assertIs(self.schema.types['fooListType'].root_type,
self.schema.meta_schema.types['string'])
self.assertIs(self.schema.types['mixedType'].root_type,
self.schema.maps.types[XSD_ANY_TYPE])
self.assertIs(self.schema.types['barExtType'].root_type,
self.schema.maps.types[XSD_ANY_TYPE])
# xs:anyType used by the schema is equivalent but is not the same object of
# the meta schema because it can be used as base for schema's complex types
self.assertIs(self.schema.types['emptyType2'].root_type,
self.schema.maps.types[XSD_ANY_TYPE])
def test_is_atomic(self):
self.assertFalse(self.schema.types['barType'].is_atomic())
def test_is_primitive(self):
self.assertFalse(self.schema.types['barType'].is_primitive())
def test_is_list(self):
self.assertFalse(self.schema.types['barType'].is_list())
self.assertTrue(self.schema.types['fooListType'].is_list())
self.assertFalse(self.schema.types['fooUnionType'].is_list())
def test_is_union(self):
self.assertFalse(self.schema.types['barType'].is_union())
self.assertFalse(self.schema.types['fooListType'].is_union())
self.assertTrue(self.schema.types['fooUnionType'].is_union())
def test_is_datetime(self):
self.assertFalse(self.schema.types['barType'].is_datetime())
self.assertTrue(self.schema.types['dateTimeType'].is_datetime())
def test_is_decimal(self):
self.assertFalse(self.schema.types['barType'].is_decimal())
self.assertTrue(self.schema.types['decimalType'].is_decimal())
def test_is_dynamic_consistent(self):
self.assertFalse(self.schema.types['fooType'].is_dynamic_consistent(
self.schema.types['fooListType']
))
self.assertTrue(self.schema.types['fooType'].is_dynamic_consistent(
self.schema.types['fooType']
))
def test_is_key(self):
self.assertFalse(self.schema.types['fooType'].is_key())
self.assertTrue(self.schema.types['idType'].is_key())
def test_is_extension(self):
self.assertFalse(self.schema.types['fooType'].is_extension())
self.assertTrue(self.schema.types['barExtType'].is_extension())
def test_is_restriction(self):
self.assertTrue(self.schema.types['fooType'].is_restriction())
self.assertFalse(self.schema.types['barExtType'].is_restriction())
def test_is_blocked(self):
element = self.schema.elements['fooElem']
self.assertFalse(self.schema.types['fooType'].is_blocked(element))
self.assertFalse(self.schema.types['barExtType'].is_blocked(element))
self.assertFalse(self.schema.types['barResType'].is_blocked(element))
element = self.schema.elements['barElem']
self.assertFalse(self.schema.types['fooType'].is_blocked(element))
self.assertTrue(self.schema.types['barExtType'].is_blocked(element))
self.assertFalse(self.schema.types['barResType'].is_blocked(element))
if __name__ == '__main__':
from xmlschema.testing import run_xmlschema_tests
run_xmlschema_tests('XSD base classes')
|