blob: 66640ad33d62209c274cba352be226af99c63254 [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 February, 2013
package org.eclipse.persistence.testing.jaxb.map;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.transform.Source;
import javax.xml.transform.stream.StreamSource;
import org.eclipse.persistence.jaxb.JAXBContextFactory;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
public class MapElementWrapperExternalTestCases extends JAXBWithJSONTestCases{
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/map/map.xml";
private final static String XSD_RESOURCE = "org/eclipse/persistence/testing/jaxb/map/map.xsd";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/map/map.json";
public MapElementWrapperExternalTestCases(String name) throws Exception {
super(name);
setClasses(new Class[]{RootNoAnnotations.class});
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
}
@Override
public Map getProperties(){
InputStream inputStream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/jaxb/map/eclipselink-oxm.xml");
HashMap<String, Source> metadataSourceMap = new HashMap<String, Source>();
metadataSourceMap.put("org.eclipse.persistence.testing.jaxb.map", new StreamSource(inputStream));
Map<String, Object> properties = new HashMap<String, Object>();
properties.put(JAXBContextFactory.ECLIPSELINK_OXM_XML_KEY, metadataSourceMap);
return properties;
}
@Override
protected Object getControlObject() {
RootNoAnnotations root = new RootNoAnnotations();
root.stringStringMap = new HashMap<String, String>();
root.stringStringMap.put("key1", "value1");
root.integerComplexValueMap = new HashMap<Integer, ComplexValue>();
root.integerComplexValueMap.put(10, new ComplexValue("aaa","bbb"));
root.stringArrayMap = new HashMap<String, String[]>();
root.stringArrayMap.put("abc", new String[] {"aaa","bbb"});
root.stringListMap = new HashMap<String, List<String>>();
List<String> list = new ArrayList<String>();
list.add("aaaa");
list.add("bbbb");
root.stringListMap.put("abcd", list);
return root;
}
public void testSchemaGen() throws Exception{
List<InputStream> controlSchemas = new ArrayList<InputStream>();
controlSchemas.add(getClass().getClassLoader().getResourceAsStream(XSD_RESOURCE));
super.testSchemaGen(controlSchemas);
}
}