blob: 02bc1f9f855a8098a34c44f2601fa8650a15312e [file] [log] [blame]
/*
* Copyright (c) 1998, 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:
// Matt MacIvor - October 2011 - 2.4 - Initial implementation
package org.eclipse.persistence.testing.jaxb.schemagen.xmlpath;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.persistence.testing.jaxb.JAXBTestCases;
public class SchemaGenXmlPathTestCases extends JAXBTestCases {
protected final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/schemagen/xmlpath/xmlpath.xml";
public SchemaGenXmlPathTestCases(String name) throws Exception {
super(name);
init();
}
public void init() throws Exception {
setControlDocument(XML_RESOURCE);
setClasses(new Class[] { MyClass.class, Phone.class, Address.class, CanadianAddress.class });
}
public List<InputStream> getControlSchemaFiles(){
InputStream instream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/schemagen/xmlpath/xmlpath.xsd");
List<InputStream> controlSchema = new ArrayList<InputStream>();
controlSchema.add(instream);
return controlSchema;
}
public void testSchemaGen() throws Exception {
testSchemaGen(getControlSchemaFiles());
}
@Override
protected Object getControlObject() {
MyClass obj = new MyClass();
obj.name = "Bob Jones";
obj.email = "bob@myemail.com";
obj.confirmed = true;
obj.homePhone = new Phone();
obj.homePhone.number = "123-4567";
obj.workPhone = new Phone();
obj.workPhone.number = "345-6789";
CanadianAddress a = new CanadianAddress();
a.street = "123 Main St.";
a.postalCode = "A1B 2C3";
a.province = "Nunavut";
obj.address = a;
return obj;
}
}