blob: 9bd7056d01bd6b18b5588098d9093b179054e6db [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:
// - rbarkhouse - 12 September 2012 - 2.4 - Initial implementation
package org.eclipse.persistence.testing.jaxb.typemappinginfo.parray;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.Marshaller;
import javax.xml.namespace.QName;
import org.eclipse.persistence.jaxb.MarshallerProperties;
import org.eclipse.persistence.jaxb.TypeMappingInfo;
import org.eclipse.persistence.jaxb.UnmarshallerProperties;
import org.eclipse.persistence.jaxb.TypeMappingInfo.ElementScope;
import org.eclipse.persistence.oxm.MediaType;
import org.eclipse.persistence.oxm.XMLConstants;
import org.eclipse.persistence.testing.jaxb.typemappinginfo.TypeMappingInfoWithJSONTestCases;
public class PrimitiveIntArrayTestsCases extends TypeMappingInfoWithJSONTestCases {
protected final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/parray/int.xml";
protected final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/parray/int.json";
public int[] intArrayField;
public PrimitiveIntArrayTestsCases(String name) throws Exception {
super(name);
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("intArrayField").getGenericType());
typeMappingInfos[0] = tmi;
}
return typeMappingInfos;
}
@Override
protected Object getControlObject() {
QName qname = new QName("http://jaxb.dev.java.net/array", "testTagName");
int[] value = new int[3];
value[0] = 1;
value[1] = 2;
value[2] = 3;
JAXBElement jaxbElement = new JAXBElement(qname, int[].class, value);
return jaxbElement;
}
@Override
public Map<String, InputStream> getControlSchemaFiles() {
InputStream instream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/typemappinginfo/parray/int.xsd");
Map<String, InputStream> controlSchema = new HashMap<String, InputStream>();
controlSchema.put("http://jaxb.dev.java.net/array", instream);
return controlSchema;
}
}