blob: 7ab4747aee58c4ca65b6191035309f88f2ae44c4 [file] [log] [blame]
/* 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.contentType.complex.detailed;
import org.apache.xmlbeans.XmlException;
import org.apache.xmlbeans.XmlObject;
import org.apache.xmlbeans.XmlOptions;
import org.junit.Test;
import scomp.common.BaseCase;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
public class ComplexContentTest extends BaseCase {
// complex types with simple content whose content is declared via an inline <simpleType>
// Issue fixed with Svn revision 165352
@Test
public void testSimpleContentDerivation() {
String sInputXsd = "<?xml version=\"1.0\"?>\n" +
"<xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\">\n" +
" <xs:complexType name=\"myType\">\n" +
" <xs:simpleContent>\n" +
" <xs:extension base=\"xs:string\"/>\n" +
" </xs:simpleContent>\n" +
" </xs:complexType>\n" +
" <xs:complexType name=\"fooType\">\n" +
" <xs:simpleContent>\n" +
" <xs:restriction base=\"myType\">\n" +
" <xs:simpleType>\n" +
" <xs:restriction base=\"xs:string\"/>\n" +
" </xs:simpleType>\n" +
" </xs:restriction>\n" +
" </xs:simpleContent>\n" +
" </xs:complexType>\n" +
" <xs:element name=\"root\" type=\"fooType\"/>\n" +
"</xs:schema>";
XmlOptions options = new XmlOptions();
List errors = new ArrayList();
options.setErrorListener(errors);
try {
XmlObject xobj = XmlObject.Factory.parse(sInputXsd);
assertTrue("Compiled XmlObject Validation Failed!",xobj.validate());
}
catch (XmlException xme) {
xme.printStackTrace();
fail("XmlException thrown when compiling schema");
}
// check for errors
for (Iterator iterator = errors.iterator(); iterator.hasNext();) {
System.out.println("Xsd Compilation Errors : " + iterator.next());
}
if (!errors.isEmpty()) {
fail("Errors found when compiling schema");
}
}
}