blob: 7eed7f93fb59926008f6d52ea0cc248bd6eea871 [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.JAXBWithJSONTestCases;
public class XMLElementRefAttachmentTestCases extends JAXBWithJSONTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlelementref/attachment/employeeAttachment.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/xmlelementref/attachment/employeeAttachment.json";
public XMLElementRefAttachmentTestCases(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 = factory.createFooA();
employee.ref2 = new ArrayList<JAXBElement>();
employee.ref2.add(factory.createFooC());
employee.ref2.add(factory.createFooB());
employee.ref2.add(factory.createFooB());
employee.ref2.add(factory.createFooC());
return employee;
}
@Override
protected Object getJSONReadControlObject(){
ObjectFactory factory = new ObjectFactory();
Employee employee = new Employee();
employee.ref1 = factory.createFooA();
employee.ref2 = new ArrayList<JAXBElement>();
employee.ref2.add(factory.createFooC());
employee.ref2.add(factory.createFooC());
employee.ref2.add(factory.createFooB());
employee.ref2.add(factory.createFooB());
return employee;
}
}