blob: 8867b94f9ea9a4b3248c8cb7494d3d2303fc6f86 [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:
// Blaise Doughan - 2.3.1 - initial implementation
package org.eclipse.persistence.testing.oxm.inheritance.ns;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.persistence.exceptions.IntegrityException;
import org.eclipse.persistence.oxm.NamespaceResolver;
import org.eclipse.persistence.oxm.XMLConstants;
import org.eclipse.persistence.oxm.XMLContext;
import org.eclipse.persistence.testing.oxm.mappings.XMLWithJSONMappingTestCases;
public class NSTestCases extends XMLWithJSONMappingTestCases {
public NSTestCases(String name) throws Exception {
super(name);
setProject(new NSProject("child"));
setControlDocument("org/eclipse/persistence/testing/oxm/inheritance/ns.xml");
setControlJSON("org/eclipse/persistence/testing/oxm/inheritance/ns.json");
}
@Override
protected boolean getNamespaceAware(){
return true;
}
@Override
protected Map<String, String> getNamespaces(){
Map<String, String> namespaces = new HashMap<String, String>();
namespaces.put("urn:parent", "parent");
namespaces.put("urn:child", "child");
namespaces.put(javax.xml.XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI, "xsi");
return namespaces;
}
@Override
protected NSChild getControlObject() {
NSChild child = new NSChild();
child.setParentProp("parentValue");
child.setChildProp("childValue");
return child;
}
public void testNamespaceConflict() {
try {
new XMLContext(new NSProject("parent"));
} catch(IntegrityException e) {
return;
}
fail();
}
}