blob: 4650c3aad88e19db62086357cc1d5ffe1448abb6 [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:
// Denise Smith - January, 2010 - 2.0.1
package org.eclipse.persistence.testing.jaxb.typemappinginfo.collisions;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import jakarta.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import org.eclipse.persistence.jaxb.TypeMappingInfo;
import org.eclipse.persistence.jaxb.TypeMappingInfo.ElementScope;
import org.eclipse.persistence.testing.jaxb.typemappinginfo.Employee;
import org.eclipse.persistence.testing.jaxb.typemappinginfo.TypeMappingInfoWithJSONTestCases;
public class ConflictingClassAndTypeTestCases extends TypeMappingInfoWithJSONTestCases{
protected final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/collisions/conflictingClasses.xml";
protected final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/collisions/conflictingClasses.json";
public Employee testField;
public ConflictingClassAndTypeTestCases(String name) throws Exception {
super(name);
init();
}
public void init() throws Exception {
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
setTypeMappingInfos(getTypeMappingInfos());
}
protected TypeMappingInfo[] getTypeMappingInfos()throws Exception {
if(typeMappingInfos == null) {
typeMappingInfos = new TypeMappingInfo[2];
TypeMappingInfo tmi = new TypeMappingInfo();
tmi.setXmlTagName(new QName("someUri","testTagName1"));
tmi.setElementScope(ElementScope.Global);
tmi.setType(Employee.class);
typeMappingInfos[0] = tmi;
TypeMappingInfo tmi2 = new TypeMappingInfo();
tmi2.setXmlTagName(new QName("someUri","testTagName2"));
tmi2.setElementScope(ElementScope.Global);
tmi2.setType(getClass().getField("testField").getGenericType());
typeMappingInfos[1] = tmi2;
}
return typeMappingInfos;
}
@Override
protected Object getControlObject() {
QName qname = new QName("someUri", "testTagName");
JAXBElement jaxbElement = new JAXBElement(qname, Employee.class, null);
Employee emp = new Employee();
emp.firstName ="theFirstName";
emp.lastName = "theLastName";
jaxbElement.setValue(emp);
return jaxbElement;
}
@Override
public Object getWriteControlObject() {
QName qname = new QName("someUri", "testTagName");
JAXBElement jaxbElement = new JAXBElement(qname, Object.class, null);
Employee emp = new Employee();
emp.firstName ="theFirstName";
emp.lastName = "theLastName";
jaxbElement.setValue(emp);
return jaxbElement;
}
@Override
public Map<String, InputStream> getControlSchemaFiles(){
InputStream instream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/typemappinginfo/collisions/conflictingClasses.xsd");
Map<String, InputStream> controlSchema = new HashMap<String, InputStream>();
controlSchema.put("someUri", instream);
return controlSchema;
}
protected String getNoXsiTypeControlResourceName() {
return XML_RESOURCE;
}
}