blob: 2be3b6837b6bb2483b8c51f35c1cfececdbdc673 [file] [log] [blame]
/*
* Copyright (c) 2011, 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:
// bdoughan - April 22/2010 - 2.1 - Initial implementation
package org.eclipse.persistence.testing.jaxb.listofobjects;
import java.io.InputStream;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import jakarta.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
public class JAXBInt2DArrayTestCases extends JAXBListOfObjectsTestCases {
protected final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/listofobjects/int2DArray.xml";
protected final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/listofobjects/int2DArray.json";
private final static String XML_RESOURCE_NO_XSI_TYPE = "org/eclipse/persistence/testing/jaxb/listofobjects/int2DArray.xml";
public JAXBInt2DArrayTestCases(String name) throws Exception {
super(name);
init();
}
public void init() throws Exception {
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
Class[] classes = new Class[1];
classes[0] = int[][].class;
setClasses(classes);
initXsiType();
}
@Override
protected Map<String, String> getAdditationalNamespaces() {
Map<String, String> namespaces = new HashMap<>();
namespaces.put("examplenamespace", "ns0");
namespaces.put("http://jaxb.dev.java.net/array", "ns1");
return namespaces;
}
@Override
public List< InputStream> getControlSchemaFiles(){
InputStream instream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/listofobjects/int2DArray.xsd");
List<InputStream> controlSchema = new ArrayList<InputStream>();
controlSchema.add(instream);
return controlSchema;
}
@Override
protected Type getTypeToUnmarshalTo() {
return int[][].class;
}
@Override
protected Object getControlObject() {
int[][] my2DArray = new int[2][];
my2DArray[0] = new int[] {1,2,3};
my2DArray[1] = new int[] {4,5,6,7,8,9};
QName qname = new QName("examplenamespace", "root");
JAXBElement jaxbElement = new JAXBElement(qname, Object.class, my2DArray);
return jaxbElement;
}
@Override
protected String getNoXsiTypeControlResourceName() {
return XML_RESOURCE_NO_XSI_TYPE;
}
}