blob: b3bf6042fc5ccd62d4b0331e126d61fe3212d158 [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 - December 16, 2009
package org.eclipse.persistence.testing.jaxb.typemappinginfo;
import java.io.InputStream;
import java.lang.reflect.Type;
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;
public class MapStringIntegerTestCases extends TypeMappingInfoWithJSONTestCases{
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/stringIntegerHashMap.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/stringIntegerHashMap.json";
public static Map<String, Integer> myMap = new HashMap<String, Integer>();
public MapStringIntegerTestCases(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.setXmlTagName(new QName("","root"));
tmi.setElementScope(ElementScope.Local);
Type t = getClass().getField("myMap").getGenericType();
tmi.setType(t);
typeMappingInfos[0] = tmi;
}
return typeMappingInfos;
}
@Override
public Object getReadControlObject() {
QName qname = new QName("", "root");
JAXBElement jbe = new JAXBElement(qname, Object.class, null);
jbe.setValue(getControlObject());
return jbe;
}
@Override
protected Object getControlObject() {
HashMap<String, Integer> theMap = new HashMap<String, Integer>();
theMap.put("thekey", 10);
return theMap;
}
@Override
public Map<String, InputStream> getControlSchemaFiles() {
InputStream instream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/typemappinginfo/stringIntegerHashMap.xsd");
Map<String, InputStream> controlSchema = new HashMap<String, InputStream>();
controlSchema.put("", instream);
return controlSchema;
}
public void testTypeMappingInfoToSchemaType() throws Exception{
Map<TypeMappingInfo, QName> theMap =((org.eclipse.persistence.jaxb.JAXBContext)jaxbContext).getTypeMappingInfoToSchemaType();
assertNotNull(theMap);
assertEquals(1, theMap.size());
assertNotNull(theMap.get(getTypeMappingInfos()[0]));
}
}