blob: 8c73b0a2d45c1f3345be0d77b1c6b0ab7fd9e9b4 [file] [log] [blame]
/*
* Copyright (c) 2012, 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 - 2.4 - April 2012
package org.eclipse.persistence.testing.jaxb.json.rootlevellist;
import java.io.StringReader;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.Set;
import java.util.UUID;
import javax.xml.transform.stream.StreamSource;
import org.eclipse.persistence.testing.jaxb.json.JSONMarshalUnmarshalTestCases;
public class WithXmlRootElementSetTestCases extends JSONMarshalUnmarshalTestCases {
private static final String CONTROL_JSON = "org/eclipse/persistence/testing/jaxb/json/rootlevellist/WithXmlRootElement.json";
public WithXmlRootElementSetTestCases(String name) throws Exception {
super(name);
setClasses(new Class<?>[] {WithXmlRootElementRoot.class});
setControlJSON(CONTROL_JSON);
}
@Override
protected Set<WithXmlRootElementRoot> getControlObject() {
Set<WithXmlRootElementRoot> set = new LinkedHashSet<WithXmlRootElementRoot>();
WithXmlRootElementRoot foo = new WithXmlRootElementRoot();
foo.setName("FOO");
foo.setUuid(UUID.fromString("8ae03765-ee01-4a81-a0de-a2497a10739f"));
set.add(foo);
WithXmlRootElementRoot bar = new WithXmlRootElementRoot();
bar.setName("BAR");
set.add(bar);
return set;
}
public void testUnmarshalEmptyList() throws Exception {
Collection<WithXmlRootElementRoot> test = (Collection<WithXmlRootElementRoot>) jsonUnmarshaller.unmarshal(new StreamSource(new StringReader("[]")), WithXmlRootElementRoot.class).getValue();
assertEquals(0, test.size());
}
}