Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/net/URLConnection/6212146/TestDriver.java
41153 views
1
/*
2
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/**
25
* @test
26
* @bug 6212146
27
* @summary URLConnection.connect() fails on JAR Entry it creates
28
* file handler leak
29
* @library /test/lib
30
* @build jdk.test.lib.Utils
31
* jdk.test.lib.Asserts
32
* jdk.test.lib.JDKToolFinder
33
* jdk.test.lib.JDKToolLauncher
34
* jdk.test.lib.Platform
35
* jdk.test.lib.process.*
36
* Test
37
* @run main/othervm TestDriver
38
*/
39
40
import jdk.test.lib.JDKToolFinder;
41
import jdk.test.lib.process.ProcessTools;
42
43
import java.io.IOException;
44
import java.nio.file.Files;
45
import java.nio.file.Path;
46
import java.nio.file.Paths;
47
48
import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
49
50
public class TestDriver {
51
private static final String BASE_DIR = System.getProperty("user.dir")
52
+ "/jars/";
53
private static final String ARCHIVE_NAME = "test.jar";
54
private static final String CMD_ULIMIT = "ulimit -n 300;";
55
56
public static void main(String[] args)
57
throws Throwable {
58
setup(BASE_DIR);
59
String testCMD = CMD_ULIMIT + JDKToolFinder.getTestJDKTool("java")
60
+ " Test " + BASE_DIR + " " + ARCHIVE_NAME;
61
boolean isWindows = System.getProperty("os.name").startsWith("Windows");
62
if (isWindows) {
63
testCMD = testCMD.replace("\\", "/");
64
}
65
ProcessTools.executeCommand("sh", "-c", testCMD)
66
.outputTo(System.out)
67
.errorTo(System.err)
68
.shouldHaveExitValue(0);
69
}
70
71
private static void setup(String baseDir) throws IOException {
72
Path testJar = Paths.get(System.getProperty("test.src"), ARCHIVE_NAME);
73
Path targetDir = Paths.get(baseDir);
74
Files.createDirectories(targetDir);
75
Files.copy(testJar, targetDir.resolve(ARCHIVE_NAME), REPLACE_EXISTING);
76
}
77
}
78
79