Skip to content

Commit dda0c6c

Browse files
Ivan Sipkaiignatev
Ivan Sipka
authored andcommittedJul 8, 2020
8211974: move test/jdk/lib/testlibrary/java/util/jar/*.java to top-level library or a local library
Reviewed-by: rriggs, bchristi, lancea, iignatyev
1 parent e5c43ab commit dda0c6c

File tree

12 files changed

+61
-34
lines changed

12 files changed

+61
-34
lines changed
 

‎test/jdk/java/net/URL/JarHandlerPkgPrefix/JarHandlerPkgPrefix.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -29,11 +29,13 @@
2929
import java.nio.file.Path;
3030
import java.nio.file.Paths;
3131

32+
import jdk.test.lib.util.JarBuilder;
3233
/*
3334
* @test
3435
* @bug 8174151
3536
* @summary Test for java.protocol.handler.pkgs with jar protocol handler
36-
* @library /lib/testlibrary/java/util/jar
37+
* @library /test/lib/
38+
* @build jdk.test.lib.util.JarBuilder
3739
* @compile handlers/jar/Handler.java
3840
* @run main/othervm -Djava.protocol.handler.pkgs=handlers JarHandlerPkgPrefix
3941
*/
@@ -62,4 +64,5 @@ public static void main(String[] args) throws Exception {
6264
Files.delete(jarPath);
6365
}
6466
}
65-
}
67+
}
68+

‎test/jdk/java/util/jar/JarFile/JarBacktickManifest.java

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -21,14 +21,13 @@
2121
* questions.
2222
*/
2323

24-
/**
24+
/*
2525
* @test
2626
* @bug 8186334
27-
* @library /lib/testlibrary/java/util/jar
28-
* @build JarBuilder
27+
* @summary Make sure scanning manifest doesn't throw AIOOBE on certain strings containing backticks.
28+
* @library /test/lib/
29+
* @build jdk.test.lib.util.JarBuilder
2930
* @run testng JarBacktickManifest
30-
* @summary Make sure scanning manifest doesn't throw AIOOBE on certain strings
31-
* containing backticks.
3231
*/
3332

3433
import java.io.File;
@@ -41,6 +40,8 @@
4140
import org.testng.annotations.BeforeClass;
4241
import org.testng.annotations.Test;
4342

43+
import jdk.test.lib.util.JarBuilder;
44+
4445
public class JarBacktickManifest {
4546

4647
public static final String VERIFY_MANIFEST_JAR = "verifyManifest.jar";

‎test/jdk/java/util/jar/JarFile/mrjar/MultiReleaseJarAPI.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -28,7 +28,9 @@
2828
* support multi-release jar files
2929
* @library /lib/testlibrary/java/util/jar /test/lib
3030
* @build jdk.test.lib.RandomFactory
31-
* Compiler JarBuilder CreateMultiReleaseTestJars
31+
* CreateMultiReleaseTestJars
32+
* jdk.test.lib.compiler.Compiler
33+
* jdk.test.lib.util.JarBuilder
3234
* @run testng MultiReleaseJarAPI
3335
*/
3436

‎test/jdk/java/util/jar/JarFile/mrjar/MultiReleaseJarHttpProperties.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -29,7 +29,10 @@
2929
* @modules jdk.jartool
3030
* jdk.compiler
3131
* jdk.httpserver
32-
* @build Compiler JarBuilder CreateMultiReleaseTestJars SimpleHttpServer
32+
* @build CreateMultiReleaseTestJars
33+
* SimpleHttpServer
34+
* jdk.test.lib.compiler.Compiler
35+
* jdk.test.lib.util.JarBuilder
3336
* @run testng MultiReleaseJarHttpProperties
3437
* @run testng/othervm -Djdk.util.jar.version=0 MultiReleaseJarHttpProperties
3538
* @run testng/othervm -Djdk.util.jar.version=8 MultiReleaseJarHttpProperties

‎test/jdk/java/util/jar/JarFile/mrjar/MultiReleaseJarProperties.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,8 +25,10 @@
2525
* @test
2626
* @bug 8132734 8144062 8194070
2727
* @summary Test the System properties for JarFile that support multi-release jar files
28-
* @library /lib/testlibrary/java/util/jar
29-
* @build Compiler JarBuilder CreateMultiReleaseTestJars
28+
* @library /lib/testlibrary/java/util/jar /test/lib/
29+
* @build CreateMultiReleaseTestJars
30+
* jdk.test.lib.compiler.Compiler
31+
* jdk.test.lib.util.JarBuilder
3032
* @run testng MultiReleaseJarProperties
3133
* @run testng/othervm -Djdk.util.jar.version=0 MultiReleaseJarProperties
3234
* @run testng/othervm -Djdk.util.jar.version=8 MultiReleaseJarProperties

‎test/jdk/java/util/jar/JarFile/mrjar/MultiReleaseJarSecurity.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,8 +25,10 @@
2525
* @test
2626
* @bug 8132734 8144062
2727
* @summary Test potential security related issues
28-
* @library /lib/testlibrary/java/util/jar
29-
* @build Compiler JarBuilder CreateMultiReleaseTestJars
28+
* @library /lib/testlibrary/java/util/jar /test/lib/
29+
* @build CreateMultiReleaseTestJars
30+
* jdk.test.lib.compiler.Compiler
31+
* jdk.test.lib.util.JarBuilder
3032
* @run testng MultiReleaseJarSecurity
3133
*/
3234

‎test/jdk/jdk/nio/zipfs/jarfs/JFSTester.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,10 +25,11 @@
2525
* @test
2626
* @bug 8164389 8222440
2727
* @summary walk entries in a multi-release jar file via jdk.zipfs
28-
* @library /lib/testlibrary/java/util/jar
2928
* @modules jdk.jartool
3029
* jdk.zipfs
31-
* @build Compiler JarBuilder
30+
* @library /test/lib/
31+
* @build jdk.test.lib.util.JarBuilder
32+
* jdk.test.lib.compiler.Compiler
3233
* @run testng JFSTester
3334
*/
3435

@@ -49,6 +50,8 @@
4950
import java.util.Set;
5051
import java.util.stream.Collectors;
5152

53+
import jdk.test.lib.util.JarBuilder;
54+
5255
public class JFSTester {
5356
private URI jarURI;
5457

‎test/jdk/jdk/nio/zipfs/jarfs/MultiReleaseJarTest.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,11 +25,13 @@
2525
* @test
2626
* @bug 8144355 8144062 8176709 8194070 8193802 8231093
2727
* @summary Test aliasing additions to ZipFileSystem for multi-release jar files
28-
* @library /lib/testlibrary/java/util/jar
28+
* @library /lib/testlibrary/java/util/jar /test/lib/
2929
* @modules jdk.compiler
3030
* jdk.jartool
3131
* jdk.zipfs
32-
* @build Compiler JarBuilder CreateMultiReleaseTestJars
32+
* @build CreateMultiReleaseTestJars
33+
* jdk.test.lib.util.JarBuilder
34+
* jdk.test.lib.compiler.Compiler
3335
* @run testng MultiReleaseJarTest
3436
*/
3537

@@ -47,6 +49,7 @@
4749

4850
import org.testng.Assert;
4951
import org.testng.annotations.*;
52+
import jdk.test.lib.util.JarBuilder;
5053

5154
public class MultiReleaseJarTest {
5255
final private int MAJOR_VERSION = Runtime.version().feature();

‎test/jdk/lib/testlibrary/java/util/jar/CreateMultiReleaseTestJars.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -37,6 +37,9 @@
3737
import java.util.zip.ZipFile;
3838
import jdk.security.jarsigner.JarSigner;
3939

40+
import jdk.test.lib.util.JarBuilder;
41+
import jdk.test.lib.compiler.Compiler;
42+
4043
public class CreateMultiReleaseTestJars {
4144
final private String main =
4245
"package version;\n\n"

‎test/jdk/sun/net/www/protocol/jar/MultiReleaseJarURLConnection.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -29,7 +29,10 @@
2929
* @modules jdk.compiler
3030
* jdk.httpserver
3131
* jdk.jartool
32-
* @build Compiler JarBuilder CreateMultiReleaseTestJars SimpleHttpServer
32+
* @build CreateMultiReleaseTestJars
33+
* SimpleHttpServer
34+
* jdk.test.lib.util.JarBuilder
35+
* jdk.test.lib.compiler.Compiler
3336
* @run testng MultiReleaseJarURLConnection
3437
*/
3538

‎test/jdk/lib/testlibrary/java/util/jar/Compiler.java ‎test/lib/jdk/test/lib/compiler/Compiler.java

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -20,6 +20,7 @@
2020
* or visit www.oracle.com if you need additional information or have any
2121
* questions.
2222
*/
23+
package jdk.test.lib.compiler;
2324

2425
import javax.tools.*;
2526
import java.io.ByteArrayOutputStream;
@@ -31,15 +32,15 @@
3132
import java.util.Map;
3233
import java.util.stream.Collectors;
3334

34-
class Compiler {
35+
public class Compiler {
3536
final private Map<String,String> input;
3637
private List<String> options;
3738

38-
Compiler(Map<String,String> input) {
39+
public Compiler(Map<String,String> input) {
3940
this.input = input;
4041
}
4142

42-
Compiler setRelease(int release) {
43+
public Compiler setRelease(int release) {
4344
// Setting the -release option does not work for some reason
4445
// so do it the old fashioned way
4546
// options = Arrays.asList("-release", String.valueOf(release));
@@ -48,7 +49,7 @@ Compiler setRelease(int release) {
4849
return this;
4950
}
5051

51-
Map<String,byte[]> compile() {
52+
public Map<String,byte[]> compile() {
5253
List<SourceFileObject> cunits = createCompilationUnits();
5354
Map<String,ClassFileObject> cfos = createClassFileObjects();
5455
JavaCompiler jc = ToolProvider.getSystemJavaCompiler();

‎test/jdk/lib/testlibrary/java/util/jar/JarBuilder.java ‎test/lib/jdk/test/lib/util/JarBuilder.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020 Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -20,6 +20,7 @@
2020
* or visit www.oracle.com if you need additional information or have any
2121
* questions.
2222
*/
23+
package jdk.test.lib.util;
2324

2425
import java.io.IOException;
2526
import java.io.OutputStream;

0 commit comments

Comments
 (0)
Please sign in to comment.