blob: 6ef72600d3a76b1fa9a1a8b164f6da246c95e742 [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, 2009
package org.eclipse.persistence.testing.jaxb.typemappinginfo;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import jakarta.activation.DataHandler;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.annotation.XmlList;
import javax.xml.namespace.QName;
import org.eclipse.persistence.jaxb.TypeMappingInfo;
import org.eclipse.persistence.jaxb.TypeMappingInfo.ElementScope;
import org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmlmimetype.MyAttachmentMarshaller;
import org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmlmimetype.MyAttachmentUnmarshaller;
public class DuplicateListOfStringsTestCases extends TypeMappingInfoWithJSONTestCases {
protected final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/duplicatelistofstrings.xml";
@XmlList
public List myList;
public List<String> myListOfStrings;
public DuplicateListOfStringsTestCases(String name) throws Exception {
super(name);
init();
}
public void init() throws Exception {
setControlDocument(XML_RESOURCE);
setupParser();
setTypeMappingInfos(getTypeMappingInfos());
jaxbUnmarshaller.setAttachmentUnmarshaller(new MyAttachmentUnmarshaller());
jaxbMarshaller.setAttachmentMarshaller(new MyAttachmentMarshaller());
DataHandler data = new DataHandler("THISISATEXTSTRINGFORTHISDATAHANDLER", "text");
MyAttachmentMarshaller.attachments.put(MyAttachmentUnmarshaller.ATTACHMENT_TEST_ID, data);
}
protected TypeMappingInfo[] getTypeMappingInfos()throws Exception {
if(typeMappingInfos == null){
typeMappingInfos = new TypeMappingInfo[4];
TypeMappingInfo tpi = new TypeMappingInfo();
tpi.setXmlTagName(new QName("someUri","testTagname"));
tpi.setElementScope(ElementScope.Global);
Annotation[] annotations = getClass().getField("myList").getAnnotations();
tpi.setAnnotations(annotations);
tpi.setType(List.class);
typeMappingInfos[0] = tpi;
TypeMappingInfo tpi2 = new TypeMappingInfo();
tpi2.setXmlTagName(new QName("someUri","testTagname2"));
tpi2.setElementScope(ElementScope.Global);
tpi2.setType(List.class);
typeMappingInfos[1] = tpi2;
TypeMappingInfo tpi3 = new TypeMappingInfo();
tpi3.setXmlTagName(new QName("someUri","testTagname3"));
tpi3.setElementScope(ElementScope.Global);
tpi3.setType(getClass().getField("myListOfStrings").getGenericType());
typeMappingInfos[2] = tpi3;
TypeMappingInfo tpi4 = new TypeMappingInfo();
tpi4.setXmlTagName(new QName("someUri","testTagname4"));
tpi4.setElementScope(ElementScope.Global);
tpi4.setType(List.class);
typeMappingInfos[3] = tpi4;
}
return typeMappingInfos;
}
@Override
protected Object getControlObject() {
QName qname = new QName("examplenamespace", "root");
List theList = new ArrayList();
theList.add("aaa");
theList.add("bbb");
JAXBElement jaxbElement = new JAXBElement(qname, List.class, theList);
return jaxbElement;
}
@Override
public Map<String, InputStream> getControlSchemaFiles(){
Map<String, InputStream> controlSchema = new HashMap<String, InputStream>();
InputStream instream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/typemappinginfo/duplicatelistofstrings1.xsd");
controlSchema.put("", instream);
InputStream instream2 = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/typemappinginfo/duplicatelistofstrings2.xsd");
controlSchema.put("someUri", instream2);
return controlSchema;
}
//Not supported in JSON as there are xsi:type attributes written
@Override
public void testObjectToResultWithTypeMappingInfoJSON() throws Exception {}
@Override
public void testXMLToObjectFromSourceWithTypeMappingInfoJSON() throws Exception {}
@Override
public TypeMappingInfo getTypeMappingInfo() {
return typeMappingInfos[1];
}
}