Skip to content
This repository has been archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit

Permalink
8251213: [TESTBUG] CDS tests shouldn't write output files into test.c…
Browse files Browse the repository at this point in the history
…lasses directory

Reviewed-by: minqi, ccheung
  • Loading branch information
iklam committed Aug 10, 2020
1 parent 3dc1bed commit b4c1769
Show file tree
Hide file tree
Showing 25 changed files with 113 additions and 87 deletions.
9 changes: 5 additions & 4 deletions test/hotspot/jtreg/runtime/cds/appcds/AppendClasspath.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -36,6 +36,7 @@
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import jdk.test.lib.cds.CDSTestUtils;
import jdk.test.lib.process.OutputAnalyzer;

public class AppendClasspath {
Expand All @@ -54,11 +55,11 @@ public static void main(String[] args) throws Exception {
.assertNormalExit();

// PASS: 2) runtime has an non-existing jar in the -cp
String classDir = System.getProperty("test.classes");
String outDir = CDSTestUtils.getOutputDir();
String newFile = "non-exist.jar";
String nonExistPath = classDir + File.separator + newFile;
String nonExistPath = outDir + File.separator + newFile;
String classPath = appJar + File.pathSeparator + nonExistPath;
File nonExistJar = new File(classDir, newFile);
File nonExistJar = new File(outDir, newFile);
if (nonExistJar.exists()) {
nonExistJar.delete();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public void testBootClassPathMismatchTwoJars() throws Exception {
}

private static void copyHelloToNewDir() throws Exception {
String classDir = System.getProperty("test.classes");
String classDir = CDSTestUtils.getOutputDir();
String dstDir = classDir + File.separator + "newdir";
try {
Files.createDirectory(Paths.get(dstDir));
Expand Down
7 changes: 4 additions & 3 deletions test/hotspot/jtreg/runtime/cds/appcds/ClassPathAttr.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -30,6 +30,7 @@
* @run driver/timeout=240 ClassPathAttr
*/

import jdk.test.lib.cds.CDSTestUtils;
import jdk.test.lib.process.OutputAnalyzer;
import java.io.File;
import java.nio.file.Files;
Expand Down Expand Up @@ -101,7 +102,7 @@ static void testNonExistentJars() throws Exception {
buildCpAttr("cpattr6", "cpattr6.mf", "CpAttr6", "CpAttr6");

String cp = TestCommon.getTestJar("cpattr6.jar");
String nonExistPath = System.getProperty("test.classes") + File.separator + "cpattrX.jar";
String nonExistPath = CDSTestUtils.getOutputDir() + File.separator + "cpattrX.jar";
(new File(nonExistPath)).delete();

TestCommon.testDump(cp, TestCommon.list("CpAttr6"),
Expand Down Expand Up @@ -129,7 +130,7 @@ static void testNonExistentJars() throws Exception {
}

private static void buildCpAttr(String jarName, String manifest, String enclosingClassName, String ...testClassNames) throws Exception {
String jarClassesDir = System.getProperty("test.classes") + File.separator + jarName + "_classes";
String jarClassesDir = CDSTestUtils.getOutputDir() + File.separator + jarName + "_classes";
try { Files.createDirectory(Paths.get(jarClassesDir)); } catch (FileAlreadyExistsException e) { }

JarBuilder.compile(jarClassesDir, System.getProperty("test.src") + File.separator +
Expand Down
15 changes: 8 additions & 7 deletions test/hotspot/jtreg/runtime/cds/appcds/JarBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
*/

import jdk.test.lib.JDKToolFinder;
import jdk.test.lib.cds.CDSTestUtils;
import jdk.test.lib.compiler.CompilerUtils;
import jdk.test.lib.process.OutputAnalyzer;
import jdk.test.lib.process.ProcessTools;
Expand All @@ -48,7 +49,7 @@ public class JarBuilder {
.orElseThrow(() -> new RuntimeException("ToolProvider for jar not found"));

public static String getJarFilePath(String jarName) {
return classDir + File.separator + jarName + ".jar";
return CDSTestUtils.getOutputDir() + File.separator + jarName + ".jar";
}

// jar all files under dir, with manifest file man, with an optional versionArgs
Expand All @@ -59,15 +60,16 @@ public static String getJarFilePath(String jarName) {
// -C <path to the base classes> .\
// --release 9 -C <path to the versioned classes> .
// the last line begins with "--release" corresponds to the optional versionArgs.
public static void build(String jarName, File dir, String man, String ...versionArgs)
public static String build(String jarName, File dir, String man, String ...versionArgs)
throws Exception {
ArrayList<String> args = new ArrayList<String>();
if (man != null) {
args.add("cfm");
} else {
args.add("cf");
}
args.add(classDir + File.separator + jarName + ".jar");
String jarFile = getJarFilePath(jarName);
args.add(jarFile);
if (man != null) {
args.add(man);
}
Expand All @@ -78,6 +80,7 @@ public static void build(String jarName, File dir, String man, String ...version
args.add(verArg);
}
createJar(args);
return jarFile;
}

public static String build(String jarName, String ...classNames)
Expand Down Expand Up @@ -259,8 +262,6 @@ public static void compileModule(Path src,
public static void signJar() throws Exception {
String keyTool = JDKToolFinder.getJDKTool("keytool");
String jarSigner = JDKToolFinder.getJDKTool("jarsigner");
String classDir = System.getProperty("test.classes");
String FS = File.separator;

executeProcess(keyTool,
"-genkey", "-keystore", "./keystore", "-alias", "mykey",
Expand All @@ -270,8 +271,8 @@ public static void signJar() throws Exception {

executeProcess(jarSigner,
"-keystore", "./keystore", "-storepass", "abc123", "-keypass",
"abc123", "-signedjar", classDir + FS + "signed_hello.jar",
classDir + FS + "hello.jar", "mykey")
"abc123", "-signedjar", getJarFilePath("signed_hello"),
getJarFilePath("hello"), "mykey")
.shouldHaveExitValue(0);
}

Expand Down
6 changes: 3 additions & 3 deletions test/hotspot/jtreg/runtime/cds/appcds/LongClassListPath.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -51,14 +51,14 @@ public static void main(String[] args) throws Exception {

// Create a directory with long path and copy the classlist file to
// the directory.
Path classDir = Paths.get(System.getProperty("test.classes"));
Path classDir = Paths.get(CDSTestUtils.getOutputDir());
Path destDir = classDir;
int subDirLen = MAX_PATH - classDir.toString().length() - 2;
if (subDirLen > 0) {
char[] chars = new char[subDirLen];
Arrays.fill(chars, 'x');
String subPath = new String(chars);
destDir = Paths.get(System.getProperty("test.classes"), subPath);
destDir = Paths.get(CDSTestUtils.getOutputDir(), subPath);
}
File longDir = destDir.toFile();
longDir.mkdir();
Expand Down
9 changes: 5 additions & 4 deletions test/hotspot/jtreg/runtime/cds/appcds/MoveJDKTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import jdk.test.lib.cds.CDSTestUtils;
import jdk.test.lib.process.OutputAnalyzer;

public class MoveJDKTest {
Expand Down Expand Up @@ -178,12 +179,12 @@ static ProcessBuilder makeBuilder(String... args) throws Exception {
}

private static String copyFakeModulesFromHelloJar() throws Exception {
String classDir = System.getProperty("test.classes");
String outDir = CDSTestUtils.getOutputDir();
String newFile = "hello.modules";
String path = classDir + File.separator + newFile;
String path = outDir + File.separator + newFile;

Files.copy(Paths.get(classDir, "hello.jar"),
Paths.get(classDir, newFile),
Files.copy(Paths.get(outDir, "hello.jar"),
Paths.get(outDir, newFile),
StandardCopyOption.REPLACE_EXISTING);
return path;
}
Expand Down
5 changes: 3 additions & 2 deletions test/hotspot/jtreg/runtime/cds/appcds/MultiReleaseJars.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -34,6 +34,7 @@
import java.io.FileOutputStream;
import java.io.PrintStream;
import java.io.IOException;
import jdk.test.lib.cds.CDSTestUtils;
import jdk.test.lib.process.OutputAnalyzer;

public class MultiReleaseJars {
Expand Down Expand Up @@ -90,7 +91,7 @@ static void writeFile(File file, String... contents) throws Exception {
* META-INF/versions/<major-version>/version/Version.class
*/
static void createClassFilesAndJar() throws Exception {
String tempDir = System.getProperty("test.classes");
String tempDir = CDSTestUtils.getOutputDir();
File baseDir = new File(tempDir + File.separator + "base");
File vDir = new File(tempDir + File.separator + MAJOR_VERSION_STRING);

Expand Down
11 changes: 6 additions & 5 deletions test/hotspot/jtreg/runtime/cds/appcds/NonExistClasspath.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -36,6 +36,7 @@
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import jdk.test.lib.cds.CDSTestUtils;
import jdk.test.lib.process.OutputAnalyzer;

public class NonExistClasspath {
Expand All @@ -46,9 +47,9 @@ public static void main(String[] args) throws Exception {
}

static void doTest(String appJar, boolean bootcp) throws Exception {
String classDir = System.getProperty("test.classes");
String outDir = CDSTestUtils.getOutputDir();
String newFile = "non-exist.jar";
String nonExistPath = classDir + File.separator + newFile;
String nonExistPath = outDir + File.separator + newFile;
final String errorMessage1 = "Unable to use shared archive";
final String errorMessage2 = "shared class paths mismatch";
final String errorMessage3 = (bootcp ? "BOOT" : "APP") + " classpath mismatch";
Expand Down Expand Up @@ -90,8 +91,8 @@ static void doTest(String appJar, boolean bootcp) throws Exception {
.assertNormalExit();

// Now make nonExistPath exist. CDS will fail to load.
Files.copy(Paths.get(classDir, "hello.jar"),
Paths.get(classDir, newFile),
Files.copy(Paths.get(outDir, "hello.jar"),
Paths.get(outDir, newFile),
StandardCopyOption.REPLACE_EXISTING);

TestCommon.run(make_args(bootcp,
Expand Down
8 changes: 3 additions & 5 deletions test/hotspot/jtreg/runtime/cds/appcds/OldClassTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -45,10 +45,8 @@ public class OldClassTest implements Opcodes {

public static void main(String[] args) throws Exception {
File jarSrcFile = new File(JarBuilder.getOrCreateHelloJar());

File dir = new File(System.getProperty("test.classes", "."));
File jarFile = new File(dir, "OldClassTest_old.jar");
String jar = jarFile.getPath();
String jar = JarBuilder.getJarFilePath("OldClassTest_old");
File jarFile = new File(jar);

if (!jarFile.exists() || jarFile.lastModified() < jarSrcFile.lastModified()) {
createTestJarFile(jarSrcFile, jarFile);
Expand Down
9 changes: 4 additions & 5 deletions test/hotspot/jtreg/runtime/cds/appcds/TestCommon.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -321,12 +321,11 @@ private static void patchJarForDynamicDump(String cp) throws Exception {
firstJar = firstJar.substring(0, n);
}
String classDir = System.getProperty("test.classes");
String expected1 = classDir + File.separator;
String expected2 = System.getProperty("user.dir") + File.separator;
String expected = getOutputDir() + File.separator;

if (!firstJar.startsWith(expected1) && !firstJar.startsWith(expected2)) {
if (!firstJar.startsWith(expected)) {
throw new RuntimeException("FIXME: jar file not at a supported location ('"
+ expected1 + "', or '" + expected2 + "'): " + firstJar);
+ expected + "'): " + firstJar);
}

String replaceJar = firstJar + ".tmp";
Expand Down
10 changes: 4 additions & 6 deletions test/hotspot/jtreg/runtime/cds/appcds/VerifierTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -62,15 +62,13 @@ public static void main(String[] args) throws Exception {
String jarName_hi = "hi" + "_" + subCaseId;


JarBuilder.build(jarName_verifier_test_tmp, "VerifierTest0", "VerifierTestA",
File jarSrcFile = new File(JarBuilder.build(jarName_verifier_test_tmp, "VerifierTest0", "VerifierTestA",
"VerifierTestB", "VerifierTestC", "VerifierTestD", "VerifierTestE",
"UnverifiableBase", "UnverifiableIntf", "UnverifiableIntfSub");
"UnverifiableBase", "UnverifiableIntf", "UnverifiableIntfSub"));
JarBuilder.build(jarName_greet, "Greet");
JarBuilder.build(jarName_hi, "Hi", "Hi$MyClass");

File dir = new File(System.getProperty("test.classes", "."));
File jarSrcFile = new File(dir, jarName_verifier_test_tmp + ".jar");
File jarFile = new File(dir, jarName_verifier_test + ".jar");
File jarFile = new File(JarBuilder.getJarFilePath(jarName_verifier_test));
String jar = jarFile.getPath();

if (!jarFile.exists() || jarFile.lastModified() < jarSrcFile.lastModified()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,8 @@
*/

import org.testng.annotations.Test;

import java.io.File;

import jtreg.SkippedException;

import sun.hotspot.gc.GC;

@Test
Expand All @@ -58,8 +55,7 @@ public void testMain() throws Exception {

static void doTest() throws Exception {
String topArchiveName = getNewArchiveName();
JarBuilder.build("streamapp", new File(classDir), null);
String appJar = classDir + File.separator + "streamapp.jar";
String appJar = JarBuilder.build("streamapp", new File(classDir), null);

String[] classPaths = javaClassPath.split(File.pathSeparator);
String testngJar = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ public static void main(String[] args) throws Exception {

static void testImpl() throws Exception {
String topArchiveName = getNewArchiveName();
JarBuilder.build("stream", new File(classDir), null);
String appJar = classDir + File.separator + "stream.jar";
String appJar = JarBuilder.build("stream", new File(classDir), null);

dumpAndRun(topArchiveName, "-Xlog:cds,cds+dynamic=debug,class+load=trace",
"-cp", appJar, mainClass);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
*/

import java.io.File;
import jdk.test.lib.cds.CDSTestUtils;
import jdk.test.lib.process.OutputAnalyzer;

public class HelloDynamicCustom extends DynamicArchiveTestBase {
private static final String ARCHIVE_NAME =
System.getProperty("test.classes") + File.separator + "HelloDynamicCustom-top.jsa";
private static final String ARCHIVE_NAME = CDSTestUtils.getOutputFileName("top.jsa");

public static void main(String[] args) throws Exception {
runTest(HelloDynamicCustom::testDefaultBase);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
*/

import java.io.File;
import jdk.test.lib.cds.CDSTestUtils;

public class HelloDynamicCustomUnload extends DynamicArchiveTestBase {
private static final String ARCHIVE_NAME =
System.getProperty("test.classes") + File.separator + "HelloDynamicCustomUnload.jsa";
private static final String ARCHIVE_NAME = CDSTestUtils.getOutputFileName("top.jsa");

public static void main(String[] args) throws Exception {
runTest(HelloDynamicCustomUnload::testDefaultBase);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
*/

import java.io.File;
import jdk.test.lib.cds.CDSTestUtils;
import jdk.test.lib.process.OutputAnalyzer;
import jdk.test.lib.process.ProcessTools;

public class LambdaForClassInBaseArchive extends DynamicArchiveTestBase {
static final String classList = System.getProperty("test.classes") +
File.separator + "LambdaForClassInBaseArchive.list";
static final String classList = CDSTestUtils.getOutputFileName("classlist");
static final String appClass = "SimpleApp";

public static void main(String[] args) throws Exception {
Expand Down
Loading

0 comments on commit b4c1769

Please sign in to comment.