blob: ca2346231f2276b9693a3cd2184cd8fc3b41de01 [file] [log] [blame]
/*
* Copyright (c) 2011, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// dmccann - 2.3 - Initial implementation
package org.eclipse.persistence.testing.jaxb.xmltype;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
public class XmlTypeNameTestCases extends JAXBWithJSONTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmltype/page.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmltype/page.json";
private final static String XSD_RESOURCE0 = "org/eclipse/persistence/testing/jaxb/xmltype/page0.xsd";
private final static String XSD_RESOURCE1 = "org/eclipse/persistence/testing/jaxb/xmltype/page1.xsd";
private final static String VALUE = "true";
public XmlTypeNameTestCases(String name) throws Exception {
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
Class[] classes = new Class[13];
classes[0] = GetPageResponse.class;
classes[1] = A2BCDESomeTest.class; //complex type for this should be "a2BCDESomeTest"
classes[2] = b.class; //complex type should be "b"
classes[3] = C.class; //complex type should be "c"
classes[4] = CLASS2.class; //complex type should be "class2"
classes[5] = ABC.class; //complex type should be "abc"
classes[6] = AbbbCD.class; //complex type should be "abbbCD"
classes[7] = USPrice.class; //complex type should be "usPrice"
classes[8] = BooleanTest.class; //complex type should be "booleanTest"
classes[9] = ABCDEfgh.class; //complex type should be "abcdEfgh"
classes[10] = QNameTest.class; //complex type should be "qNameTest"
classes[11] = CDNPriceNoAnnotation.class; //complex type should be "cdnPriceNoAnnotation"
classes[12] = AB2cd3fg4HI.class; //complex type should be "ab2Cd3Fg4HI"
setClasses(classes);
}
@Override
protected Object getControlObject() {
Page returnPage = new Page();
returnPage.setIsEmailLinkRequired(VALUE);
GetPageResponse gpr = new GetPageResponse();
gpr.setReturn(returnPage);
return gpr;
}
public void testSchemaGen() throws Exception{
List<InputStream> controlSchemas = new ArrayList<InputStream>();
InputStream is0 = getClass().getClassLoader().getResourceAsStream(XSD_RESOURCE0);
InputStream is1 = getClass().getClassLoader().getResourceAsStream(XSD_RESOURCE1);
controlSchemas.add(is1);
controlSchemas.add(is0);
super.testSchemaGen(controlSchemas);
}
}