blob: 92b7dfe372b703685d062de4de44920fa534fff1 [file] [log] [blame]
package org.eclipse.persistence.testing.sdo.helper.xmlhelper.loadandsave;
import java.io.InputStream;
import java.net.URL;
import java.util.List;
import javax.xml.transform.stream.StreamSource;
import junit.textui.TestRunner;
import org.eclipse.persistence.oxm.XMLMarshaller;
import org.eclipse.persistence.oxm.XMLUnmarshaller;
import org.eclipse.persistence.oxm.attachment.XMLAttachmentMarshaller;
import org.eclipse.persistence.oxm.attachment.XMLAttachmentUnmarshaller;
import org.eclipse.persistence.sdo.SDOConstants;
import org.eclipse.persistence.sdo.SDOType;
import org.eclipse.persistence.sdo.helper.DefaultSchemaResolver;
import org.eclipse.persistence.sdo.helper.SDOClassGenerator;
import org.eclipse.persistence.sdo.helper.SDOXMLHelper;
import commonj.sdo.DataObject;
import commonj.sdo.Type;
public class LoadAndSaveDataHandlerTestCases extends LoadAndSaveTestCases {
public LoadAndSaveDataHandlerTestCases(String name) {
super(name);
}
public void setUp() {
super.setUp();
}
protected String getSchemaName() {
return "EmployeeDataHandler1.xsd";
}
protected String getSchemaLocation() {
return FILE_PROTOCOL + USER_DIR + "/org/eclipse/persistence/testing/sdo/schemas/";
}
protected String getControlFileName() {
return ("./org/eclipse/persistence/testing/sdo/helper/xmlhelper/EmployeeWithDataHandler.xml");
}
protected String getNoSchemaControlFileName() {
return ("./org/eclipse/persistence/testing/sdo/helper/xmlhelper/EmployeeWithDataHandler.xml");
}
protected String getControlRootURI() {
return "http://www.example.org";
}
protected String getControlRootName() {
return "employeeType";
}
protected String getRootInterfaceName() {
return "EmployeeType";
}
protected List defineTypes() {
try {
URL url = new URL(getSchemaLocation() + getSchemaName());
InputStream is = url.openStream();
return xsdHelper.define(is, getSchemaLocation());
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
protected void generateClasses(String tmpDirName) throws Exception{
URL url = new URL(getSchemaLocation() + getSchemaName());
InputStream is = url.openStream();
SDOClassGenerator classGenerator = new SDOClassGenerator(aHelperContext);
DefaultSchemaResolver schemaResolver = new DefaultSchemaResolver();
schemaResolver.setBaseSchemaLocation(getSchemaLocation());
StreamSource ss = new StreamSource(is);
classGenerator.generate(ss, tmpDirName, schemaResolver);
}
public void registerTypes() {
SDOType stringType = (SDOType) typeHelper.getType("commonj.sdo", "String");
SDOType bytesType = (SDOType) typeHelper.getType("commonj.sdo", "Bytes");
SDOType propertyType = (SDOType) typeHelper.getType(SDOConstants.SDO_URL, SDOConstants.PROPERTY);
// create a new Type for Customers
DataObject customerType = dataFactory.create("commonj.sdo", "Type");
customerType.set("uri", getControlRootURI());
customerType.set("name", "EmployeeType");
// create an idproperty
addProperty(customerType, "id", stringType, false, false, true);
// create a first name property
addProperty(customerType, "name", stringType, false, false, true);
// create a photo property
DataObject photoProp = addProperty(customerType, "photo", bytesType, true, true, true);
// 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.LoadAndSaveMimeTypeOnPropertyManyTestCases" };
TestRunner.main(arguments);
}
}