/******************************************************************************* * Copyright (c) 1998, 2015 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 v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * 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 javax.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; } public Object getWriteControlObject() { return getControlObject(); } protected Object getControlObject() { String testString = "25"; QName qname = new QName("rootNamespace", "root"); JAXBElement jaxbElement = new JAXBElement(qname, String.class, testString); return jaxbElement; } 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; } public void testUnmarshallerHandler() throws Exception { } 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; } }