| /* Copyright 2004 The Apache Software Foundation | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software | |
| * distributed under the License is distributed on an "AS IS" BASIS, | |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| * See the License for the specific language governing permissions and | |
| * limitations under the License. | |
| */ | |
| package scomp.redefine.detailed; | |
| import org.apache.xmlbeans.*; | |
| import org.apache.xmlbeans.impl.xb.xsdschema.SchemaDocument; | |
| import org.junit.jupiter.api.Test; | |
| import javax.xml.namespace.QName; | |
| import static org.junit.jupiter.api.Assertions.*; | |
| import static scomp.common.BaseCase.createOptions; | |
| public class MultipleRedefines { | |
| private static final String[] MULTIPLE_SCHEMAS = { | |
| "<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">" + | |
| " <xs:complexType name=\"T\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name =\"A\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:complexType>" + | |
| "</xs:schema>", | |
| "<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">" + | |
| " <xs:redefine schemaLocation=\"A.xsd\">" + | |
| " <xs:complexType name=\"T\">" + | |
| " <xs:complexContent>" + | |
| " <xs:extension base=\"T\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name=\"B\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:extension>" + | |
| " </xs:complexContent>" + | |
| " </xs:complexType>" + | |
| " </xs:redefine>" + | |
| " </xs:schema>", | |
| "<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">" + | |
| " <xs:complexType name=\"S\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name=\"C\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:complexType>" + | |
| "</xs:schema>", | |
| "<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">" + | |
| " <xs:redefine schemaLocation=\"B.xsd\">" + | |
| " <xs:complexType name=\"T\">" + | |
| " <xs:complexContent>" + | |
| " <xs:extension base=\"T\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name=\"D\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:extension>" + | |
| " </xs:complexContent>" + | |
| " </xs:complexType>" + | |
| " </xs:redefine>" + | |
| " <xs:redefine schemaLocation=\"C.xsd\">" + | |
| " <xs:complexType name=\"S\">" + | |
| " <xs:complexContent>" + | |
| " <xs:extension base=\"S\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name=\"D\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:extension>" + | |
| " </xs:complexContent>" + | |
| " </xs:complexType>" + | |
| " </xs:redefine>" + | |
| "</xs:schema>", | |
| "<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">" + | |
| " <xs:redefine schemaLocation=\"D.xsd\">" + | |
| " <xs:complexType name=\"S\">" + | |
| " <xs:complexContent>" + | |
| " <xs:extension base=\"S\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name=\"E\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:extension>" + | |
| " </xs:complexContent>" + | |
| " </xs:complexType>" + | |
| " <xs:complexType name=\"T\">" + | |
| " <xs:complexContent>" + | |
| " <xs:extension base=\"T\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name=\"E\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:extension>" + | |
| " </xs:complexContent>" + | |
| " </xs:complexType>" + | |
| " </xs:redefine>" + | |
| "</xs:schema>"}; | |
| private static final String[] MULTIPLE_SCHEMAS_NAME = { | |
| "A.xsd", "B.xsd", "C.xsd", "D.xsd", "E.xsd"}; | |
| private static final String[] CIRCULAR_SCHEMAS = { | |
| "<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">" + | |
| " <xs:redefine schemaLocation=\"D.xsd\">" + | |
| " <xs:complexType name=\"T\">" + | |
| " <xs:complexContent>" + | |
| " <xs:extension base=\"T\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name=\"A\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:extension>" + | |
| " </xs:complexContent>" + | |
| " </xs:complexType>" + | |
| " </xs:redefine>" + | |
| " <xs:complexType name=\"T\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name=\"A\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:complexType>" + | |
| "</xs:schema>", | |
| "<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">" + | |
| " <xs:redefine schemaLocation=\"A.xsd\">" + | |
| " <xs:complexType name=\"T\">" + | |
| " <xs:complexContent>" + | |
| " <xs:extension base=\"T\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name=\"B\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:extension>" + | |
| " </xs:complexContent>" + | |
| " </xs:complexType>" + | |
| " </xs:redefine>" + | |
| "</xs:schema>", | |
| "<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">" + | |
| " <xs:redefine schemaLocation=\"B.xsd\">" + | |
| " <xs:complexType name=\"T\">" + | |
| " <xs:complexContent>" + | |
| " <xs:extension base=\"T\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name=\"C\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:extension>" + | |
| " </xs:complexContent>" + | |
| " </xs:complexType>" + | |
| " </xs:redefine>" + | |
| "</xs:schema>", | |
| "<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">" + | |
| " <xs:redefine schemaLocation=\"C.xsd\">" + | |
| " <xs:complexType name=\"T\">" + | |
| " <xs:complexContent>" + | |
| " <xs:extension base=\"T\">" + | |
| " <xs:sequence>" + | |
| " <xs:element name=\"D\" type=\"xs:string\"/>" + | |
| " </xs:sequence>" + | |
| " </xs:extension>" + | |
| " </xs:complexContent>" + | |
| " </xs:complexType>" + | |
| " </xs:redefine>" + | |
| "</xs:schema>"}; | |
| private static final String[] CIRCULAR_SCHEMAS_NAME = { | |
| "A.xsd", "B.xsd", "C.xsd", "D.xsd"}; | |
| @Test | |
| void testMultipleRedefines() throws Exception { | |
| int N = MULTIPLE_SCHEMAS.length; | |
| SchemaDocument[] sdocs = new SchemaDocument[N]; | |
| for (int i = 0; i < N; i++) { | |
| sdocs[i] = SchemaDocument.Factory.parse(MULTIPLE_SCHEMAS[i]); | |
| sdocs[i].documentProperties().setSourceName(MULTIPLE_SCHEMAS_NAME[i]); | |
| } | |
| SchemaTypeSystem ts = XmlBeans.compileXsd(sdocs, XmlBeans.getBuiltinTypeSystem(), createOptions()); | |
| assertNotNull(ts); | |
| SchemaType t = ts.findType(new QName("", "T")); | |
| assertNotNull(t); | |
| SchemaParticle p = t.getContentModel(); | |
| assertNotNull(p); | |
| assertEquals(p.getParticleType(), SchemaParticle.SEQUENCE); | |
| SchemaParticle[] elts = p.getParticleChildren(); | |
| assertEquals(elts.length, 4); | |
| for (SchemaParticle elt : elts) { | |
| assertEquals(elt.getParticleType(), SchemaParticle.ELEMENT); | |
| } | |
| assertEquals("A", elts[0].getName().getLocalPart()); | |
| assertEquals("B", elts[1].getName().getLocalPart()); | |
| assertEquals("D", elts[2].getName().getLocalPart()); | |
| assertEquals("E", elts[3].getName().getLocalPart()); | |
| } | |
| @Test | |
| void testCircularRedefines() throws Exception { | |
| int N =CIRCULAR_SCHEMAS.length; | |
| SchemaDocument[] sdocs = new SchemaDocument[N]; | |
| for (int i = 0; i < N; i++) { | |
| sdocs[i] = SchemaDocument.Factory.parse(CIRCULAR_SCHEMAS[i]); | |
| sdocs[i].documentProperties().setSourceName(CIRCULAR_SCHEMAS_NAME[i]); | |
| } | |
| XmlOptions validateOptions = createOptions(); | |
| XmlException e = assertThrows(XmlException.class, () -> | |
| XmlBeans.compileXsd(sdocs, XmlBeans.getBuiltinTypeSystem(), validateOptions)); | |
| XmlError xe = validateOptions.getErrorListener().iterator().next(); | |
| assertTrue(xe.getMessage().contains("circular")); | |
| } | |
| } |