blob: aff7abd9ec663f6093a5b7da2c9a43ad48f96fbc [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:
// Oracle = 2.2 - Initial implementation
package org.eclipse.persistence.testing.jaxb.xmlelementref.attachment;
import java.io.InputStream;
import java.util.ArrayList;
import jakarta.activation.DataHandler;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;
import jakarta.xml.bind.attachment.AttachmentMarshaller;
import jakarta.xml.bind.attachment.AttachmentUnmarshaller;
import javax.xml.namespace.QName;
import javax.xml.transform.stream.StreamSource;
import org.eclipse.persistence.testing.jaxb.JAXBTestCases;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
public class XMLElementRefAttachmentNullTestCases extends JAXBWithJSONTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlelementref/attachment/employeeNullAttachment.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlelementref/attachment/employeeNullAttachment.json";
public XMLElementRefAttachmentNullTestCases(String name) throws Exception {
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
Class[] classes = new Class[2];
classes[0] = ObjectFactory.class;
classes[1] = Employee.class;
setClasses(classes);
}
@Override
public void setUp() throws Exception{
super.setUp();
jaxbMarshaller.setAttachmentMarshaller(new AttachmentMarshaller() {
@Override
public String addSwaRefAttachment(DataHandler arg0) {
return "cid1234567";
}
@Override
public String addMtomAttachment(byte[] arg0, int arg1, int arg2, String arg3, String arg4, String arg5) {
return "cid1234567";
}
@Override
public String addMtomAttachment(DataHandler arg0, String arg1, String arg2) {
return "cid1234567";
}
@Override
public boolean isXOPPackage() {
return true;
}
});
jaxbUnmarshaller.setAttachmentUnmarshaller(new AttachmentUnmarshaller() {
@Override
public DataHandler getAttachmentAsDataHandler(String arg0) {
return null;
}
@Override
public byte[] getAttachmentAsByteArray(String arg0) {
// TODO Auto-generated method stub
return new byte[] {1, 2, 3, 4, 5};
}
@Override
public boolean isXOPPackage() {
return true;
}
});
}
@Override
protected Object getControlObject() {
ObjectFactory factory = new ObjectFactory();
Employee employee = new Employee();
employee.ref1 = new JAXBElement(new QName("fooA"), Byte[].class, null);
employee.ref2 = new ArrayList<JAXBElement>();
employee.ref2.add(new JAXBElement(new QName("fooC"), String.class, null));
employee.ref2.add(new JAXBElement(new QName("fooB"), Byte[].class, null));
employee.ref2.add(new JAXBElement(new QName("fooB"), Byte[].class, null));
employee.ref2.add(new JAXBElement(new QName("fooC"), String.class, null));
return employee;
}
@Override
protected Object getJSONReadControlObject() {
ObjectFactory factory = new ObjectFactory();
Employee employee = new Employee();
employee.ref1 = new JAXBElement(new QName("fooA"), Byte[].class, null);
employee.ref2 = new ArrayList<JAXBElement>();
employee.ref2.add(new JAXBElement(new QName("fooC"), String.class, null));
employee.ref2.add(new JAXBElement(new QName("fooC"), String.class, null));
employee.ref2.add(new JAXBElement(new QName("fooB"), Byte[].class, null));
employee.ref2.add(new JAXBElement(new QName("fooB"), Byte[].class, null));
return employee;
}
}