blob: 6b8bb8165963c05f073ed34445cc8b8431b64cb6 [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:
// Denise Smith - December 16, 2009
package org.eclipse.persistence.testing.jaxb.typemappinginfo;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import javax.xml.transform.Source;
import javax.xml.transform.dom.DOMSource;
import org.eclipse.persistence.jaxb.JAXBContextFactory;
import org.w3c.dom.Document;
import org.xml.sax.SAXException;
public class MultipleMapWithBindingsTestCases extends MultipleMapTestCases{
public MultipleMapWithBindingsTestCases(String name) throws Exception {
super(name);
}
@Override
protected Map getProperties() {
String pkg = "";
HashMap<String, Source> overrides = new HashMap<String, Source>();
overrides.put(pkg, getXmlSchemaOxm(pkg));
Map<String, Object> properties = new HashMap<String, Object>();
properties.put(JAXBContextFactory.ECLIPSELINK_OXM_XML_KEY, overrides);
return properties;
}
private Source getXmlSchemaOxm(String defaultTns) {
String oxm =
"<xml-bindings xmlns='http://www.eclipse.org/eclipselink/xsds/persistence/oxm'>" +
"<xml-schema namespace='" + defaultTns + "'/>" +
"<java-types></java-types>" +
"</xml-bindings>";
Document doc;
try {
doc = parser.parse(new ByteArrayInputStream(oxm.getBytes()));
DOMSource ds = new DOMSource(doc.getDocumentElement());
return ds;
} catch (Exception e) {
e.printStackTrace();
fail("An error occurred duing getProperties");
}
return null;
}
}