blob: 952c718ea88676245b7d5379872e10d15ab0d5b6 [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:
// Matt MacIvor - November 13/2009 - 2.0 - Initial implementation
package org.eclipse.persistence.testing.jaxb.jaxbelement.simple;
import java.io.InputStream;
import java.util.ArrayList;
import jakarta.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import org.eclipse.persistence.testing.jaxb.jaxbelement.JAXBElementTestCases;
public class JAXBElementByteArrayAttachmentTestCases extends JAXBElementTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/jaxbelement/simple/bytearrayattachment.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/jaxbelement/simple/bytearrayattachment.json";
public JAXBElementByteArrayAttachmentTestCases(String name) throws Exception {
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
setTargetClass(byte[].class);
}
@Override
public Class getUnmarshalClass(){
return byte[].class;
}
@Override
public void setUp() throws Exception{
super.setUp();
jaxbMarshaller.setAttachmentMarshaller(new MyJAXBAttachmentMarshaller(new byte[] {0, 1, 2, 3}));
jaxbUnmarshaller.setAttachmentUnmarshaller(new MyJAXBAttachmentUnmarshaller());
}
@Override
public Class[] getClasses(){
Class[] classes = new Class[1];
classes[0] = byte[].class;
return classes;
}
@Override
protected Object getControlObject() {
JAXBElement<byte[]> jbe = new JAXBElement<byte[]>(new QName("a", "b"),byte[].class, new byte[] { 0, 1, 2, 3});
return jbe;
}
protected void comparePrimitiveArrays(Object controlValue, Object testValue){
assertEquals(byte[].class, controlValue.getClass());
assertEquals(byte[].class, testValue.getClass());
byte[] controlArray = (byte[])controlValue;
byte[] testArray = (byte[])testValue;
assertEquals(controlArray.length, testArray.length);
for (int i = 0; i < controlArray.length; i++) {
assertEquals(controlArray[i], testArray[i]);
}
}
public void testSchemaGen() throws Exception{
super.testSchemaGen(new ArrayList<InputStream>());
}
}