blob: f7ac4882105feb357e976fc4bd11ddd8532f67f6 [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 - January, 2010
package org.eclipse.persistence.testing.jaxb.typemappinginfo;
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.JAXBContextProperties;
import org.eclipse.persistence.jaxb.TypeMappingInfo;
import org.eclipse.persistence.jaxb.TypeMappingInfo.ElementScope;
public class DefaultTargetNamespaceTestCases extends TypeMappingInfoWithJSONTestCases{
protected final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/customer_dtn.xml";
protected final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/customer_dtn.json";
public DefaultTargetNamespaceTestCases(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[1];
TypeMappingInfo tmi = new TypeMappingInfo();
tmi.setType(Customer.class);
tmi.setXmlTagName(new QName("overridden/namespace", "customer"));
tmi.setElementScope(ElementScope.Global);
typeMappingInfos[0] = tmi;
}
return typeMappingInfos;
}
@Override
protected Object getControlObject() {
Customer cust = new Customer();
cust.firstName = "John";
cust.lastName = "Doe";
cust.phoneNumber = "123-456-7890";
JAXBElement<Customer> elem = new JAXBElement<Customer>(new QName("overridden/namespace", "customer"), Customer.class, cust);
return elem;
}
@Override
public Map<String, InputStream> getControlSchemaFiles(){
InputStream instream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/typemappinginfo/customer_dtn.xsd");
Map<String, InputStream> controlSchema = new HashMap<String, InputStream>();
controlSchema.put("overridden/namespace", instream);
return controlSchema;
}
protected String getNoXsiTypeControlResourceName() {
return XML_RESOURCE;
}
@Override
protected Map getProperties() {
HashMap props = new HashMap();
props.put(JAXBContextProperties.DEFAULT_TARGET_NAMESPACE, "overridden/namespace");
return props;
}
}