blob: d7cc78cf85760e3da1128b1df93365ff87e31a78 [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 version
package org.eclipse.persistence.testing.jaxb.namespaceuri.inheritance;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.persistence.jaxb.JAXBContextProperties;
import org.eclipse.persistence.testing.jaxb.JAXBWithJSONTestCases;
import org.eclipse.persistence.testing.jaxb.namespaceuri.inheritance.package2.AnotherPackageSubType;
/**
* Tests backward compatibility when handing type property.
*
* @author Martin Vojtek
*
*/
public class InheritanceWithMultiplePackagesBackwardCompatibilityTestCases extends JAXBWithJSONTestCases {
private static final String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/namespaceuri/inheritance/complex_xml.xml";
private static final String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/namespaceuri/inheritance/complex_backward_compatible.json";
public InheritanceWithMultiplePackagesBackwardCompatibilityTestCases(String name) throws Exception {
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
setClasses(new Class[] {RootComplex.class});
jaxbMarshaller.setProperty(JAXBContextProperties.JSON_TYPE_COMPATIBILITY, true);
jaxbUnmarshaller.setProperty(JAXBContextProperties.JSON_TYPE_COMPATIBILITY, true);
}
@Override
protected Object getControlObject() {
RootComplex root = new RootComplex();
SubType subType = new SubType();
subType.subTypeProp = 10;
root.baseTypeThing = subType;
SubTypeLevel2 subTypeLevel2 = new SubTypeLevel2();
subTypeLevel2.baseProp = "boo";
AnotherSubType anotherSubType = new AnotherSubType();
AnotherPackageSubType anotherPackageSubType = new AnotherPackageSubType();
List baseTypes = new ArrayList();
baseTypes.add(subType);
baseTypes.add(anotherSubType);
baseTypes.add(subTypeLevel2);
baseTypes.add(subType);
baseTypes.add(anotherPackageSubType);
root.baseTypeList = baseTypes;
List objectList = new ArrayList(baseTypes);
objectList.add(new String("string test"));
objectList.add(Integer.valueOf(500));
root.objectList = objectList;
List anyObjectList = new ArrayList(baseTypes);
anyObjectList.add(new String("string test2"));
List choiceList = new ArrayList();
choiceList.add(anotherPackageSubType);
choiceList.add(subTypeLevel2);
choiceList.add(new String("choice string test"));
choiceList.add(Integer.valueOf(500));
root.choiceList = choiceList;
return root;
}
}