blob: 879c00ace3d6474adc94edd465a62b54ca983599 [file] [log] [blame]
/*
* Copyright (c) 2012, 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:
// - rbarkhouse - 11 October 2012 - 2.3.4 - Initial implementation
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.TypeMappingInfo;
import org.eclipse.persistence.jaxb.TypeMappingInfo.ElementScope;
public class PrimitiveByteArrayTestCases extends TypeMappingInfoWithJSONTestCases {
protected final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/PrimitiveByteArray.xml";
protected final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/PrimitiveByteArray.json";
public byte[] byteArrayField;
public PrimitiveByteArrayTestCases(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("http://jaxb.dev.java.net/array", "testTagName"));
tmi.setElementScope(ElementScope.Global);
tmi.setType(getClass().getField("byteArrayField").getGenericType());
typeMappingInfos[0] = tmi;
}
return typeMappingInfos;
}
@Override
protected Object getControlObject() {
QName qname = new QName("http://jaxb.dev.java.net/array", "testTagName");
JAXBElement jaxbElement = new JAXBElement(qname, byte[].class, null);
byte[] value = new byte[2];
value[0] = 10;
value[1] = 20;
jaxbElement.setValue(value);
return jaxbElement;
}
@Override
public Map<String, InputStream> getControlSchemaFiles() {
InputStream instream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/typemappinginfo/PrimitiveByteArray.xsd");
Map<String, InputStream> controlSchema = new HashMap<String, InputStream>();
controlSchema.put("http://jaxb.dev.java.net/array", instream);
return controlSchema;
}
protected String getNoXsiTypeControlResourceName() {
return XML_RESOURCE;
}
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]));
}
}