blob: 2a6af37b0613f4a7010a95e152340dac141dfce2 [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:
// Matt MacIvor - 2.4.1
package org.eclipse.persistence.testing.jaxb.prefixmapper;
import java.io.StringWriter;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.Marshaller;
import org.eclipse.persistence.jaxb.JAXBContextFactory;
import org.eclipse.persistence.jaxb.MarshallerProperties;
import org.eclipse.persistence.oxm.XMLConstants;
import junit.framework.TestCase;
public class PrefixMapperContextTestCases extends TestCase {
private static final String CONTROL_XML = "<newPrefix:employeeContext xmlns:ns0=\"extraUri\" xmlns:newPrefix=\"someuri\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:somePrefix=\"my.uri\">" +
"<firstName>Jon</firstName><lastName>Doe</lastName><acmeNS:employeeId>123</acmeNS:employeeId>" +
"</newPrefix:employeeContext>";
public PrefixMapperContextTestCases(String name) {
super(name);
}
@Override
public String getName() {
return "JAXB set/getProperty Tests: " + super.getName();
}
public void testMarshalWithContextualNamespaces() throws Exception {
JAXBContext ctx = JAXBContextFactory.createContext(new Class[]{EmployeeContext.class}, null);
Marshaller m = ctx.createMarshaller();
m.setProperty(MarshallerProperties.NAMESPACE_PREFIX_MAPPER, new ContextPrefixMapper());
m.setProperty(XMLConstants.JAXB_FRAGMENT, Boolean.valueOf(true));
EmployeeContext emp = new EmployeeContext();
emp.firstName = "Jon";
emp.lastName = "Doe";
emp.employeeId = 123;
StringWriter writer = new StringWriter();
m.marshal(emp, writer);
assertTrue("Expected: " + CONTROL_XML + " But was: " + writer.toString(), writer.toString().equals(CONTROL_XML));
}
}