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
|
#!/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 unittest
import os
import io
import pathlib
from xml.etree import ElementTree
try:
import lxml.etree as lxml_etree
except ImportError:
lxml_etree = None
from xmlschema import XMLSchema, XMLResource, iter_errors
from xmlschema.utils.etree import is_etree_element
from xmlschema.validators.exceptions import XMLSchemaValidatorError, \
XMLSchemaNotBuiltError, XMLSchemaParseError, XMLSchemaModelDepthError, \
XMLSchemaValidationError, XMLSchemaDecodeError, XMLSchemaEncodeError, \
XMLSchemaChildrenValidationError
CASES_DIR = pathlib.Path(__file__).parent.joinpath('../test_cases')
class TestValidatorExceptions(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.schema = XMLSchema(CASES_DIR.joinpath('examples/vehicles/vehicles.xsd'))
def test_exception_init(self):
with self.assertRaises(ValueError) as ctx:
XMLSchemaValidatorError(self.schema, 'unknown error', elem='wrong') # noqa
self.assertIn("'elem' attribute requires an Element", str(ctx.exception))
error = XMLSchemaNotBuiltError(self.schema, 'schema not built!')
self.assertEqual(error.message, 'schema not built!')
schema = XMLSchema("""
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:group name="group1">
<xs:choice>
<xs:element name="root" type="xs:integer"/>
</xs:choice>
</xs:group>
</xs:schema>""")
error = XMLSchemaModelDepthError(schema.groups['group1'])
self.assertEqual("maximum model recursion depth exceeded", error.message[:38])
def test_validator_error_repr(self):
xs = self.schema
error = XMLSchemaValidatorError(xs, 'unknown error')
chunks = str(error).split('\n')
self.assertEqual('unknown error:', chunks[0].strip())
self.assertEqual(error.get_elem_as_string(indent=' '), ' None')
error = XMLSchemaValidatorError(xs, 'unknown error', elem=xs.root)
output = str(error)
lines = output.split('\n')
self.assertGreater(len(lines), 10, msg=output)
self.assertEqual(lines[0], 'unknown error:', msg=output)
self.assertEqual(lines[2], 'Schema component:', msg=output)
self.assertRegex(lines[4].strip(), '^<(xs:)?schema ', msg=output)
self.assertRegex(lines[-4].strip(), '</(xs:|xsd:)?schema>$', msg=output)
error = XMLSchemaValidatorError(
validator=xs.elements['vehicles'],
message='test error message #1',
elem=xs.source.root[1],
source=xs.source,
namespaces=xs.namespaces,
)
chunks = str(error).split('\n')
self.assertEqual('test error message #1:', chunks[0].strip())
self.assertEqual('Schema component:', chunks[2].strip())
self.assertEqual('Path: /xs:schema/xs:include[2]', chunks[6].strip())
self.assertEqual('Schema URL: ' + xs.url, chunks[8].strip())
self.assertTrue(error.get_elem_as_string().startswith('<xs:include'))
error = XMLSchemaValidatorError(
validator=xs.elements['cars'],
message='test error message #2',
elem=xs.source.root[1],
source=xs.source,
namespaces=xs.namespaces,
)
chunks = str(error).split('\n')
self.assertEqual('test error message #2:', chunks[0].strip())
self.assertEqual('Schema component:', chunks[2].strip())
self.assertEqual('Path: /xs:schema/xs:include[2]', chunks[6].strip())
self.assertNotEqual('Schema URL: ' + xs.url, chunks[8].strip())
self.assertTrue(chunks[8].strip().endswith('cars.xsd'))
self.assertEqual('Origin URL: ' + xs.url, chunks[10].strip())
def test_validator_error_repr_no_urls(self):
schema = XMLSchema("""
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root" type="xs:integer"/>
</xs:schema>""")
error = XMLSchemaValidatorError(validator=schema, message='test error message #3')
self.assertEqual(str(error), "test error message #3")
self.assertIsNone(error.schema_url)
self.assertIsNone(error.origin_url)
self.assertEqual(str(error), error.msg)
def test_parse_error(self):
xs = self.schema
error = XMLSchemaParseError(xs, "test parse error message #1")
self.assertTrue(str(error).startswith('test parse error message #1:'))
error = XMLSchemaParseError(xs.elements['vehicles'], "test parse error message #2")
self.assertNotEqual(str(error), 'test parse error message #2')
@unittest.skipIf(lxml_etree is None, 'lxml is not installed ...')
def test_exception_repr_lxml(self):
schema = XMLSchema("""
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root" type="xs:integer"/>
</xs:schema>""")
root = lxml_etree.XML('<root a="10"/>')
with self.assertRaises(XMLSchemaValidationError) as ctx:
schema.validate(root) # noqa
lines = str(ctx.exception).split('\n')
self.assertEqual(lines[0], "failed validating {'a': '10'} with XsdAttributeGroup():")
self.assertEqual(lines[2], "Reason: 'a' attribute not allowed for element")
self.assertEqual(lines[10], "Instance (line 1):")
self.assertEqual(lines[14], "Path: /root")
self.assertEqual(repr(ctx.exception), "XMLSchemaValidationError(reason=\"'a' "
"attribute not allowed for element\")")
error = XMLSchemaValidationError(schema.elements['root'], root)
self.assertIsNone(error.reason)
self.assertNotIn("Reason:", str(error))
self.assertIn("Schema component:", str(error))
self.assertEqual(error.get_obj_as_string(), '<root a="10"/>')
error = XMLSchemaValidationError(schema, root)
self.assertNotIn("Reason:", str(error))
self.assertNotIn("Schema component:", str(error))
error = XMLSchemaValidationError(schema, 10)
lines = str(error).split('\n')
self.assertEqual(lines[0], "failed validating 10 with XMLSchema10(namespace=''):")
self.assertEqual(lines[2], "Instance type: <class 'int'>")
self.assertEqual(error.get_obj_as_string(), '10')
error = XMLSchemaValidationError(schema, 'a' * 201)
lines = str(error).split('\n')
self.assertEqual(lines[0], "failed validating <class 'str'> instance "
"with XMLSchema10(namespace=''):")
self.assertEqual(lines[2], "Instance type: <class 'str'>")
self.assertEqual(lines[6], ' ' + repr('a' * 201))
def test_get_obj_as_string(self):
schema = XMLSchema("""
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root" type="xs:integer"/>
</xs:schema>""")
error = XMLSchemaValidationError(schema, 'alpha\n')
self.assertEqual(error.get_obj_as_string(indent=' '), " 'alpha\\n'")
error = XMLSchemaValidationError(schema, 'alpha\nalpha\n')
self.assertEqual(error.get_obj_as_string(indent=' '), " 'alpha\\nalpha\\n'")
error = XMLSchemaValidationError(schema, 'alpha\n' * 2)
self.assertEqual(error.get_obj_as_string(' '), " 'alpha\\nalpha\\n'")
error = XMLSchemaValidationError(schema, 'alpha\n' * 200)
obj_as_string = error.get_obj_as_string(' ')
self.assertTrue(obj_as_string.startswith(" ('alpha\\n'"))
self.assertEqual(len(obj_as_string.splitlines()), 200)
obj_as_string = error.get_obj_as_string(max_lines=20)
self.assertTrue(obj_as_string.startswith("('alpha\\n'"))
self.assertTrue(obj_as_string.endswith("...\n..."))
self.assertEqual(len(obj_as_string.splitlines()), 20)
obj_as_string = error.get_obj_as_string(indent=' ', max_lines=30)
self.assertTrue(obj_as_string.startswith(" ('alpha\\n'"))
self.assertTrue(obj_as_string.endswith(" ...\n ..."))
self.assertEqual(len(obj_as_string.splitlines()), 30)
def test_setattr(self):
schema = XMLSchema("""
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root" type="xs:integer"/>
</xs:schema>""")
root = ElementTree.XML('<root a="10"/>')
with self.assertRaises(XMLSchemaValidationError) as ctx:
schema.validate(root)
self.assertIsInstance(ctx.exception.source, XMLResource)
self.assertFalse(ctx.exception.source.is_lazy())
resource = XMLResource(io.StringIO('<root a="10"/>'), lazy=True)
with self.assertRaises(XMLSchemaValidationError) as ctx:
schema.validate(resource)
self.assertIsInstance(ctx.exception.source, XMLResource)
self.assertTrue(ctx.exception.source.is_lazy())
self.assertIsNone(ctx.exception.elem)
self.assertEqual(ctx.exception.source, resource)
self.assertEqual(ctx.exception.path, '/root')
@unittest.skipIf(lxml_etree is None, 'lxml is not installed ...')
def test_sourceline_property(self):
schema = XMLSchema("""
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root" type="xs:integer"/>
</xs:schema>""")
root = lxml_etree.XML('<root a="10"/>')
with self.assertRaises(XMLSchemaValidationError) as ctx:
schema.validate(root) # noqa
self.assertEqual(ctx.exception.sourceline, 1)
self.assertEqual(ctx.exception.root, root)
def test_other_properties(self):
xsd_file = os.path.join(CASES_DIR, 'examples/vehicles/vehicles.xsd')
xs = XMLSchema(xsd_file)
with self.assertRaises(XMLSchemaValidatorError) as ctx:
raise XMLSchemaValidatorError(xs, 'unknown error')
self.assertIsNone(ctx.exception.root)
self.assertIsNotNone(ctx.exception.schema_url)
self.assertEqual(ctx.exception.origin_url, xs.source.url)
self.assertIsNone(XMLSchemaValidatorError(None, 'unknown error').origin_url) # noqa
def test_decode_error(self):
error = XMLSchemaDecodeError(
validator=XMLSchema.meta_schema.types['int'],
obj='10.0',
decoder=int,
reason="invalid literal for int() with base 10: '10.0'",
)
self.assertIs(error.decoder, int)
self.assertIn("Reason: invalid literal for int() with base 10: '10.0'", error.msg)
self.assertIn('Schema component:', error.msg)
def test_encode_error(self):
error = XMLSchemaEncodeError(
validator=XMLSchema.meta_schema.types['string'],
obj=10,
encoder=str,
reason="10 is not an instance of <class 'str'>",
)
self.assertIs(error.encoder, str)
self.assertIn('Reason: 10 is not an instance of', error.msg)
self.assertIn('Schema component:', error.msg)
def test_children_validation_error(self):
schema = XMLSchema("""
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="a">
<xs:complexType>
<xs:sequence>
<xs:element name="b1" type="xs:string"/>
<xs:element name="b2" type="xs:string"/>
<xs:element name="b3" type="xs:string" minOccurs="2" maxOccurs="3"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>""")
with self.assertRaises(XMLSchemaChildrenValidationError) as ctx:
schema.validate('<a><b1/><b2/><b3/><b3/><b3/><b3/></a>')
lines = str(ctx.exception).split('\n')
self.assertEqual(lines[2], "Reason: Unexpected child with tag 'b3' at position 6.")
self.assertEqual(lines[-2], "Path: /a")
with self.assertRaises(XMLSchemaChildrenValidationError) as ctx:
schema.validate('<a><b1/><b2/><b3/></a>')
lines = str(ctx.exception).split('\n')
self.assertEqual(lines[2][:51], "Reason: The content of element 'a' is not complete.")
self.assertEqual(lines[-2], "Path: /a")
root = ElementTree.XML('<a><b1/><b2/><b2/><b3/><b3/><b3/></a>')
validator = schema.elements['a'].type.content
with self.assertRaises(XMLSchemaChildrenValidationError) as ctx:
raise XMLSchemaChildrenValidationError(validator, root, 2, validator[1], 2)
lines = str(ctx.exception).split('\n')
self.assertTrue(lines[2].endswith("occurs 2 times but the maximum is 1."))
schema = XMLSchema("""
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="a">
<xs:complexType>
<xs:sequence>
<xs:element name="b1" type="xs:string"/>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>""")
with self.assertRaises(XMLSchemaChildrenValidationError) as ctx:
schema.validate('<a><b1/></a>')
lines = str(ctx.exception).split('\n')
self.assertTrue(lines[2].endswith("Tag from \'##any\' namespace/s expected."))
schema = XMLSchema("""
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="a">
<xs:complexType>
<xs:sequence>
<xs:element name="b1" type="xs:string"/>
<xs:choice>
<xs:any namespace="tns0" processContents="lax"/>
<xs:element name="b2" type="xs:string"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>""")
with self.assertRaises(XMLSchemaChildrenValidationError) as ctx:
schema.validate('<a><b1/></a>')
lines = str(ctx.exception).split('\n')
self.assertTrue(lines[2].endswith("Tag 'b2' expected."))
def test_invalid_child_property(self):
schema = XMLSchema("""
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="a">
<xs:complexType>
<xs:choice>
<xs:element name="b1" type="bType"/>
<xs:element name="b2" type="bType"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:complexType name="bType">
<xs:sequence>
<xs:element name="c1" type="xs:string"/>
<xs:element name="c2" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:schema>""")
with self.assertRaises(XMLSchemaChildrenValidationError) as ctx:
schema.validate('<a><c1/></a>')
lines = str(ctx.exception).split('\n')
self.assertTrue(lines[2].endswith("Tag ('b1' | 'b2') expected."))
invalid_child = ctx.exception.invalid_child
self.assertTrue(is_etree_element(invalid_child))
self.assertEqual(invalid_child.tag, 'c1')
xml_source = '<a><b1></b1><b2><c1/><c1/></b2></a>'
resource = XMLResource(xml_source)
errors = list(schema.iter_errors(resource))
self.assertEqual(len(errors), 3)
self.assertIsNone(errors[0].invalid_child)
self.assertTrue(is_etree_element(errors[1].invalid_child))
self.assertEqual(errors[1].invalid_child.tag, 'c1')
self.assertTrue(is_etree_element(errors[2].invalid_child))
self.assertEqual(errors[2].invalid_child.tag, 'b2')
xml_source = '<a><b1></b1><b2><c1/><c1/></b2></a>'
resource = XMLResource(xml_source, lazy=True)
errors = list(schema.iter_errors(resource))
self.assertEqual(len(errors), 3)
self.assertIsNone(errors[0].invalid_child)
self.assertIsNone(errors[1].invalid_child)
self.assertIsNone(errors[2].invalid_child)
def test_validation_error_logging(self):
schema = XMLSchema("""
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root" type="xs:integer"/>
</xs:schema>""")
with self.assertLogs('xmlschema', level='DEBUG') as ctx:
with self.assertRaises(XMLSchemaValidationError):
schema.validate('<root/>')
self.assertEqual(len(ctx.output), 0)
errors = list(schema.iter_errors('<root/>'))
self.assertEqual(len(errors), 1)
self.assertIsInstance(errors[0], XMLSchemaDecodeError)
self.assertEqual(len(ctx.output), 1)
self.assertIn('Collect XMLSchemaDecodeError', ctx.output[0])
self.assertIn('with traceback:', ctx.output[0])
@unittest.skipIf(lxml_etree is None, 'lxml is not installed ...')
def test_sourceline__issue_456(self):
xsd_file = CASES_DIR.joinpath('examples/vehicles/vehicles.xsd')
xml_file = CASES_DIR.joinpath('examples/vehicles/vehicles-2_errors.xml')
schema = XMLSchema(xsd_file)
root = lxml_etree.parse(xml_file).getroot()
errors = [e for e in schema.iter_errors(root)] # noqa
self.assertEqual(len(errors), 2)
self.assertEqual(errors[0].sourceline, 4)
self.assertEqual(errors[1].sourceline, 9)
kwargs = dict(schema=schema, lazy=False)
errors = [e for e in iter_errors(root, **kwargs)] # noqa
self.assertEqual(len(errors), 2)
self.assertEqual(errors[0].sourceline, 4)
self.assertEqual(errors[1].sourceline, 9)
kwargs = dict(iterparse=lxml_etree.iterparse, schema=schema, lazy=True)
errors = [e for e in iter_errors(xml_file, **kwargs)] # noqa
self.assertEqual(len(errors), 2)
self.assertEqual(errors[0].sourceline, 4)
self.assertEqual(errors[1].sourceline, 9)
if __name__ == '__main__':
from xmlschema.testing import run_xmlschema_tests
run_xmlschema_tests('validator exceptions')
|