blob: 4761a3c064cbde8f1180f5bbd4990ee6e941e584 [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.save;
import commonj.sdo.DataObject;
import commonj.sdo.Property;
import commonj.sdo.Type;
import commonj.sdo.helper.XMLDocument;
public class SaveSimpleElementTestCases extends SDOXMLHelperSaveTestCases {
public SaveSimpleElementTestCases(String name) {
super(name);
}
@Override
protected String getControlFileName() {
return ("./org/eclipse/persistence/testing/sdo/helper/xmlhelper/simpleElement.xml");
}
@Override
protected String getNoSchemaControlFileName() {
return ("./org/eclipse/persistence/testing/sdo/helper/xmlhelper/simpleElementNoSchema.xml");
}
@Override
protected XMLDocument getXMLDocumentToSave() {
DataObject dataObject = dataFactory.create(getControlRootURI(), CONTROL_ROOT_TYPE);
Property firstNameProp = dataObject.getInstanceProperty(FIRSTNAME);
dataObject.set(firstNameProp, CONTROL_FIRST_NAME);
Property lastNameProp = dataObject.getInstanceProperty(LASTNAME);
dataObject.set(lastNameProp, CONTROL_LAST_NAME);
XMLDocument doc = xmlHelper.createDocument(dataObject, getControlRootURI(), getControlRootName());
return doc;
}
@Override
public void registerTypes() {
Type stringType = typeHelper.getType("commonj.sdo", "String");
// create a new Type for Customers
DataObject customerType = dataFactory.create("commonj.sdo", "Type");
customerType.set("uri", CONTROL_ROOT_URI);
customerType.set("name", CONTROL_ROOT_TYPE);
// create a first name property
DataObject firstNameProperty = customerType.createDataObject("property");
firstNameProperty.set("name", FIRSTNAME);
firstNameProperty.set("type", stringType);
// create a last name property
DataObject lastNameProperty = customerType.createDataObject("property");
lastNameProperty.set("name", LASTNAME);
lastNameProperty.set("type", stringType);
// now define the Customer type so that customers can be made
typeHelper.define(customerType);
}
}