21
21
* questions.
22
22
*/
23
23
24
- package jdk .jpackage .tests ;
25
24
26
25
import java .io .IOException ;
27
26
import java .nio .file .Files ;
45
44
import jdk .jpackage .test .Functional .ThrowingConsumer ;
46
45
import static jdk .jpackage .test .RunnablePackageTest .Action .CREATE_AND_UNPACK ;
47
46
48
- import static jdk .jpackage .test .WindowsHelper .getTempDirectory ;
49
-
50
47
/*
51
48
* @test
52
49
* @summary jpackage basic testing
53
50
* @library /test/jdk/tools/jpackage/helpers
54
51
* @build jdk.jpackage.test.*
55
52
* @compile BasicTest.java
56
53
* @run main/othervm/timeout=720 -Xmx512m jdk.jpackage.test.Main
57
- * --jpt-run=jdk.jpackage.tests. BasicTest
54
+ * --jpt-run=BasicTest
58
55
*/
59
56
60
57
public final class BasicTest {
@@ -345,7 +342,7 @@ public void testTemp(TestTempType type) throws IOException {
345
342
// Force save of package bundle in test work directory.
346
343
.addInitializer (JPackageCommand ::setDefaultInputOutput )
347
344
.addInitializer (cmd -> {
348
- Path tempDir = getTempDirectory (cmd , tempRoot );
345
+ Path tempDir = tempRoot . resolve (cmd . packageType (). name () );
349
346
switch (type ) {
350
347
case TEMPDIR_EMPTY -> Files .createDirectories (tempDir );
351
348
case TEMPDIR_NOT_EXIST -> Files .createDirectories (tempDir .getParent ());
@@ -362,20 +359,16 @@ public void testTemp(TestTempType type) throws IOException {
362
359
if (TestTempType .TEMPDIR_NOT_EMPTY .equals (type )) {
363
360
pkgTest .setExpectedExitCode (1 ).addBundleVerifier (cmd -> {
364
361
// Check jpackage didn't use the supplied directory.
365
- Path tempDir = getTempDirectory (cmd , tempRoot );
366
- String [] tempDirContents = tempDir .toFile ().list ();
367
- TKit .assertStringListEquals (List .of ("foo.txt" ), List .of (
368
- tempDirContents ), String .format (
369
- "Check the contents of the supplied temporary directory [%s]" ,
370
- tempDir ));
362
+ Path tempDir = Path .of (cmd .getArgumentValue ("--temp" ));
363
+ TKit .assertDirectoryContent (tempDir ).match (Path .of ("foo.txt" ));
371
364
TKit .assertStringListEquals (List .of ("Hello Duke!" ),
372
- Files .readAllLines (tempDir .resolve (tempDirContents [ 0 ] )),
365
+ Files .readAllLines (tempDir .resolve ("foo.txt" )),
373
366
"Check the contents of the file in the supplied temporary directory" );
374
367
});
375
368
} else {
376
369
pkgTest .addBundleVerifier (cmd -> {
377
370
// Check jpackage used the supplied directory.
378
- Path tempDir = getTempDirectory (cmd , tempRoot );
371
+ Path tempDir = Path . of (cmd . getArgumentValue ( "--temp" ) );
379
372
TKit .assertDirectoryNotEmpty (tempDir );
380
373
});
381
374
}
0 commit comments