blob: ccc0fa22a4bd3033baa86c9e1db47174a1c8dc20 [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:
// Iaroslav Savytskyi - 2.6 - initial implementation
package org.eclipse.persistence.testing.jaxb.json.unmapped;
import junit.framework.TestCase;
import org.eclipse.persistence.jaxb.JAXBContextFactory;
import org.eclipse.persistence.jaxb.JAXBContextProperties;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Unmarshaller;
import javax.xml.transform.stream.StreamSource;
import java.io.FileNotFoundException;
import java.util.Collections;
import java.util.Map;
/**
* Created by yaroska on 02/03/15.
*/
public class JsonUnmappedTestCases extends TestCase {
public void testLastNull() throws JAXBException, FileNotFoundException {
Map<String, Object> jaxbProperties = Collections.singletonMap(JAXBContextProperties.MEDIA_TYPE, "application/json");
JAXBContext jc = JAXBContextFactory.createContext(new Class[]{Foo.class}, jaxbProperties);
Unmarshaller um = jc.createUnmarshaller();
String file = "org/eclipse/persistence/testing/jaxb/json/unmapped/unmapped.json";
StreamSource jsonSource = new StreamSource(Thread.currentThread().getContextClassLoader().getResourceAsStream(file));
JAXBElement<Foo> o = um.unmarshal(jsonSource, Foo.class);
final Foo foo = o.getValue();
assertNotNull("Unmarshalled element shouldn't be null", foo);
String expected = "fooName";
final String actual = foo.getName();
assertEquals("Expected name is : " + expected + "; actual is : " + actual, expected, actual);
}
}