blob: d8f0b8ff2890bbe914d7675610083cd4afdfbfe1 [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:
// Oracle - December 2011
package org.eclipse.persistence.testing.jaxb.namespaceuri.inheritance;
import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.Marshaller;
import org.eclipse.persistence.jaxb.MarshallerProperties;
import org.eclipse.persistence.jaxb.UnmarshallerProperties;
import org.eclipse.persistence.testing.jaxb.JAXBTestCases;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
import org.eclipse.persistence.testing.jaxb.namespaceuri.inheritance.package2.AnotherPackageSubType;
public class InheritanceRootChoiceOnlyTestCases extends JAXBWithJSONTestCases {
private static final String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/namespaceuri/inheritance/choicecollection.xml";
private static final String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/namespaceuri/inheritance/choicecollection.json";
public InheritanceRootChoiceOnlyTestCases(String name) throws Exception {
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
setClasses(new Class[] {RootChoiceOnly.class});
Map<String, String> namespaces = new HashMap<String, String>();
namespaces.put("rootNamespace","ns0");
namespaces.put("uri1", "ns5");
jaxbUnmarshaller.setProperty(UnmarshallerProperties.JSON_NAMESPACE_PREFIX_MAPPER, namespaces);
jaxbMarshaller.setProperty(MarshallerProperties.NAMESPACE_PREFIX_MAPPER, namespaces);
}
@Override
protected Object getControlObject() {
RootChoiceOnly root = new RootChoiceOnly();
SubType subType = new SubType();
subType.subTypeProp = 10;
SubTypeLevel2 subTypeLevel2 = new SubTypeLevel2();
subTypeLevel2.baseProp = "boo";
AnotherPackageSubType anotherPackageSubType = new AnotherPackageSubType();
List choiceList = new ArrayList();
choiceList.add(new String("choice string test2"));
choiceList.add(anotherPackageSubType);
choiceList.add(Integer.valueOf(400));
choiceList.add(subTypeLevel2);
choiceList.add(new String("choice string test"));
choiceList.add(Integer.valueOf(500));
root.choiceList = choiceList;
return root;
}
}