After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 571271 - Schema validation is not correct when <all> has minOccurs="o"
Schema validation is not correct when <all> has minOccurs="o"
Status: RESOLVED FIXED
Product: libxml2
Classification: Platform
Component: general
2.6.28
Other All
: Normal normal
: ---
Assigned To: Daniel Veillard
libxml QA maintainers
Depends on:
Blocks:
 
 
Reported: 2009-02-11 06:05 UTC by nagesh
Modified: 2010-07-07 16:32 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description nagesh 2009-02-11 06:05:58 UTC
Please describe the problem:
In the schema file, <all> model group has minOccurs="0". and has 3 elements under this all model group. In the instance document, if only two elements are present, then validation should give an error. but libxml2 is not giving any error.

Steps to reproduce:
1. declare an element declaration with <all> model group with minOccurs="0" which has 3 elements.
2. In the instance document give only two elements.


Actual results:
Validation is not giving any error.

Expected results:
Schema validation should give error.

Does this happen every time?
yes

Other information:
Schema script:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:bar="http://bar">
	<xs:element name="root">
		<xs:complexType>
			<xs:sequence minOccurs="0" maxOccurs="unbounded">
				<xs:element ref="test3"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="test3">
		<xs:complexType>
			<xs:all minOccurs="0">
				<xs:element name="t3-a"/>
				<xs:element name="t3-b"/>
				<xs:element name="t3-c"/>
			</xs:all>
		</xs:complexType>
	</xs:element>
</xs:schema>


Instance document:

<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="D:\TestCases\Bugzilla\BUG_190.xsd">
	<test3>
		<t3-a/>
		<t3-b/>
	</test3>
</root>
Comment 1 Daniel Veillard 2009-08-12 13:44:45 UTC
Well xs:all with minOccurs=0 is completely unclear from the spec
  http://lists.xml.org/archives/xml-dev/200109/msg00512.html

and I guess we misinterpreted the expected behaviour of this options
(though I'm still not 100% sure). Anyway I have commited the fix in
git (bd56c44349d9e14ed54e77b2706d0f92d1a1f994)

Daniel
Comment 2 mike bayer 2010-07-07 16:32:26 UTC
How come this fix was committed without being "100% sure" on what the spec intends to say ?   Here are two sources regarding the feature - the spec I agree is not clear, however the second link is from a tutorial site that specifies the opposite behavior:

http://www.w3.org/TR/xmlschema-0/#ref18  - "All the elements in the group may appear once or not at all, and they may appear in any order."

http://www.w3schools.com/Schema/el_all.asp - "The example above indicates that the "firstname" and the "lastname" elements can appear in any order and each element CAN appear zero or one time!"

This at least qualifies as debatable.  I asked about this on stackoverflow at http://stackoverflow.com/questions/3196806/need-clarification-regarding-xml-schema-all-tag-is-this-a-libxml2-bug , to see if anyone has more insight.