author | duke |
Wed, 05 Jul 2017 20:24:54 +0200 | |
changeset 29530 | bfd405c818db |
parent 28115 | 3931c251d78f |
child 30820 | 0d4717a011d3 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
28115
3931c251d78f
8061442: Update jdk/tools tests to remove check for the "jre" directory
ksrini
parents:
23010
diff
changeset
|
2 |
* Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
* |
|
5506 | 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. |
|
2 | 22 |
*/ |
23 |
||
24 |
/** |
|
25 |
* @test |
|
6308
7d860a571385
6969651: TEST_BUG: tools/jar/JarEntryTime.java failed on JDK7 when run on NFS
sherman
parents:
5506
diff
changeset
|
26 |
* @bug 4225317 6969651 |
2 | 27 |
* @summary Check extracted files have date as per those in the .jar file |
28 |
*/ |
|
29 |
||
30 |
import java.io.File; |
|
31 |
import java.io.PrintWriter; |
|
21811
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
32 |
import java.nio.file.attribute.FileTime; |
2 | 33 |
import sun.tools.jar.Main; |
34 |
||
35 |
public class JarEntryTime { |
|
21811
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
36 |
|
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
37 |
// ZipEntry's mod date has 2 seconds precision: give extra time to |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
38 |
// allow for e.g. rounding/truncation and networked/samba drives. |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
39 |
static final long PRECISION = 10000L; |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
40 |
|
2 | 41 |
static boolean cleanup(File dir) throws Throwable { |
42 |
boolean rc = true; |
|
43 |
File[] x = dir.listFiles(); |
|
44 |
if (x != null) { |
|
45 |
for (int i = 0; i < x.length; i++) { |
|
46 |
rc &= x[i].delete(); |
|
47 |
} |
|
48 |
} |
|
49 |
return rc & dir.delete(); |
|
50 |
} |
|
51 |
||
52 |
static void extractJar(File jarFile, boolean useExtractionTime) throws Throwable { |
|
53 |
String javahome = System.getProperty("java.home"); |
|
54 |
String jarcmd = javahome + File.separator + "bin" + File.separator + "jar"; |
|
55 |
String[] args; |
|
56 |
if (useExtractionTime) { |
|
57 |
args = new String[] { |
|
58 |
jarcmd, |
|
59 |
"-J-Dsun.tools.jar.useExtractionTime=true", |
|
60 |
"xf", |
|
61 |
jarFile.getName() }; |
|
62 |
} else { |
|
63 |
args = new String[] { |
|
64 |
jarcmd, |
|
65 |
"xf", |
|
66 |
jarFile.getName() }; |
|
67 |
} |
|
68 |
Process p = Runtime.getRuntime().exec(args); |
|
69 |
check(p != null && (p.waitFor() == 0)); |
|
70 |
} |
|
71 |
||
72 |
public static void realMain(String[] args) throws Throwable { |
|
73 |
||
74 |
File dirOuter = new File("outer"); |
|
75 |
File dirInner = new File(dirOuter, "inner"); |
|
76 |
File jarFile = new File("JarEntryTime.jar"); |
|
77 |
||
78 |
// Remove any leftovers from prior run |
|
79 |
cleanup(dirInner); |
|
80 |
cleanup(dirOuter); |
|
81 |
jarFile.delete(); |
|
82 |
||
83 |
/* Create a directory structure |
|
84 |
* outer/ |
|
85 |
* inner/ |
|
86 |
* foo.txt |
|
87 |
* Set the lastModified dates so that outer is created now, inner |
|
88 |
* yesterday, and foo.txt created "earlier". |
|
89 |
*/ |
|
90 |
check(dirOuter.mkdir()); |
|
91 |
check(dirInner.mkdir()); |
|
92 |
File fileInner = new File(dirInner, "foo.txt"); |
|
21811
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
93 |
try (PrintWriter pw = new PrintWriter(fileInner)) { |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
94 |
pw.println("hello, world"); |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
95 |
} |
6308
7d860a571385
6969651: TEST_BUG: tools/jar/JarEntryTime.java failed on JDK7 when run on NFS
sherman
parents:
5506
diff
changeset
|
96 |
|
7d860a571385
6969651: TEST_BUG: tools/jar/JarEntryTime.java failed on JDK7 when run on NFS
sherman
parents:
5506
diff
changeset
|
97 |
// Get the "now" from the "last-modified-time" of the last file we |
7d860a571385
6969651: TEST_BUG: tools/jar/JarEntryTime.java failed on JDK7 when run on NFS
sherman
parents:
5506
diff
changeset
|
98 |
// just created, instead of the "System.currentTimeMillis()", to |
7d860a571385
6969651: TEST_BUG: tools/jar/JarEntryTime.java failed on JDK7 when run on NFS
sherman
parents:
5506
diff
changeset
|
99 |
// workaround the possible "time difference" due to nfs. |
7d860a571385
6969651: TEST_BUG: tools/jar/JarEntryTime.java failed on JDK7 when run on NFS
sherman
parents:
5506
diff
changeset
|
100 |
final long now = fileInner.lastModified(); |
7d860a571385
6969651: TEST_BUG: tools/jar/JarEntryTime.java failed on JDK7 when run on NFS
sherman
parents:
5506
diff
changeset
|
101 |
final long earlier = now - (60L * 60L * 6L * 1000L); |
7d860a571385
6969651: TEST_BUG: tools/jar/JarEntryTime.java failed on JDK7 when run on NFS
sherman
parents:
5506
diff
changeset
|
102 |
final long yesterday = now - (60L * 60L * 24L * 1000L); |
7d860a571385
6969651: TEST_BUG: tools/jar/JarEntryTime.java failed on JDK7 when run on NFS
sherman
parents:
5506
diff
changeset
|
103 |
|
21811
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
104 |
check(dirOuter.setLastModified(now)); |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
105 |
check(dirInner.setLastModified(yesterday)); |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
106 |
check(fileInner.setLastModified(earlier)); |
2 | 107 |
|
108 |
// Make a jar file from that directory structure |
|
109 |
Main jartool = new Main(System.out, System.err, "jar"); |
|
110 |
check(jartool.run(new String[] { |
|
111 |
"cf", |
|
112 |
jarFile.getName(), dirOuter.getName() } )); |
|
113 |
check(jarFile.exists()); |
|
114 |
||
115 |
check(cleanup(dirInner)); |
|
116 |
check(cleanup(dirOuter)); |
|
117 |
||
118 |
// Extract and check that the last modified values are those specified |
|
119 |
// in the archive |
|
120 |
extractJar(jarFile, false); |
|
121 |
check(dirOuter.exists()); |
|
122 |
check(dirInner.exists()); |
|
123 |
check(fileInner.exists()); |
|
21811
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
124 |
checkFileTime(dirOuter.lastModified(), now); |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
125 |
checkFileTime(dirInner.lastModified(), yesterday); |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
126 |
checkFileTime(fileInner.lastModified(), earlier); |
2 | 127 |
|
128 |
check(cleanup(dirInner)); |
|
129 |
check(cleanup(dirOuter)); |
|
130 |
||
131 |
// Extract and check the last modified values are the current times. |
|
132 |
// See sun.tools.jar.Main |
|
133 |
extractJar(jarFile, true); |
|
134 |
check(dirOuter.exists()); |
|
135 |
check(dirInner.exists()); |
|
136 |
check(fileInner.exists()); |
|
21811
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
137 |
checkFileTime(dirOuter.lastModified(), now); |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
138 |
checkFileTime(dirInner.lastModified(), now); |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
139 |
checkFileTime(fileInner.lastModified(), now); |
2 | 140 |
|
141 |
check(cleanup(dirInner)); |
|
142 |
check(cleanup(dirOuter)); |
|
143 |
||
144 |
check(jarFile.delete()); |
|
145 |
} |
|
146 |
||
21811
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
147 |
static void checkFileTime(long now, long original) { |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
148 |
if (Math.abs(now - original) > PRECISION) { |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
149 |
System.out.format("Extracted to %s, expected to be close to %s%n", |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
150 |
FileTime.fromMillis(now), FileTime.fromMillis(original)); |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
151 |
fail(); |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
152 |
} |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
153 |
} |
4810bf82fa69
8028589: Instrument tools/jar/JarEntryTime.java to make it easier to diagnose failures
alanb
parents:
7668
diff
changeset
|
154 |
|
2 | 155 |
//--------------------- Infrastructure --------------------------- |
156 |
static volatile int passed = 0, failed = 0; |
|
157 |
static void pass() {passed++;} |
|
158 |
static void fail() {failed++; Thread.dumpStack();} |
|
159 |
static void fail(String msg) {System.out.println(msg); fail();} |
|
160 |
static void unexpected(Throwable t) {failed++; t.printStackTrace();} |
|
161 |
static void check(boolean cond) {if (cond) pass(); else fail();} |
|
162 |
static void equal(Object x, Object y) { |
|
163 |
if (x == null ? y == null : x.equals(y)) pass(); |
|
164 |
else fail(x + " not equal to " + y);} |
|
165 |
public static void main(String[] args) throws Throwable { |
|
166 |
try {realMain(args);} catch (Throwable t) {unexpected(t);} |
|
167 |
System.out.println("\nPassed = " + passed + " failed = " + failed); |
|
168 |
if (failed > 0) throw new AssertionError("Some tests failed");} |
|
169 |
} |