blob: 89b55b8773e12fae28e78eebff91669cd677ca93 [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 November 16, 2009 - Initial implementation
package org.eclipse.persistence.testing.jaxb.listofobjects;
import java.io.InputStream;
import java.lang.reflect.Field;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import jakarta.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
public class JAXBIntegerMyListTestCases extends JAXBIntegerArrayTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/listofobjects/integerMyList.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/listofobjects/integerMyList.json";
private final static String XML_RESOURCE_NO_XSI_TYPE = "org/eclipse/persistence/testing/jaxb/listofobjects/integerMyListNoXsiType.xml";
public MyList<Integer> integerMyList;
public JAXBIntegerMyListTestCases(String name) throws Exception {
super(name);
}
@Override
public void init() throws Exception {
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
Type[] types = new Type[1];
types[0] = getTypeToUnmarshalTo();
setTypes(types);
initXsiType();
}
@Override
protected Map<String, String> getAdditationalNamespaces() {
Map<String, String> namespaces = new HashMap<>();
namespaces.put("examplenamespace", "ns0");
return namespaces;
}
@Override
protected Type getTypeToUnmarshalTo() throws Exception {
Field fld = getClass().getField("integerMyList");
return fld.getGenericType();
}
@Override
protected Object getControlObject() {
MyList<Integer> integers = new MyList<Integer>();
integers.add(Integer.valueOf("10"));
integers.add(Integer.valueOf("20"));
integers.add(Integer.valueOf("30"));
integers.add(Integer.valueOf("40"));
QName qname = new QName("examplenamespace", "root");
JAXBElement jaxbElement = new JAXBElement(qname, Object.class, null);
jaxbElement.setValue(integers);
return jaxbElement;
}
@Override
public List<InputStream> getControlSchemaFiles(){
InputStream instream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/listofobjects/integerMyList.xsd");
List<InputStream> controlSchema = new ArrayList<InputStream>();
controlSchema.add(instream);
return controlSchema;
}
@Override
protected String getNoXsiTypeControlResourceName() {
return XML_RESOURCE_NO_XSI_TYPE;
}
}