blob: 7e8346d2e5c60aafe87d41d859259760033258d4 [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:
// mmacivor - January 09, 2009 - 1.1 - Initial implementation
package org.eclipse.persistence.testing.jaxb.annotations.xmlcontainerproperty;
import java.io.InputStream;
import java.util.Vector;
import org.eclipse.persistence.testing.jaxb.*;
public class ContainerPropertyTestCases extends JAXBWithJSONTestCases {
private static final String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/annotations/xmlcontainerproperty/containeraccessor.xml";
private static final String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/annotations/xmlcontainerproperty/containeraccessor.json";
private static final String JSON_SCHEMA_RESOURCE = "org/eclipse/persistence/testing/jaxb/annotations/xmlcontainerproperty/containeraccessorschema.json";
public ContainerPropertyTestCases(String name) throws Exception {
super(name);
setClasses(new Class[] {Employee.class, Address.class, PhoneNumber.class});
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
}
@Override
public Employee getControlObject() {
Employee emp = new Employee();
emp.id = 10;
emp.firstName = "Jane";
emp.lastName = "Doe";
emp.address = new Address();
emp.address.street = "123 Fake Street";
emp.address.city = "Ottawa";
emp.address.owningEmployee = emp;
emp.phoneNumbers = new Vector<PhoneNumber>();
PhoneNumber num1 = new PhoneNumber();
num1.number = "123-4567";
num1.owningEmployee = emp;
emp.phoneNumbers.add(num1);
PhoneNumber num2 = new PhoneNumber();
num2.number = "234-5678";
num2.owningEmployee = emp;
emp.phoneNumbers.add(num2);
return emp;
}
public void testJSONSchemaGen() throws Exception{
InputStream controlSchema = classLoader.getResourceAsStream(JSON_SCHEMA_RESOURCE);
super.generateJSONSchema(controlSchema);
}
}