/******************************************************************************* * Copyright (c) 1998, 2015 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 v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.testing.sdo.helper.xmlhelper.loadandsave; import commonj.sdo.DataObject; import commonj.sdo.Type; import commonj.sdo.helper.XMLDocument; import java.util.ArrayList; import java.util.List; import junit.textui.TestRunner; import org.eclipse.persistence.sdo.SDOConstants; import org.eclipse.persistence.sdo.SDOType; public class LoadAndSaveNillableIsSetNodeNullPolicyFalseTestCases extends LoadAndSaveTestCases { public LoadAndSaveNillableIsSetNodeNullPolicyFalseTestCases(String name) { super(name); } public void setUp() { super.setUp(); } protected String getSchemaName() { return "./org/eclipse/persistence/testing/sdo/schemas/DirectIsSetNodeNullPolicyFalseElement.xsd"; } protected String getControlFileName() { return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/nillable/DirectIsSetNodeNullPolicyFalseElement.xml"; } protected String getControlWriteFileName() { return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/nillable/DirectIsSetNodeNullPolicyFalseElement.xml"; } protected String getNoSchemaControlWriteFileName() { return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/nillable/DirectIsSetNodeNullPolicyFalseElementNoSchema.xml"; } protected String getNoSchemaControlFileName() { //return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/nillable/DirectOptionalNodeNullPolicyElementNoSchema.xml"; return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/nillable/DirectIsSetNodeNullPolicyFalseElementNoSchema.xml"; } protected String getControlRootURI() { return NON_DEFAULT_URI; } protected String getControlRootName() { return "employee"; } protected String getRootInterfaceName() { return "EmployeeType"; } // Override package generation based on the JAXB 2.0 algorithm in SDOUtil.java protected List<String> getPackages() { List<String> packages = new ArrayList<String>(); packages.add(NON_DEFAULT_JAVA_PACKAGE_DIR); return packages; } protected void verifyAfterLoad(XMLDocument doc) { super.verifyAfterLoad(doc); Object value = doc.getRootObject().get("id"); boolean isSet = doc.getRootObject().isSet("id"); assertNull(value); // 20070615 changed because Direct now uses IsSetOptionalNNP not // OptionalNNP assertFalse(isSet); value = doc.getRootObject().get("task"); isSet = doc.getRootObject().isSet("task"); assertTrue(value instanceof List); assertTrue(((List) value).size() == 0); assertFalse(isSet); value = doc.getRootObject().get("last-name"); isSet = doc.getRootObject().isSet("last-name"); assertNotNull(value); assertTrue(isSet); value = doc.getRootObject().get("address"); isSet = doc.getRootObject().isSet("address"); assertNull(value); assertFalse(isSet); // 20071002 } public void registerTypes() { SDOType intType = (SDOType) typeHelper.getType(SDOConstants.SDO_URL, SDOConstants.INT); SDOType propertyType = (SDOType) typeHelper.getType(SDOConstants.SDO_URL, SDOConstants.PROPERTY); SDOType stringType = (SDOType) typeHelper.getType(SDOConstants.SDO_URL, SDOConstants.STRING); SDOType typeType = (SDOType) typeHelper.getType(SDOConstants.SDO_URL, SDOConstants.TYPE); // ADDRESS TYYPE DataObject addressTypeDO = dataFactory.create(typeType); addressTypeDO.set("uri", getControlRootURI()); addressTypeDO.set("name", "AddressType"); DataObject addressCityProperty = addProperty(addressTypeDO, "city", stringType, false, false, true); addressCityProperty.set("nullable", false); Type addressType = typeHelper.define(addressTypeDO); // create a new Type for Customers DataObject customerType = dataFactory.create(typeType); customerType.set("uri", getControlRootURI()); customerType.set("name", "EmployeeType"); // customerType.set("name", "Employee"); DataObject idProp = addProperty(customerType, "id", stringType, false, false, true); idProp.set("nullable", false); addProperty(customerType, "task", stringType, false, true, true); addProperty(customerType, "last-name", stringType, false, false, true); DataObject addressProp = addProperty(customerType, "address", addressType, true, false, true); addressProp.set("nullable", false); // now define the Customer type so that customers can be made Type customerSDOType = typeHelper.define(customerType); DataObject propDO = dataFactory.create(propertyType); propDO.set("name", getControlRootName()); propDO.set("type", customerSDOType); typeHelper.defineOpenContentProperty(getControlRootURI(), propDO); } public static void main(String[] args) { String[] arguments = { "-c", "org.eclipse.persistence.testing.sdo.helper.xmlhelper.loadandsave.LoadAndSaveNillableIsSetNodeNullPolicyFalseTestCases" }; TestRunner.main(arguments); } }