Skip to content

Commit 472b935

Browse files
SendaoYanPavel Rappo
SendaoYan
authored and
Pavel Rappo
committedJun 18, 2024
8334332: TestIOException.java fails if run by root
Reviewed-by: prappo
1 parent 614b99a commit 472b935

File tree

1 file changed

+19
-41
lines changed

1 file changed

+19
-41
lines changed
 

‎test/langtools/jdk/javadoc/doclet/testIOException/TestIOException.java

+19-41
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, 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
@@ -23,9 +23,9 @@
2323

2424
/*
2525
* @test
26-
* @bug 8164130
26+
* @bug 8164130 8334332
2727
* @summary test IOException handling
28-
* @library ../../lib
28+
* @library ../../lib /test/lib
2929
* @modules jdk.javadoc/jdk.javadoc.internal.tool
3030
* @build javadoc.tester.*
3131
* @run main TestIOException
@@ -39,6 +39,7 @@
3939
import java.util.Map;
4040

4141
import javadoc.tester.JavadocTester;
42+
import jtreg.SkippedException;
4243

4344
/**
4445
* Tests IO Exception handling.
@@ -61,16 +62,13 @@ public static void main(String... args) throws Exception {
6162
public void testReadOnlyDirectory() {
6263
File outDir = new File("out1");
6364
if (!outDir.mkdir()) {
64-
throw error(outDir, "Cannot create directory");
65+
throw skip(outDir, "Cannot create directory");
6566
}
6667
if (!outDir.setReadOnly()) {
67-
if (skip(outDir)) {
68-
return;
69-
}
70-
throw error(outDir, "could not set directory read-only");
68+
throw skip(outDir, "could not set directory read-only");
7169
}
7270
if (outDir.canWrite()) {
73-
throw error(outDir, "directory is writable");
71+
throw skip(outDir, "directory is writable");
7472
}
7573

7674
try {
@@ -93,15 +91,15 @@ public void testReadOnlyDirectory() {
9391
public void testReadOnlyFile() throws Exception {
9492
File outDir = new File("out2");
9593
if (!outDir.mkdir()) {
96-
throw error(outDir, "Cannot create directory");
94+
throw skip(outDir, "Cannot create directory");
9795
}
9896
File index = new File(outDir, "index.html");
9997
try (FileWriter fw = new FileWriter(index)) { }
10098
if (!index.setReadOnly()) {
101-
throw error(index, "could not set index read-only");
99+
throw skip(index, "could not set index read-only");
102100
}
103101
if (index.canWrite()) {
104-
throw error(index, "index is writable");
102+
throw skip(index, "index is writable");
105103
}
106104

107105
try {
@@ -139,16 +137,13 @@ public void testReadOnlySubdirectory() throws Exception {
139137
File outDir = new File("out3");
140138
File pkgOutDir = new File(outDir, "p");
141139
if (!pkgOutDir.mkdirs()) {
142-
throw error(pkgOutDir, "Cannot create directory");
140+
throw skip(pkgOutDir, "Cannot create directory");
143141
}
144142
if (!pkgOutDir.setReadOnly()) {
145-
if (skip(pkgOutDir)) {
146-
return;
147-
}
148-
throw error(pkgOutDir, "could not set directory read-only");
143+
throw skip(pkgOutDir, "could not set directory read-only");
149144
}
150145
if (pkgOutDir.canWrite()) {
151-
throw error(pkgOutDir, "directory is writable");
146+
throw skip(pkgOutDir, "directory is writable");
152147
}
153148

154149
// run javadoc and check results
@@ -192,16 +187,13 @@ public void testReadOnlyDocFilesDir() throws Exception {
192187
File pkgOutDir = new File(outDir, "p");
193188
File docFilesOutDir = new File(pkgOutDir, "doc-files");
194189
if (!docFilesOutDir.mkdirs()) {
195-
throw error(docFilesOutDir, "Cannot create directory");
190+
throw skip(docFilesOutDir, "Cannot create directory");
196191
}
197192
if (!docFilesOutDir.setReadOnly()) {
198-
if (skip(docFilesOutDir)) {
199-
return;
200-
}
201-
throw error(docFilesOutDir, "could not set directory read-only");
193+
throw skip(docFilesOutDir, "could not set directory read-only");
202194
}
203195
if (docFilesOutDir.canWrite()) {
204-
throw error(docFilesOutDir, "directory is writable");
196+
throw skip(docFilesOutDir, "directory is writable");
205197
}
206198

207199
try {
@@ -219,10 +211,11 @@ public void testReadOnlyDocFilesDir() throws Exception {
219211
}
220212
}
221213

222-
private Error error(File f, String message) {
214+
private Error skip(File f, String message) {
215+
out.print(System.getProperty("user.name"));
223216
out.println(f + ": " + message);
224217
showAllAttributes(f.toPath());
225-
throw new Error(f + ": " + message);
218+
throw new SkippedException(f + ": " + message);
226219
}
227220

228221
private void showAllAttributes(Path p) {
@@ -242,20 +235,5 @@ private void showAttributes(Path p, String attributes) {
242235
out.println("Error accessing attributes " + attributes + ": " + t);
243236
}
244237
}
245-
246-
private boolean skip(File dir) {
247-
if (isWindows()) {
248-
showAllAttributes(dir.toPath());
249-
out.println("Windows: cannot set directory read only:" + dir);
250-
out.println("TEST CASE SKIPPED");
251-
return true;
252-
} else {
253-
return false;
254-
}
255-
}
256-
257-
private boolean isWindows() {
258-
return System.getProperty("os.name").toLowerCase(Locale.US).startsWith("windows");
259-
}
260238
}
261239

0 commit comments

Comments
 (0)
Please sign in to comment.