|
| 1 | +/* |
| 2 | + * Copyright (c) 2022 Oracle and/or its affiliates. All rights reserved. |
| 3 | + * |
| 4 | + * This program and the accompanying materials are made available under the |
| 5 | + * terms of the Eclipse Public License v. 2.0 which is available at |
| 6 | + * http://www.eclipse.org/legal/epl-2.0, |
| 7 | + * or the Eclipse Distribution License v. 1.0 which is available at |
| 8 | + * http://www.eclipse.org/org/documents/edl-v10.php. |
| 9 | + * |
| 10 | + * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause |
| 11 | + */ |
| 12 | + |
| 13 | +// Contributors: |
| 14 | +// Oracle - Sep 2022 - - initial implementation |
| 15 | +package org.eclipse.persistence.testing.jaxb.xmlvariablenode; |
| 16 | + |
| 17 | +import jakarta.xml.bind.Marshaller; |
| 18 | +import jakarta.xml.bind.Unmarshaller; |
| 19 | +import org.eclipse.persistence.jaxb.JAXBContextProperties; |
| 20 | +import org.eclipse.persistence.jaxb.MarshallerProperties; |
| 21 | +import org.eclipse.persistence.jaxb.UnmarshallerProperties; |
| 22 | +import org.eclipse.persistence.oxm.MediaType; |
| 23 | +import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases; |
| 24 | +import org.w3c.dom.Document; |
| 25 | + |
| 26 | +import javax.xml.namespace.QName; |
| 27 | +import javax.xml.transform.dom.DOMSource; |
| 28 | +import java.io.ByteArrayInputStream; |
| 29 | +import java.util.HashMap; |
| 30 | +import java.util.Map; |
| 31 | + |
| 32 | +/** |
| 33 | + * Test for: Specifying QName in XmlVariableNode results namespace written twice |
| 34 | + * |
| 35 | + * https://github.com/eclipse-ee4j/eclipselink/issues/1709 |
| 36 | + */ |
| 37 | +public class XmlVariableNodeQNameNS2TestCases extends JAXBWithJSONTestCases { |
| 38 | + protected final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlvariablenode/rootqname2NS.xml"; |
| 39 | + protected final static String XML_WRITE_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlvariablenode/rootqname2NSWrite.xml"; |
| 40 | + protected final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlvariablenode/rootqname2NS.json"; |
| 41 | + |
| 42 | + private Marshaller marshaller = null; |
| 43 | + private Unmarshaller unmarshaller = null; |
| 44 | + |
| 45 | + |
| 46 | + public XmlVariableNodeQNameNS2TestCases(String name) throws Exception { |
| 47 | + super(name); |
| 48 | + setControlDocument(XML_RESOURCE); |
| 49 | + setControlJSON(JSON_RESOURCE); |
| 50 | + setWriteControlDocument(XML_WRITE_RESOURCE); |
| 51 | + setClasses(new Class<?>[]{Data.class, DataChild.class}); |
| 52 | + |
| 53 | + } |
| 54 | + |
| 55 | + @Override |
| 56 | + protected Marshaller getJSONMarshaller() throws Exception{ |
| 57 | + if (marshaller == null) { |
| 58 | + Map<String, String> namespaces = new HashMap<>(); |
| 59 | + namespaces.put("uri1:", "xxx"); |
| 60 | + marshaller = jaxbContext.createMarshaller(); |
| 61 | + marshaller.setProperty(MarshallerProperties.MEDIA_TYPE, MediaType.APPLICATION_JSON); |
| 62 | + marshaller.setProperty(MarshallerProperties.NAMESPACE_PREFIX_MAPPER, namespaces); |
| 63 | + } |
| 64 | + return marshaller; |
| 65 | + } |
| 66 | + |
| 67 | + @Override |
| 68 | + protected Unmarshaller getJSONUnmarshaller() throws Exception{ |
| 69 | + if (unmarshaller == null) { |
| 70 | + Map<String, String> namespaces = new HashMap<>(); |
| 71 | + namespaces.put("uri1:", "xxx"); |
| 72 | + unmarshaller = jaxbContext.createUnmarshaller(); |
| 73 | + unmarshaller.setProperty(UnmarshallerProperties.MEDIA_TYPE, MediaType.APPLICATION_JSON); |
| 74 | + unmarshaller.setProperty(UnmarshallerProperties.JSON_NAMESPACE_PREFIX_MAPPER, namespaces); |
| 75 | + } |
| 76 | + return unmarshaller; |
| 77 | + } |
| 78 | + |
| 79 | + @Override |
| 80 | + protected Map getProperties() { |
| 81 | + Map overrides = new HashMap(); |
| 82 | + String overridesString = |
| 83 | + "<?xml version='1.0' encoding='UTF-8'?>" + |
| 84 | + "<xml-bindings xmlns='http://www.eclipse.org/eclipselink/xsds/persistence/oxm'>" + |
| 85 | + "<xml-schema>" + |
| 86 | + "<xml-ns namespace-uri='uri1:' prefix='xxx'/>" + |
| 87 | + "</xml-schema>" + |
| 88 | + "<java-types/>" + |
| 89 | + "</xml-bindings>"; |
| 90 | + |
| 91 | + DOMSource src = null; |
| 92 | + try { |
| 93 | + Document doc = parser.parse(new ByteArrayInputStream(overridesString.getBytes())); |
| 94 | + src = new DOMSource(doc.getDocumentElement()); |
| 95 | + } catch (Exception e) { |
| 96 | + e.printStackTrace(); |
| 97 | + fail("An error occurred during setup"); |
| 98 | + } |
| 99 | + |
| 100 | + overrides.put("org.eclipse.persistence.testing.jaxb.xmlvariablenode", src); |
| 101 | + |
| 102 | + Map props = new HashMap(); |
| 103 | + props.put(JAXBContextProperties.OXM_METADATA_SOURCE, overrides); |
| 104 | + return props; |
| 105 | + } |
| 106 | + |
| 107 | + @Override |
| 108 | + protected Object getControlObject() { |
| 109 | + Data data = new Data(); |
| 110 | + DataChild dataChild = new DataChild(new QName("uri1:", "childdata")); |
| 111 | + data.setChild(dataChild); |
| 112 | + |
| 113 | + return data; |
| 114 | + } |
| 115 | +} |
0 commit comments