blob: 732f1f2a21e53af6d99397f8e3264b78d85fcc7b [file] [log] [blame]
/*
* Copyright (c) 2012, 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.xmltype.proporder;
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 OverrideAllTestCases extends JAXBWithJSONTestCases {
private static final String OXM_RESOURCE = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmltype/proporder/overrideAll-oxm.xml";
private static final String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmltype/proporder/sequence.xml";
private static final String XSD_RESOURCE = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmltype/proporder/sequence.xsd";
private static final String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmltype/proporder/sequence.json";
public OverrideAllTestCases(String name) throws Exception {
super(name);
setClasses(new Class[] {OverrideAllRoot.class});
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
}
@Override
protected Map getProperties() {
Map<String, Object> properties = new HashMap<String, Object>(1);
properties.put(JAXBContextProperties.OXM_METADATA_SOURCE, OXM_RESOURCE);
return properties;
}
@Override
protected OverrideAllRoot getControlObject() {
OverrideAllRoot root = new OverrideAllRoot();
root.a = "A";
root.b = "B";
root.c = "C";
return root;
}
public void testSchemaGen() throws Exception{
List controlSchemas = new ArrayList(1);
InputStream is = ClassLoader.getSystemResourceAsStream(XSD_RESOURCE);
controlSchemas.add(is);
super.testSchemaGen(controlSchemas);
}
}