1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
23
23
24
24
/*
25
25
* @test
26
- * @bug 8164130
26
+ * @bug 8164130 8334332
27
27
* @summary test IOException handling
28
- * @library ../../lib
28
+ * @library ../../lib /test/lib
29
29
* @modules jdk.javadoc/jdk.javadoc.internal.tool
30
30
* @build javadoc.tester.*
31
31
* @run main TestIOException
39
39
import java .util .Map ;
40
40
41
41
import javadoc .tester .JavadocTester ;
42
+ import jtreg .SkippedException ;
42
43
43
44
/**
44
45
* Tests IO Exception handling.
@@ -61,16 +62,13 @@ public static void main(String... args) throws Exception {
61
62
public void testReadOnlyDirectory () {
62
63
File outDir = new File ("out1" );
63
64
if (!outDir .mkdir ()) {
64
- throw error (outDir , "Cannot create directory" );
65
+ throw skip (outDir , "Cannot create directory" );
65
66
}
66
67
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" );
71
69
}
72
70
if (outDir .canWrite ()) {
73
- throw error (outDir , "directory is writable" );
71
+ throw skip (outDir , "directory is writable" );
74
72
}
75
73
76
74
try {
@@ -93,15 +91,15 @@ public void testReadOnlyDirectory() {
93
91
public void testReadOnlyFile () throws Exception {
94
92
File outDir = new File ("out2" );
95
93
if (!outDir .mkdir ()) {
96
- throw error (outDir , "Cannot create directory" );
94
+ throw skip (outDir , "Cannot create directory" );
97
95
}
98
96
File index = new File (outDir , "index.html" );
99
97
try (FileWriter fw = new FileWriter (index )) { }
100
98
if (!index .setReadOnly ()) {
101
- throw error (index , "could not set index read-only" );
99
+ throw skip (index , "could not set index read-only" );
102
100
}
103
101
if (index .canWrite ()) {
104
- throw error (index , "index is writable" );
102
+ throw skip (index , "index is writable" );
105
103
}
106
104
107
105
try {
@@ -139,16 +137,13 @@ public void testReadOnlySubdirectory() throws Exception {
139
137
File outDir = new File ("out3" );
140
138
File pkgOutDir = new File (outDir , "p" );
141
139
if (!pkgOutDir .mkdirs ()) {
142
- throw error (pkgOutDir , "Cannot create directory" );
140
+ throw skip (pkgOutDir , "Cannot create directory" );
143
141
}
144
142
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" );
149
144
}
150
145
if (pkgOutDir .canWrite ()) {
151
- throw error (pkgOutDir , "directory is writable" );
146
+ throw skip (pkgOutDir , "directory is writable" );
152
147
}
153
148
154
149
// run javadoc and check results
@@ -192,16 +187,13 @@ public void testReadOnlyDocFilesDir() throws Exception {
192
187
File pkgOutDir = new File (outDir , "p" );
193
188
File docFilesOutDir = new File (pkgOutDir , "doc-files" );
194
189
if (!docFilesOutDir .mkdirs ()) {
195
- throw error (docFilesOutDir , "Cannot create directory" );
190
+ throw skip (docFilesOutDir , "Cannot create directory" );
196
191
}
197
192
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" );
202
194
}
203
195
if (docFilesOutDir .canWrite ()) {
204
- throw error (docFilesOutDir , "directory is writable" );
196
+ throw skip (docFilesOutDir , "directory is writable" );
205
197
}
206
198
207
199
try {
@@ -219,10 +211,11 @@ public void testReadOnlyDocFilesDir() throws Exception {
219
211
}
220
212
}
221
213
222
- private Error error (File f , String message ) {
214
+ private Error skip (File f , String message ) {
215
+ out .print (System .getProperty ("user.name" ));
223
216
out .println (f + ": " + message );
224
217
showAllAttributes (f .toPath ());
225
- throw new Error (f + ": " + message );
218
+ throw new SkippedException (f + ": " + message );
226
219
}
227
220
228
221
private void showAllAttributes (Path p ) {
@@ -242,20 +235,5 @@ private void showAttributes(Path p, String attributes) {
242
235
out .println ("Error accessing attributes " + attributes + ": " + t );
243
236
}
244
237
}
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
- }
260
238
}
261
239
0 commit comments