blob: f7f798219b35a2448ba8a69b473024d2a45c4d15 [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:
// dmccann - October 7/2009 - 2.0 - Initial implementation
package org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmlvalue;
import java.io.InputStream;
import java.util.HashMap;
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.jaxb.JAXBContextProperties;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
import org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmlvalue.adapter.MyValueClass;
/**
* Tests XmlValue via eclipselink-oxm.xml
*
*/
public class XmlValueTestCases extends JAXBWithJSONTestCases {
private static final String CONTEXT_PATH = "org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmlvalue";
private static final String PATH = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmlvalue/";
private static final String ADAPTER_PATH = "org/eclipse/persistence/testing/jaxb/externalizedmetadata/xmlvalue/adapter/";
private static final String ADAPTER_OXM_DOC = ADAPTER_PATH + "oxm.xml";
private static final String XML_RESOURCE = ADAPTER_PATH + "boolean.xml";
private static final String JSON_RESOURCE = ADAPTER_PATH + "boolean.json";
/**
* This is the preferred (and only) constructor.
*
*/
public XmlValueTestCases(String name) throws Exception{
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
setClasses(new Class[] { MyValueClass.class });
}
@Override
public Map<String, Object> getProperties(){
InputStream inputStream = ClassLoader.getSystemResourceAsStream(ADAPTER_OXM_DOC);
HashMap<String, Source> metadataSourceMap = new HashMap<>();
metadataSourceMap.put("org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmlvalue.adapter", new StreamSource(inputStream));
Map<String, Object> properties = new HashMap<>();
properties.put(JAXBContextProperties.OXM_METADATA_SOURCE, metadataSourceMap);
return properties;
}
@Override
public Object getControlObject() {
MyValueClass mvc = new MyValueClass();
mvc.blah = Boolean.valueOf("true");
return mvc;
}
/**
* Tests @XmlValue via eclipselink-oxm.xml.
*
* An exception should occur since more than one field is set as XmlValue.
*
* Negative test.
*/
public void testTwoXmlValues() {
String metadataFile = PATH + "eclipselink-oxm-intprice-invalid.xml";
InputStream iStream = getClass().getClassLoader().getResourceAsStream(metadataFile);
if (iStream == null) {
fail("Couldn't load metadata file [" + metadataFile + "]");
}
HashMap<String, Source> metadataSourceMap = new HashMap<>();
metadataSourceMap.put(CONTEXT_PATH, new StreamSource(iStream));
Map<String, Object> properties = new HashMap<>();
properties.put(JAXBContextProperties.OXM_METADATA_SOURCE, metadataSourceMap);
boolean exceptionOccurred = false;
try {
JAXBContextFactory.createContext(new Class[] { InternationalPriceNoAnnotation.class }, properties, getClass().getClassLoader());
} catch (Exception x) {
exceptionOccurred = true;
}
assertTrue("The expected exception was not thrown", exceptionOccurred);
}
/**
* Tests @XmlValue via eclipselink-oxm.xml.
*
* An exception should occur since only XmlAttributes are allowed when
* there is an XmlValue.
*
* Negative test.
*/
public void testXmlValueWithElement() {
String metadataFile = PATH + "eclipselink-oxm-intprice-invalid-2.xml";
InputStream iStream = getClass().getClassLoader().getResourceAsStream(metadataFile);
if (iStream == null) {
fail("Couldn't load metadata file [" + metadataFile + "]");
}
HashMap<String, Source> metadataSourceMap = new HashMap<>();
metadataSourceMap.put(CONTEXT_PATH, new StreamSource(iStream));
Map<String, Object> properties = new HashMap<>();
properties.put(JAXBContextProperties.OXM_METADATA_SOURCE, metadataSourceMap);
boolean exceptionOccurred = false;
try {
JAXBContextFactory.createContext(new Class[] { InternationalPriceNoAnnotation.class }, properties, getClass().getClassLoader());
} catch (Exception x) {
exceptionOccurred = true;
}
assertTrue("The expected exception was not thrown", exceptionOccurred);
}
}