blob: 5c6303235d51dc971e8287ff358c04ace110609a [file] [log] [blame]
/*
* Copyright (c) 2011, 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:
// - rbarkhouse - 17 November 2011 - 2.3.2 - Initial implementation
package org.eclipse.persistence.testing.jaxb.xmlelementref.ns;
import java.util.HashMap;
import java.util.Map;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import org.eclipse.persistence.jaxb.MarshallerProperties;
import org.eclipse.persistence.jaxb.UnmarshallerProperties;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
public class XmlElementRefWithNamespaceTests extends JAXBWithJSONTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlelementref/ns/echobytearray.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlelementref/ns/echobytearray.json";
private Marshaller jsonMarshaller;
private Unmarshaller jsonUnmarshaller;
public XmlElementRefWithNamespaceTests(String name) throws Exception {
super(name);
setClasses(new Class[]{ EchoByteArray.class, ObjectFactory.class });
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
jsonMarshaller = jaxbContext.createMarshaller();
jsonUnmarshaller = jaxbContext.createUnmarshaller();
Map<String, String> namespaces = new HashMap<String, String>();
namespaces.put("http://root.org/", "ns1");
namespaces.put("http://missing-uri.org/", "ns0");
jsonMarshaller.setProperty(MarshallerProperties.NAMESPACE_PREFIX_MAPPER, namespaces);
jsonUnmarshaller.setProperty(UnmarshallerProperties.JSON_NAMESPACE_PREFIX_MAPPER, namespaces);
}
@Override
protected Marshaller getJSONMarshaller() throws Exception{
return jsonMarshaller;
}
@Override
protected Unmarshaller getJSONUnmarshaller() throws Exception{
return jsonUnmarshaller;
}
@Override
protected Object getControlObject() {
ObjectFactory factory = new ObjectFactory();
EchoByteArray e = factory.createEchoByteArray();
e.setRequest(factory.createEchoByteArrayRequest(new byte[] { 0, 1, 2, 4, 8 }));
return e;
}
}