blob: 1d32f9a07e0793296ffa4340b4f7867b17cb425a [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 - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.sdo.helper.xmlhelper.loadandsave.nodenullpolicy;
import junit.textui.TestRunner;
import commonj.sdo.helper.XMLDocument;
public class IsSetNillableWithDefaultSetNonNullTestCases extends IsSetNillableWithDefaultTestCases {
// UC 4-1
// test both primitives (Integer wraps int) and string for DirectMappings
/*
<xsd:element name='employee'>
<xsd:complexType><xsd:sequence>
<xsd:element name=''id" type='xsd:int' default="10" nillable='true'/>
<xsd:element name='firsname' type='xsd:string' default='default-first' nillable='true'/>
</xsd:sequence></xsd:complexType>
</xsd:element>
Use Case #4-1 - Set to Non-Null Value
Unmarshal From fn Property Marshal To
<employee><fn>Jane</fn></employee> Get = 'Jane' IsSet = true <employee><fn>Jane</fn></employee>
*/
public IsSetNillableWithDefaultSetNonNullTestCases(String name) {
super(name);
}
@Override
public void setUp() {
super.setUp();
}
@Override
protected String getControlFileName() {
return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/nodenullpolicy/IsSetNillableWithDefaultSetNonNull.xml";
}
@Override
protected String getControlWriteFileName() {
return getControlFileName();
}
@Override
protected String getNoSchemaControlFileName() {
return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/nodenullpolicy/IsSetNillableWithDefaultSetNonNullNoSchema.xml";
}
@Override
protected String getNoSchemaControlWriteFileName() {
return getNoSchemaControlFileName();
}
@Override
protected void verifyAfterLoad(XMLDocument doc) {
super.verifyAfterLoad(doc);
Object value = doc.getRootObject().get(ID_NAME);
boolean isSet = doc.getRootObject().isSet(ID_NAME);
// verify defaults
assertNotSame(ID_DEFAULT, value);
assertNotNull(value);
assertTrue(isSet);
value = doc.getRootObject().get(FIRSTNAME_NAME);
isSet = doc.getRootObject().isSet(FIRSTNAME_NAME);
assertNotSame(FIRSTNAME_DEFAULT, value);
assertNotNull(value);
assertTrue(isSet);
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.sdo.helper.xmlhelper.loadandsave.nodenullpolicy.IsSetNillableWithDefaultSetNonNullTestCases" };
TestRunner.main(arguments);
}
}