blob: 69e851daa79fa39cabdebdf79e4ccf3c1d8a35d5 [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;
import commonj.sdo.helper.XMLDocument;
import java.io.File;
import java.io.FileInputStream;
import java.io.StringReader;
import java.io.StringWriter;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.persistence.sdo.SDOConstants;
import org.eclipse.persistence.sdo.helper.SDOClassGenerator;
import org.eclipse.persistence.sdo.helper.SDOClassLoader;
import org.eclipse.persistence.sdo.helper.SDOXMLHelper;
import org.eclipse.persistence.testing.sdo.util.CompileUtil;
public abstract class LoadAndSaveTestCases extends LoadAndSaveWithOptionsTestCases {
public LoadAndSaveTestCases(String name) {
super(name);
}
abstract protected String getRootInterfaceName();
public void testLoadFromStringSaveDocumentToWriter() throws Exception {
defineTypes();
FileInputStream inputStream = new FileInputStream(getControlFileName());
byte[] bytes = new byte[inputStream.available()];
inputStream.read(bytes);
XMLDocument document = xmlHelper.load(new String(bytes));
verifyAfterLoad(document);
StringWriter writer = new StringWriter();
xmlHelper.save(document, writer, null);
// Encoding does not apply to this test, so compare to simpleElement.xml,
// not simpleElementEncoding.xml
compareXML(getControlDataObjectFileName(), writer.toString());
}
public void testClassGenerationLoadAndSave() throws Exception {
// TODO: hard coded path should be parameterized as an option to the test suite
String tmpDirName = tempFileDir + "/tmp/";
File f = new File(tmpDirName);
f.mkdir();
f.deleteOnExit();
generateClasses(tmpDirName);
setUp();
compileFiles(tmpDirName, getPackages());
URL[] urls = new URL[1];
urls[0] = f.toURI().toURL();
URLClassLoader myURLLoader = new URLClassLoader(urls);
String package1 = getPackages().get(0);
String className = package1 + "/" + getRootInterfaceName();
className = className.replaceAll("/", ".");
Class urlLoadedClass = myURLLoader.loadClass(className);
((SDOXMLHelper)xmlHelper).setLoader(new SDOClassLoader(myURLLoader, aHelperContext));
Class loadedClass2 = ((SDOXMLHelper)xmlHelper).getLoader().loadClass(className);
defineTypes();
assertEquals(urlLoadedClass, loadedClass2);
FileInputStream inputStream = new FileInputStream(getControlFileName());
XMLDocument document = xmlHelper.load(inputStream);
Class loadedClass = document.getRootObject().getType().getInstanceClass();
assertEquals(urlLoadedClass, loadedClass);
verifyAfterLoad(document);
StringWriter writer = new StringWriter();
xmlHelper.save(document, writer, null);
compareXML(getControlWriteFileName(), writer.toString());
}
// First package should be the package that contains the class for the get root interface name class
// Override package generation based on the JAXB 2.0 algorithm in SDOUtil.java
@Override
protected List<String> getPackages() {
List<String> packages = new ArrayList<String>();
// Override this function if your targetNamespace is defined or you use the sdoJava:package annotation
packages.add(SDOConstants.JAVA_TYPEGENERATION_DEFAULT_PACKAGE_NAME);
return packages;
}
protected void generateClasses(String tmpDirName) throws Exception {
String xsdString = getSchema(getSchemaName());
StringReader reader = new StringReader(xsdString);
SDOClassGenerator classGenerator = new SDOClassGenerator(aHelperContext);
classGenerator.generate(reader, tmpDirName);
}
public void compileFiles(String dirName, List<String> packages) throws Exception {
List<String> allFilesInAllPackages = new ArrayList<String>();
for (int i = 0; i < packages.size(); i++) {
String nextPackage = packages.get(i);
nextPackage = dirName + nextPackage;
File f = new File(nextPackage);
File[] filesInDir = f.listFiles();
for (int j = 0; j < filesInDir.length; j++) {
File nextFile = filesInDir[j];
// Do not add [directories] that contain subpackages with classes
if(!nextFile.isDirectory()) {
String fullName = nextFile.getAbsolutePath();
nextFile.deleteOnExit();
allFilesInAllPackages.add(fullName);
String fullClassName = fullName.replace(".java", ".class");
File nextClassFile = new File(fullClassName);
nextClassFile.deleteOnExit();
}
}
}
Object[] fileArray = allFilesInAllPackages.toArray();
int returnVal = CompileUtil.instance().compile(getClassPathForCompile(), fileArray);
assertEquals("CompileUtil returned a non-zero exit value.", 0, returnVal);
}
@Override
public void tearDown() throws Exception {
super.tearDown();
// TODO: hard coded path should be parameterized as an option to the test suite
String tmpDirName = tempFileDir + "/tmp/";
emptyAndDeleteDirectory(new File(tmpDirName));
}
}