blob: 3932f09c6cdd6e4ebd75325b51e6039628a5736f [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.3 - initial implementation
package org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmlnametransformer;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.eclipse.persistence.jaxb.JAXBContextFactory;
import org.eclipse.persistence.jaxb.JAXBContextProperties;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
public class XmlMappingSpecifiedNameTestCases extends JAXBWithJSONTestCases {
private static final String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmlnametransformer/XmlMappingSpecifiedName.xml";
private static final String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmlnametransformer/XmlMappingSpecifiedName.json";
private static final String OXM_RESOURCE = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmlnametransformer/XmlMappingSpecifiedName.oxm";
private static final String XSD_RESOURCE = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmlnametransformer/XmlMappingSpecifiedName.xsd";
public XmlMappingSpecifiedNameTestCases(String name) throws Exception {
super(name);
setClasses(new Class[] {XmlMappingSpecifiedNameRoot.class});
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
}
@Override
protected XmlMappingSpecifiedNameRoot getControlObject() {
XmlMappingSpecifiedNameRoot root = new XmlMappingSpecifiedNameRoot();
root.setAttribute("ATTRIBUTE");
root.setElement("ELEMENT");
return root;
}
@Override
protected Map getProperties() {
Map<String, Object> properties = new HashMap<String, Object>(1);
properties.put(JAXBContextProperties.OXM_METADATA_SOURCE, OXM_RESOURCE);
return properties;
}
public void testSchemaGen() throws Exception {
List<InputStream> controlSchemas = new ArrayList<InputStream>(1);
InputStream is = ClassLoader.getSystemResourceAsStream(XSD_RESOURCE);
controlSchemas.add(is);
super.testSchemaGen(controlSchemas);
}
}