blob: 22bd9ffc7466ce81d4f3044822fd0d967dc95839 [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:
// Denise Smith - June 24/2009 - 2.0 - Initial implementation
package org.eclipse.persistence.testing.jaxb.jaxbelement.simple;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Arrays;
import jakarta.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import org.eclipse.persistence.internal.oxm.conversion.Base64;
import org.eclipse.persistence.testing.jaxb.jaxbelement.JAXBElementTestCases;
public class JAXBElementBase64TestCases extends JAXBElementTestCases {
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/jaxbelement/simple/bytearray.xml";
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/jaxbelement/simple/bytearray.json";
public JAXBElementBase64TestCases(String name) throws Exception {
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
setTargetClass(byte[].class);
}
@Override
public Class getUnmarshalClass(){
return byte[].class;
}
@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>());
}
public void testInvalidData() throws Exception {
byte[] result = Base64.base64Decode("cid:1197646757481".getBytes());
assertTrue(Arrays.equals("cid1197646757481".getBytes(), Base64.base64Encode(result)));
}
}