blob: d4cf2e959470ceeb6a59fca917c145f02e04b5b4 [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:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.oxm.mappings.binarydatacollection.identifiedbyname.withgroupingelement;
import java.util.Vector;
import org.eclipse.persistence.internal.oxm.Namespace;
import org.eclipse.persistence.oxm.NamespaceResolver;
import org.eclipse.persistence.oxm.XMLMarshaller;
import org.eclipse.persistence.testing.oxm.mappings.XMLWithJSONMappingTestCases;
import org.eclipse.persistence.testing.oxm.mappings.binarydatacollection.Employee;
import org.eclipse.persistence.testing.oxm.mappings.binarydatacollection.MyAttachmentMarshaller;
import org.eclipse.persistence.testing.oxm.mappings.binarydatacollection.MyAttachmentUnmarshaller;
/**
* Not supported
* base64Binary as attribute - no singlenode\xmlattribute
*
* @author mfobrien
*
*/
public class BinaryDataCollectionWithGroupingElementIdentifiedByNameXOPonNSRTestCases extends XMLWithJSONMappingTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/oxm/mappings/binarydatacollection/identifiedbyname/withgroupingelement/BinaryDataCollectionWithGroupElemIdentifiedByNameXOPinNSR.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/oxm/mappings/binarydatacollection/identifiedbyname/withgroupingelement/BinaryDataCollectionWithGroupElemIdentifiedByNameXOPinNSR.json";
//private final static String PHOTO_PATH1 = "http://www.example.com/admin/images/ocom/oralogo_small.gif";
//private final static String PHOTO_PATH2 = "http://www.example.com/admin/images/ocom/oralogo_small.gif";
//private final static String PHOTO_PATH3 = "http://www.example.com/admin/images/ocom/oralogo_small.gif";
public BinaryDataCollectionWithGroupingElementIdentifiedByNameXOPonNSRTestCases(String name) throws Exception {
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
NamespaceResolver namespaceResolver = new NamespaceResolver();
Vector namespaces = new Vector();
namespaces.add(new Namespace(MyAttachmentUnmarshaller.XOP_NAMESPACE_PREFIX,//
MyAttachmentUnmarshaller.XOP_NAMESPACE_URL));
namespaceResolver.setNamespaces(namespaces);
setProject(new BinaryDataCollectionWithGroupingElementIdentifiedByNameProject(namespaceResolver));
}
@Override
protected Object getControlObject() {
Employee employee = null;
// try {
Vector photos = new Vector();
photos.addElement(MyAttachmentUnmarshaller.PHOTO_BASE64.getBytes());
photos.addElement(MyAttachmentUnmarshaller.PHOTO_BASE64.getBytes());
photos.addElement(MyAttachmentUnmarshaller.PHOTO_BASE64.getBytes());
//photos.addElement(Toolkit.getDefaultToolkit().getImage(new URL(PHOTO_PATH1)));
//photos.addElement(Toolkit.getDefaultToolkit().getImage(new URL(PHOTO_PATH2)));
//photos.addElement(Toolkit.getDefaultToolkit().getImage(new URL(PHOTO_PATH3)));
employee = new Employee();
employee.setID(Employee.DEFAULT_ID);
employee.setPhotos(photos);
// } catch (MalformedURLException mue) {
// System.out.println("BinaryDataCollection: Exception: " + mue.getMessage());
// mue.printStackTrace();
// }
return employee;
}
@Override
public void setUp() throws Exception {
super.setUp();
MyAttachmentUnmarshaller handler = new MyAttachmentUnmarshaller();
handler.attachments.put(MyAttachmentUnmarshaller.ATTACHMENT_TEST_ID,MyAttachmentUnmarshaller.PHOTO_BASE64.getBytes());
xmlUnmarshaller.setAttachmentUnmarshaller(handler);
}
@Override
protected XMLMarshaller createMarshaller() {
XMLMarshaller marshaller = super.createMarshaller();
marshaller.setAttachmentMarshaller(new MyAttachmentMarshaller());
return marshaller;
}
}