blob: 7f11e35eb79ea1f8d10586f2ecd6f5c0f1c65742 [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:
// Oracle - December 2011
package org.eclipse.persistence.testing.jaxb.inheritance.ns;
import java.io.StringReader;
import java.io.StringWriter;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.persistence.jaxb.JAXBMarshaller;
import org.eclipse.persistence.jaxb.JAXBUnmarshaller;
import org.eclipse.persistence.jaxb.MarshallerProperties;
import org.eclipse.persistence.jaxb.UnmarshallerProperties;
import org.eclipse.persistence.oxm.XMLConstants;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
public class JAXBInheritanceNSTestCases extends JAXBWithJSONTestCases {
public JAXBInheritanceNSTestCases(String name) throws Exception {
super(name);
setClasses(new Class[] {Root.class, SubType.class});
setControlDocument("org/eclipse/persistence/testing/jaxb/inheritance/ns/inheritanceNS.xml");
setControlJSON("org/eclipse/persistence/testing/jaxb/inheritance/ns/inheritanceNS.json");
Map<String, String> namespaces= new HashMap<String, String>();
namespaces.put("rootNamespace","ns0");
namespaces.put("someNamespace","ns1");
namespaces.put(javax.xml.XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI,"xsi");
jaxbUnmarshaller.setProperty(UnmarshallerProperties.JSON_NAMESPACE_PREFIX_MAPPER, namespaces);
}
@Override
public JAXBMarshaller getJSONMarshaller() throws Exception{
Map<String, String> namespaces= new HashMap<String, String>();
namespaces.put("rootNamespace","ns0");
namespaces.put("someNamespace","ns1");
namespaces.put(javax.xml.XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI,"xsi");
JAXBMarshaller jsonMarshaller = (JAXBMarshaller) jaxbContext.createMarshaller();
jsonMarshaller.setProperty(MarshallerProperties.NAMESPACE_PREFIX_MAPPER, namespaces);
jsonMarshaller.setProperty(MarshallerProperties.MEDIA_TYPE, "application/json");
return jsonMarshaller;
}
@Override
public Object getControlObject() {
Root root = new Root();
SubType subType = new SubType();
root.baseTypeThing = subType;
return root;
}
public void testJSONNoNamespacesSet() throws Exception {
String controlFile = "org/eclipse/persistence/testing/jaxb/inheritance/ns/inheritanceNSNoNamespaces.json";
JAXBMarshaller m = (JAXBMarshaller) jaxbContext.createMarshaller();
JAXBUnmarshaller u = (JAXBUnmarshaller) jaxbContext.createUnmarshaller();
m.setProperty(MarshallerProperties.MEDIA_TYPE, "application/json");
u.setProperty(UnmarshallerProperties.MEDIA_TYPE, "application/json");
StringWriter sw = new StringWriter();
m.marshal(getWriteControlObject(), sw);
String controlString = loadFileToString(controlFile);
compareStrings("**testJSONMarshalToStringWriter-NoNamespacesSet**", sw.toString(), controlString, shouldRemoveEmptyTextNodesFromControlDoc());
StringReader sr = new StringReader(sw.toString());
Object o = u.unmarshal(sr);
assertEquals(getReadControlObject(), o);
}
}