blob: 78ba85b41cc068955739c48096f5bd875b612c61 [file] [log] [blame]
/*
* Copyright (c) 2018, 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
*/
package org.eclipse.persistence.testing.jaxb.annotations.xmlreadonly;
import java.io.ByteArrayInputStream;
import java.util.HashMap;
import java.util.Map;
import javax.xml.transform.Source;
import javax.xml.transform.dom.DOMSource;
import org.eclipse.persistence.exceptions.JAXBException;
import org.eclipse.persistence.jaxb.JAXBContextFactory;
import org.eclipse.persistence.jaxb.JAXBContextProperties;
import org.eclipse.persistence.testing.jaxb.JAXBTestCases;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
import org.w3c.dom.Document;
public class XmlReadOnlyOverrideTestCases extends JAXBWithJSONTestCases {
private static final String XML_READ_RESOURCE = "org/eclipse/persistence/testing/jaxb/annotations/xmlreadonly/employee_read.xml";
private static final String JSON_READ_RESOURCE = "org/eclipse/persistence/testing/jaxb/annotations/xmlreadonly/employee_read.json";
public XmlReadOnlyOverrideTestCases(String name) throws Exception {
super(name);
setControlDocument(XML_READ_RESOURCE);
setControlJSON(JSON_READ_RESOURCE);
}
@Override
public void setUp() throws Exception {
super.setUp();
setTypes(new Class[] {Employee.class});
}
@Override
public Object getControlObject() {
Employee emp = new Employee();
emp.name = "Jane Doe";
emp.readOnlyField = "Read Only Data";
return emp;
}
@Override
protected Map getProperties() {
String bindings =
"<xml-bindings xmlns=\"http://www.eclipse.org/eclipselink/xsds/persistence/oxm\"> " +
"<java-types>" +
"<java-type name=\"org.eclipse.persistence.testing.jaxb.annotations.xmlreadonly.Employee\">" +
"<java-attributes>" +
"<xml-element java-attribute=\"readOnlyField\" read-only=\"false\"/>" +
"</java-attributes>" +
"</java-type>" +
"</java-types>" +
"</xml-bindings>";
DOMSource src = null;
try {
Document doc = parser.parse(new ByteArrayInputStream(bindings.getBytes()));
src = new DOMSource(doc.getDocumentElement());
} catch (Exception e) {
e.printStackTrace();
fail("An error occurred during setup");
}
HashMap<String, Source> overrides = new HashMap<String, Source>();
overrides.put("org.eclipse.persistence.testing.jaxb.annotations.xmlreadonly", src);
HashMap properties = new HashMap();
properties.put(JAXBContextProperties.OXM_METADATA_SOURCE, overrides);
return properties;
}
}