/******************************************************************************* * 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: * Denise Smith - 2.3 ******************************************************************************/ package org.eclipse.persistence.testing.sdo.helper.xmlhelper.loadandsave; import java.util.ArrayList; import java.util.List; import org.eclipse.persistence.exceptions.SDOException; import org.eclipse.persistence.sdo.SDOConstants; import org.eclipse.persistence.sdo.SDOType; import org.eclipse.persistence.sdo.helper.SDOHelperContext; import commonj.sdo.DataObject; import commonj.sdo.Type; import commonj.sdo.helper.XMLDocument; import junit.textui.TestRunner; public class LoadAndSaveExceptionBug325353TestCases extends LoadAndSaveTestCases{ public LoadAndSaveExceptionBug325353TestCases(String name) { super(name); } public static void main(String[] args) { String[] arguments = { "-c", "org.eclipse.persistence.testing.sdo.helper.xmlhelper.loadandsave.LoadAndSaveExceptionBug325353TestCases" }; TestRunner.main(arguments); } protected String getSchemaName() { return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/Customer.xsd"; } protected String getControlFileName() { return ("./org/eclipse/persistence/testing/sdo/helper/xmlhelper/simpleElement.xml"); } protected String getNoSchemaControlFileName() { return ("./org/eclipse/persistence/testing/sdo/helper/xmlhelper/simpleElementNoSchema.xml"); } protected String getControlRootURI() { return NON_DEFAULT_URI; } protected String getControlRootName() { return "customer"; } protected String getRootInterfaceName() { return "CustomerType"; } // 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; } public void registerTypes() { Type stringType = typeHelper.getType("commonj.sdo", "String"); 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", "customer"); // create a first name property addProperty(customerType, "firstName", stringType, false, false, true); // create a last name property addProperty(customerType, "lastName", stringType, false, false, 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); } protected void verifyAfterLoad(XMLDocument document) { xmlHelper = new SDOHelperContext().getXMLHelper(); assertNotNull(document); assertNotNull(document.getRootObject()); assertNull(document.getRootObject().getContainer()); } public void testLoadFromAndSaveAfterDefineMultipleSchemas() throws Exception { try{ super.testLoadFromAndSaveAfterDefineMultipleSchemas(); }catch(SDOException sdoException){ assertEquals(SDOException.DATAOBJECT_FROM_DIFFERENT_HELPERCONTEXT, sdoException.getErrorCode()); return; } fail("An SDOException should have been thrown."); } public void testLoadFromDomSourceWithURIAndOptionsSaveDataObjectToStreamResult() throws Exception { try{ super.testLoadFromDomSourceWithURIAndOptionsSaveDataObjectToStreamResult(); }catch(SDOException sdoException){ assertEquals(SDOException.DATAOBJECT_FROM_DIFFERENT_HELPERCONTEXT, sdoException.getErrorCode()); return; } fail("An SDOException should have been thrown."); } public void testLoadFromFileReaderWithURIAndOptionsStreamSaveDataObjectToWriter() throws Exception { try{ super.testLoadFromFileReaderWithURIAndOptionsStreamSaveDataObjectToWriter(); }catch(SDOException sdoException){ assertEquals(SDOException.DATAOBJECT_FROM_DIFFERENT_HELPERCONTEXT, sdoException.getErrorCode()); return; } fail("An SDOException should have been thrown."); } public void testLoadFromInputStreamSaveDocumentToOutputStream() throws Exception { try{ super.testLoadFromInputStreamSaveDocumentToOutputStream(); }catch(SDOException sdoException){ assertEquals(SDOException.DATAOBJECT_FROM_DIFFERENT_HELPERCONTEXT, sdoException.getErrorCode()); return; } fail("An SDOException should have been thrown."); } public void testLoadFromInputStreamWithURIAndOptionsSaveDataObjectToOutputStream() throws Exception { try{ super.testLoadFromInputStreamWithURIAndOptionsSaveDataObjectToOutputStream(); }catch(SDOException sdoException){ assertEquals(SDOException.DATAOBJECT_FROM_DIFFERENT_HELPERCONTEXT, sdoException.getErrorCode()); return; } fail("An SDOException should have been thrown."); } public void testLoadFromInputStreamWithURIAndOptionsSaveDataObjectToStreamResult() throws Exception { try{ super.testLoadFromInputStreamWithURIAndOptionsSaveDataObjectToStreamResult(); }catch(SDOException sdoException){ assertEquals(SDOException.DATAOBJECT_FROM_DIFFERENT_HELPERCONTEXT, sdoException.getErrorCode()); return; } fail("An SDOException should have been thrown."); } public void testLoadFromSAXSourceWithURIAndOptionsSaveDataObjectToStreamResult() throws Exception { try{ super.testLoadFromSAXSourceWithURIAndOptionsSaveDataObjectToStreamResult(); }catch(SDOException sdoException){ assertEquals(SDOException.DATAOBJECT_FROM_DIFFERENT_HELPERCONTEXT, sdoException.getErrorCode()); return; } fail("An SDOException should have been thrown."); } public void testLoadFromStreamSourceWithURIAndOptionsSaveDataObjectToStreamResult() throws Exception { try{ super.testLoadFromStreamSourceWithURIAndOptionsSaveDataObjectToStreamResult(); }catch(SDOException sdoException){ assertEquals(SDOException.DATAOBJECT_FROM_DIFFERENT_HELPERCONTEXT, sdoException.getErrorCode()); return; } fail("An SDOException should have been thrown."); } public void testLoadFromStringSaveDocumentToWriter() throws Exception { try{ super.testLoadFromStringSaveDocumentToWriter(); }catch(SDOException sdoException){ assertEquals(SDOException.DATAOBJECT_FROM_DIFFERENT_HELPERCONTEXT, sdoException.getErrorCode()); return; } fail("An SDOException should have been thrown."); } public void testNoSchemaLoadFromInputStreamSaveDataObjectToString() throws Exception { try{ super.testNoSchemaLoadFromInputStreamSaveDataObjectToString(); }catch(SDOException sdoException){ assertEquals(SDOException.DATAOBJECT_FROM_DIFFERENT_HELPERCONTEXT, sdoException.getErrorCode()); return; } fail("An SDOException should have been thrown."); } public void testClassGenerationLoadAndSave() throws Exception { try{ super.testClassGenerationLoadAndSave(); }catch(SDOException sdoException){ assertEquals(SDOException.DATAOBJECT_FROM_DIFFERENT_HELPERCONTEXT, sdoException.getErrorCode()); return; } fail("An SDOException should have been thrown."); } }