blob: 68016600c0687ee6017216d397154df7c13f51bb [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:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.oxm.mappings.choicecollection;
import java.io.FileReader;
import java.io.InputStream;
import org.eclipse.persistence.oxm.XMLContext;
import org.eclipse.persistence.oxm.XMLUnmarshaller;
import org.eclipse.persistence.sessions.Project;
import org.eclipse.persistence.sessions.factories.XMLProjectReader;
import org.eclipse.persistence.testing.oxm.mappings.XMLWithJSONMappingTestCases;
public class XMLChoiceCollectionWithGroupingElementTestCases extends XMLWithJSONMappingTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/oxm/mappings/choicecollection/ChoiceCollectionGrouping.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/oxm/mappings/choicecollection/ChoiceCollectionGrouping.json";
private final static String DEPLOYMENT_XML_RESOURCE = "org/eclipse/persistence/testing/oxm/mappings/choicecollection/deploymentXML-file_g.xml";
public XMLChoiceCollectionWithGroupingElementTestCases(String name) throws Exception {
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
//setSession(SESSION_NAME);
setProject(new EmployeeWithGroupingElementProject());
}
@Override
protected Object getControlObject() {
Employee employee = new Employee();
employee.name = "Jane Doe";
employee.choice = new java.util.Vector<Object>();
employee.choice.add("123 Fake Street");
employee.choice.add(Integer.valueOf(12));
Address addr = new Address();
addr.city = "Ottawa";
addr.street = "45 O'Connor";
employee.choice.add(addr);
employee.choice.add(Integer.valueOf(14));
employee.phone = "123-4567";
return employee;
}
@Override
public Object getJSONReadControlObject() {
Employee employee = new Employee();
employee.name = "Jane Doe";
employee.choice = new java.util.Vector<Object>();
employee.choice.add("123 Fake Street");
employee.choice.add(Integer.valueOf(12));
employee.choice.add(Integer.valueOf(14));
Address addr = new Address();
addr.city = "Ottawa";
addr.street = "45 O'Connor";
employee.choice.add(addr);
employee.phone = "123-4567";
return employee;
}
@Override
public Project getNewProject(Project originalProject, ClassLoader classLoader) {
Project project = super.getNewProject(originalProject, classLoader);
//project.getDatasourceLogin().setPlatform(new SAXPlatform());
return project;
}
public void testReadDeploymentXML() {
try {
// Read the deploymentXML-file.xml back in with XMLProjectReader
Project newProject = XMLProjectReader.read(DEPLOYMENT_XML_RESOURCE, Thread.currentThread().getContextClassLoader());
XMLContext ctx = new XMLContext(newProject);
XMLUnmarshaller unmarshaller = ctx.createUnmarshaller();
InputStream instream = ClassLoader.getSystemResourceAsStream(XML_RESOURCE);
Employee emp = (Employee) unmarshaller.unmarshal(instream);
instream.close();
Object[] choices = emp.choice.toArray();
assertTrue("Choice collection did not unmarshal properly", (choices!=null && choices.length>0));
} catch (Exception x) {
x.printStackTrace();
fail("Deployment XML read test failed");
}
}
}