blob: 446e869210e5ef5c6f65d28cdad899f4d9ae9e29 [file] [log] [blame]
/*
* Copyright (c) 2015, 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:
// Martin Vojtek - 2.6.0 - initial implementation
package org.eclipse.persistence.testing.jaxb.rs;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.lang.reflect.Field;
import java.net.URL;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
import junit.framework.TestCase;
import org.eclipse.persistence.jaxb.rs.MOXyJsonProvider;
import org.eclipse.persistence.testing.jaxb.rs.model.Bar;
import org.eclipse.persistence.testing.jaxb.rs.model.MyList;
import org.eclipse.persistence.testing.jaxb.rs.model.MyMap;
/**
* Tests {@code List<MyList>} marshal/unmarshal via MOXyJsonPrivder.
*
* @author Martin Vojtek
*
*/
public class ListAdapterTestCases extends TestCase {
private MOXyJsonProvider moxyJsonProvider;
public List<MyList> list;
private final URL jsonResource = Thread.currentThread().getContextClassLoader().getResource("org/eclipse/persistence/testing/jaxb/rs/list_adapter.json");
@Override
protected void setUp() throws Exception {
moxyJsonProvider = new MOXyJsonProvider();
MyList myList = new MyList();
myList.setList(Arrays.asList(new Bar("bar")));
list = Arrays.asList(myList, myList);
}
public void testRead() throws Exception {
Field field = ListAdapterTestCases.class.getField("list");
try (InputStream entityStream = jsonResource.openStream()) {
List<MyMap> result = (List<MyMap>) moxyJsonProvider.readFrom((Class<Object>) field.getType(), field.getGenericType(), null, null, null, entityStream);
assertEquals(list, result);
}
}
public void testWrite() throws Exception {
Field field = ListAdapterTestCases.class.getField("list");
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
moxyJsonProvider.writeTo(list, field.getType(), field.getGenericType(), null, null, null, outputStream);
try (InputStream entityStream = jsonResource.openStream();
Scanner scanner = new Scanner(entityStream, "UTF-8")) {
String expected = scanner.useDelimiter("\\A").next();
assertEquals(expected, new String(outputStream.toByteArray()));
}
}
public void testReadable() throws Exception {
Field field = ListAdapterTestCases.class.getField("list");
boolean test = moxyJsonProvider.isReadable(field.getType(), field.getGenericType(), null, null);
assertTrue(test);
}
public void testWriteable() throws Exception {
Field field = ListAdapterTestCases.class.getField("list");
boolean test = moxyJsonProvider.isWriteable(field.getType(), field.getGenericType(), null, null);
assertTrue(test);
}
}