blob: 002ba788ebe3393d7d8d1a9f820125a258629977 [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 - July 9, 2009 Initial test
package org.eclipse.persistence.testing.jaxb.singleobject;
import java.io.InputStream;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import jakarta.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import javax.xml.stream.XMLEventReader;
import javax.xml.stream.XMLStreamReader;
import javax.xml.transform.sax.SAXSource;
import javax.xml.transform.stream.StreamSource;
import org.eclipse.persistence.internal.oxm.record.XMLStreamReaderInputSource;
import org.eclipse.persistence.jaxb.JAXBContextProperties;
import org.eclipse.persistence.jaxb.UnmarshallerProperties;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
import org.w3c.dom.Document;
import org.xml.sax.InputSource;
public class JAXBSingleObjectStringNoXsiTestCases extends JAXBWithJSONTestCases {
protected final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/singleobject/singleObject.xml";
protected final static String XML_RESOURCE_WRITE = "org/eclipse/persistence/testing/jaxb/singleobject/singleObjectWrite.xml";
protected final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/singleobject/singleObjectString.json";
public JAXBSingleObjectStringNoXsiTestCases(String name) throws Exception {
super(name);
init();
}
public void init() throws Exception {
setControlDocument(XML_RESOURCE);
setControlDocument(XML_RESOURCE_WRITE);
setControlJSON(JSON_RESOURCE);
Class[] classes = new Class[1];
classes[0] = Object.class;
setClasses(classes);
}
public void testSchemaGen() throws Exception {
MySchemaOutputResolver outputResolver = new MySchemaOutputResolver();
getJAXBContext().generateSchema(outputResolver);
assertEquals("A Schema was generated but should not have been", 0, outputResolver.getSchemaFiles().size());
}
public List<InputStream> getControlSchemaFiles() {
//not applicable for this test since we override testSchemaGen
return null;
}
@Override
public Object getWriteControlObject() {
return getControlObject();
}
@Override
protected Object getControlObject() {
String testString = "25";
QName qname = new QName("rootNamespace", "root");
JAXBElement jaxbElement = new JAXBElement(qname, String.class, testString);
return jaxbElement;
}
@Override
public Map getProperties(){
Map props = new HashMap();
Map namespaces = new HashMap();
namespaces.put("rootNamespace", "ns1");
props.put(JAXBContextProperties.NAMESPACE_PREFIX_MAPPER, namespaces);
props.put(JAXBContextProperties.JSON_INCLUDE_ROOT, true);
return props;
}
protected String getNoXsiTypeControlResourceName() {
return XML_RESOURCE;
}
@Override
public void testUnmarshallerHandler() throws Exception {
}
@Override
public void testRoundTrip() throws Exception{
if(isUnmarshalTest()) {
InputStream instream = null;
if(writeControlDocumentLocation !=null){
instream = ClassLoader.getSystemResourceAsStream(writeControlDocumentLocation);
}else{
instream = ClassLoader.getSystemResourceAsStream(resourceName);
}
Object testObject = jaxbUnmarshaller.unmarshal(new StreamSource(instream), String.class);
instream.close();
xmlToObjectTest(testObject);
objectToXMLStringWriter(testObject);
}
}
@Override
public Class getUnmarshalClass() {
return String.class;
}
}