diff --git a/ChangeLog b/ChangeLog index bd918937..1f008523 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Wed May 25 18:59:53 CEST 2005 Kasimier Buchcik + + * xmlschemas.c: Fixed facet errors to be channelled back for + union type members; facet-validation will stop now on the + first error. Reported by GUY Fabrice to the mailing-list. + * xmlschemastypes.c: Changed to ignore lengh-related facet + validation for QNames and NOTATIONs as proposed by the + schema people. + * test/schemas/union2* result/schemas/union2*: Added + regression tests for union types (by GUY Fabrice). + Fri May 20 20:48:08 CEST 2005 Daniel Veillard * xmlsave.c: applied patch from Mark Vakoc fixing saving of diff --git a/result/schemas/union2_1_1 b/result/schemas/union2_1_1 new file mode 100644 index 00000000..0d4ee15b --- /dev/null +++ b/result/schemas/union2_1_1 @@ -0,0 +1 @@ +./test/schemas/union2_1.xml fails to validate diff --git a/result/schemas/union2_1_1.err b/result/schemas/union2_1_1.err new file mode 100644 index 00000000..4c3d6bee --- /dev/null +++ b/result/schemas/union2_1_1.err @@ -0,0 +1 @@ +./test/schemas/union2_1.xml:4: element ELEMENTS: Schemas validity error : Element 'ELEMENTS' [simple type]: The character content is not valid. diff --git a/test/schemas/union2_1.xml b/test/schemas/union2_1.xml new file mode 100644 index 00000000..e1480809 --- /dev/null +++ b/test/schemas/union2_1.xml @@ -0,0 +1,6 @@ + + + 5 + \ No newline at end of file diff --git a/test/schemas/union2_1.xsd b/test/schemas/union2_1.xsd new file mode 100644 index 00000000..6d837261 --- /dev/null +++ b/test/schemas/union2_1.xsd @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/xmlschemas.c b/xmlschemas.c index eb8b865b..b837f4b1 100644 --- a/xmlschemas.c +++ b/xmlschemas.c @@ -18076,7 +18076,7 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, unsigned long length, int fireErrors) { - int ret = 0; + int ret = 0, error = 0; xmlNodePtr node; xmlSchemaTypePtr biType; /* The build-in type. */ xmlSchemaTypePtr tmpType; @@ -18149,10 +18149,15 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, "Internal error: xmlSchemaValidateFacetsInternal, " "validating facet of type '%s'.\n", type->name, NULL); - break; - } else if ((ret > 0) && (fireErrors)) { - xmlSchemaVFacetErr(ctxt, ret, node, value, len, - type, facet, NULL, NULL, NULL, NULL); + return (-1); + } else if (ret > 0) { + if (fireErrors) { + xmlSchemaVFacetErr(ctxt, ret, node, value, len, + type, facet, NULL, NULL, NULL, NULL); + } else + return (ret); + if (error == 0) + error = ret; } facetLink = facetLink->next; @@ -18160,7 +18165,7 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, } - if (ret >= 0) { + if (error >= 0) { xmlSchemaWhitespaceValueType fws; int found = 0; /* @@ -18191,8 +18196,7 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, "Internal error: xmlSchemaValidateFacetsInternal, " "validating enumeration facet '%s' of type '%s'.\n", facet->value, tmpType->name); - ret = -1; - break; + return (-1); } } if (retFacet <= 0) @@ -18205,11 +18209,14 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, if (fireErrors) { xmlSchemaVFacetErr(ctxt, ret, node, value, 0, type, NULL, NULL, NULL, NULL, NULL); - } + } else + return (ret); + if (error == 0) + error = ret; } } - if (ret >= 0) { + if (error >= 0) { /* * Process patters. Pattern facets are ORed at type level * and ANDed if derived. Walk the base type axis. @@ -18231,8 +18238,7 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, "Internal error: xmlSchemaValidateFacetsInternal, " "validating 'pattern' facet '%s' of type '%s'.\n", facetLink->facet->value, tmpType->name); - ret = -1; - break; + return (-1); } else /* Save the last non-validating facet. */ facet = facetLink->facet; @@ -18246,11 +18252,14 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, if (fireErrors) { xmlSchemaVFacetErr(ctxt, ret, node, value, 0, type, facet, NULL, NULL, NULL, NULL); - } + } else + return (ret); + if (error == 0) + error = ret; } } - return (ret); + return (error); } /************************************************************************ diff --git a/xmlschemastypes.c b/xmlschemastypes.c index fce468b4..4a917953 100644 --- a/xmlschemastypes.c +++ b/xmlschemastypes.c @@ -4671,14 +4671,20 @@ xmlSchemaValidateLengthFacetInternal(xmlSchemaFacetPtr facet, case XML_SCHEMAS_NMTOKEN: case XML_SCHEMAS_NAME: case XML_SCHEMAS_NCNAME: - case XML_SCHEMAS_ID: - /* - * FIXME: What exactly to do with anyURI? + case XML_SCHEMAS_ID: + /* + * FIXME: What exactly to do with anyURI? */ case XML_SCHEMAS_ANYURI: if (value != NULL) len = xmlSchemaNormLen(value); break; + case XML_SCHEMAS_QNAME: + case XML_SCHEMAS_NOTATION: + /* + * Ignore validation against QName and NOTATION. + */ + return (0); default: TODO }