blob: c425a8153df5ae375a36a409c596aecd142e8115 [file] [log] [blame]
/*
* Copyright (c) 2018, 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
*/
package org.eclipse.persistence.testing.jaxb.xmlAnyMixed;
import junit.framework.TestCase;
import org.eclipse.persistence.jaxb.JAXBContextFactory;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import java.io.File;
import java.io.StringWriter;
public class XmlAnyMixedTestCases extends TestCase {
private static final String EXPECTED = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><main><RootAnyMixed>\n" +
" <SomeTag>\n" +
" <AChildTag>\n" +
" <AnotherChildTag/>\n" +
" <AnotherChildTag/>\n" +
" </AChildTag>\n" +
" </SomeTag>\n" +
" </RootAnyMixed><RootAny><VeryGood><TheBest><MegaSuper/><MegaSuper/>\n" +
" </TheBest>\n" +
" </VeryGood></RootAny></main>";
public static void main(String[] args) {
String[] arguments = {"-c", "org.eclipse.persistence.testing.jaxb.xmlAnyMixed.XmlAnyMixedTestCases"};
junit.textui.TestRunner.main(arguments);
}
public void testRoundTrip() {
try {
JAXBContext jc = JAXBContextFactory.createContext(new Class<?>[]{Main.class}, null);
Unmarshaller um = jc.createUnmarshaller();
Object o = um.unmarshal(Thread.currentThread().getContextClassLoader().getResource("org/eclipse/persistence/testing/jaxb/xmlAnyMixed/rootAnyMixed.xml"));
Marshaller m = jc.createMarshaller();
StringWriter sw = new StringWriter();
m.marshal(o, sw);
assertEquals(EXPECTED, sw.toString());
} catch (JAXBException e) {
e.printStackTrace();
fail(e.getMessage());
}
}
}