blob: 8b0a6158c4233a9bf0c5633684f622ea0ed9fea3 [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 - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.oxm.xmlroot.complex.inheritance;
import java.io.InputStream;
import java.io.StringReader;
import java.io.StringWriter;
import junit.textui.TestRunner;
import org.eclipse.persistence.oxm.XMLDescriptor;
import org.eclipse.persistence.oxm.XMLRoot;
import org.eclipse.persistence.sessions.Project;
import org.eclipse.persistence.testing.oxm.mappings.XMLMappingTestCases;
import org.eclipse.persistence.testing.oxm.xmlroot.Person;
import org.w3c.dom.Document;
import org.xml.sax.InputSource;
public class NonNullDefaultRootMatchingPersonXMLRootTestCases extends XMLMappingTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/oxm/xmlroot/complex/inheritance/personNonNullRootMatchingXMLRoot.xml";
/**
<?xml version="1.0" encoding="UTF-8"?>
<oxm:pRoot xsi:type="oxm:person" xmlns:oxm="test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<name>Joe Smith</name>
</oxm:pRoot>
*/
protected final static String CONTROL_PERSON_NAME = "Joe Smith";
protected final static int CONTROL_ID = 15;
protected final static String CONTROL_NAMESPACE_URI = "test";
public NonNullDefaultRootMatchingPersonXMLRootTestCases(String name) throws Exception {
super(name);
setControlDocument(getXMLResource());
setProject(getTopLinkProject());
}
public Project getTopLinkProject() {
Project p = new XMLRootComplexInheritanceProject();
((XMLDescriptor)p.getDescriptor(Person.class)).setDefaultRootElement("oxm:pRoot");
((XMLDescriptor)p.getDescriptor(Employee.class)).setDefaultRootElement("oxm:pRoot");
return p;
}
public String getXMLResource() {
return XML_RESOURCE;
}
@Override
protected Object getControlObject() {
Person p = new Person();
p.setName(CONTROL_PERSON_NAME);
return p;
}
@Override
public Object getWriteControlObject() {
Person p = new Person();
p.setName(CONTROL_PERSON_NAME);
XMLRoot xmlRoot = new XMLRoot();
xmlRoot.setObject(p);
xmlRoot.setNamespaceURI(CONTROL_NAMESPACE_URI);
xmlRoot.setLocalName("oxm:pRoot");
return xmlRoot;
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.oxm.xmlroot.complex.inheritance.NonNullDefaultRootMatchingPersonXMLRootTestCases" };
TestRunner.main(arguments);
}
}