blob: 308db082ddeac8a76576412d727152a234b2d1f4 [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;
// TODO: How is this test different from 3-1 set(non-null) == set(default)
public class IsSetOptionalWithoutDefaultSetNonNullTestCases extends IsSetOptionalWithoutDefaultTestCases {
// UC 1-1
/*
<xsd:element name='employee'>
<xsd:complexType><xsd:sequence>
<xsd:element name='fn' type='xsd:string'/>
</xsd:sequence></xsd:complexType>
</xsd:element>
Use Case #1-1 - Is Set == true (non-null)
Unmarshal From fn Property Marshal To
<employee><fn>john</fn></employee> Get = john IsSet = true <employee><fn>john</fn></employee>
*/
public IsSetOptionalWithoutDefaultSetNonNullTestCases(String name) {
super(name);
}
@Override
public void setUp() {
super.setUp();
}
@Override
protected String getControlFileName() {
return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/nodenullpolicy/IsSetOptionalWithoutDefaultSetNonNull.xml";
}
@Override
protected String getControlWriteFileName() {
return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/nodenullpolicy/IsSetOptionalWithoutDefaultSetNonNullWrite.xml";
}
@Override
protected String getNoSchemaControlWriteFileName() {
return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/nodenullpolicy/IsSetOptionalWithoutDefaultSetNonNullWriteNoSchema.xml";
}
@Override
protected String getNoSchemaControlFileName() {
return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/nodenullpolicy/IsSetOptionalWithoutDefaultSetNonNullNoSchema.xml";
}
@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
assertNotNull(value);
assertNotSame(ID_DEFAULT, value);
assertEquals(99, value);
assertTrue(isSet);
value = doc.getRootObject().get(FIRSTNAME_NAME);
isSet = doc.getRootObject().isSet(FIRSTNAME_NAME);
assertNotNull(value);
assertNotSame(FIRSTNAME_DEFAULT, value);
assertEquals("nonnull", value);
assertTrue(isSet);
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.sdo.helper.xmlhelper.loadandsave.nodenullpolicy.IsSetOptionalWithoutDefaultSetNonNullTestCases" };
TestRunner.main(arguments);
}
}