Skip to content

Commit 161fdb4

Browse files
author
Lance Andersen
committedSep 21, 2021
8273935: (zipfs) Files.getFileAttributeView() throws UOE instead of returning null when view not supported
Reviewed-by: alanb, bpb, sgehwolf
1 parent 0fc47e9 commit 161fdb4

File tree

4 files changed

+108
-6
lines changed

4 files changed

+108
-6
lines changed
 

‎src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipPath.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ <V extends FileAttributeView> V getFileAttributeView(Class<V> type) {
713713
if (type == FileOwnerAttributeView.class)
714714
return (V)new ZipPosixFileAttributeView(this,true);
715715
}
716-
throw new UnsupportedOperationException("view <" + type + "> is not supported");
716+
return null;
717717
}
718718

719719
private ZipFileAttributeView getFileAttributeView(String type) {

‎test/jdk/jdk/nio/zipfs/TestPosix.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019 SAP SE. All rights reserved.
2+
* Copyright (c) 2019, 2021, SAP SE. 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
@@ -68,7 +68,7 @@
6868

6969
/**
7070
* @test
71-
* @bug 8213031
71+
* @bug 8213031 8273935
7272
* @modules jdk.zipfs
7373
* jdk.jartool
7474
* @run testng TestPosix
@@ -595,7 +595,7 @@ public void testPosixDefaults() throws IOException {
595595
assertTrue(throwsUOE(()->Files.setPosixFilePermissions(entry, UW)));
596596
assertTrue(throwsUOE(()->Files.getOwner(entry)));
597597
assertTrue(throwsUOE(()->Files.setOwner(entry, DUMMY_USER)));
598-
assertTrue(throwsUOE(()->Files.getFileAttributeView(entry, PosixFileAttributeView.class)));
598+
assertNull(Files.getFileAttributeView(entry, PosixFileAttributeView.class));
599599
}
600600

601601
// test with posix = true -> default values
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
/*
2+
* Copyright (c) 2021, 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+
package test;
25+
26+
import org.testng.annotations.AfterTest;
27+
import org.testng.annotations.BeforeTest;
28+
import org.testng.annotations.DataProvider;
29+
import org.testng.annotations.Test;
30+
import util.ZipFsBaseTest;
31+
32+
import java.io.IOException;
33+
import java.nio.file.FileSystem;
34+
import java.nio.file.FileSystems;
35+
import java.nio.file.Files;
36+
import java.nio.file.Path;
37+
import java.nio.file.attribute.PosixFileAttributeView;
38+
import java.util.Map;
39+
import java.util.zip.ZipEntry;
40+
41+
/**
42+
* @test
43+
* @bug 8273935
44+
* @summary Validate that Files.getFileAttributeView will not throw an
45+
* Exception when the attribute view PosixFileAttributeView is not available
46+
*/
47+
public class PosixAttributeViewTest extends ZipFsBaseTest {
48+
public static final String ZIP_ENTRY = "Entry-0";
49+
private static final Path ZIP_FILE = Path.of("posixTest.zip");
50+
51+
/**
52+
* Create initial Zip File
53+
* @throws IOException if an error occurs
54+
*/
55+
@BeforeTest
56+
public void setup() throws IOException {
57+
Files.deleteIfExists(ZIP_FILE);
58+
Entry entry = Entry.of(ZIP_ENTRY, ZipEntry.DEFLATED,
59+
"Tennis Anyone");
60+
zip(ZIP_FILE, Map.of("create", "true"), entry);
61+
}
62+
63+
/**
64+
* Remove Zip File used by Test
65+
* @throws IOException if an error occurs
66+
*/
67+
@AfterTest
68+
public void cleanup() throws IOException {
69+
Files.deleteIfExists(ZIP_FILE);
70+
}
71+
72+
/**
73+
* DataProvider used to specify the Map indicating whether Posix
74+
* file attributes have been enabled
75+
* @return map of the Zip FS properties to configure
76+
*/
77+
@DataProvider
78+
protected Object[][] zipfsMap() {
79+
return new Object[][]{
80+
{Map.of()},
81+
{Map.of("enablePosixFileAttributes", "true")}
82+
};
83+
}
84+
85+
/**
86+
* Verify that Files.getFileAttributeView will not throw
87+
* an Exception when the attribute view
88+
* PosixFileAttributeView is not available
89+
* @param env map of the Zip FS properties to configure
90+
* @throws Exception if an error occurs
91+
*/
92+
@Test(dataProvider = "zipfsMap")
93+
public void testPosixAttributeView(Map<String, String> env) throws Exception {
94+
try (FileSystem fs = FileSystems.newFileSystem(ZIP_FILE, env)) {
95+
Path entry = fs.getPath(ZIP_ENTRY);
96+
PosixFileAttributeView view = Files.getFileAttributeView(entry,
97+
PosixFileAttributeView.class);
98+
System.out.printf("View returned: %s, Map= %s%n", view,
99+
formatMap(env));
100+
}
101+
}
102+
}

‎test/jdk/jdk/nio/zipfs/testng/util/ZipFsBaseTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2021, 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
@@ -105,7 +105,7 @@ protected Object[][] compressionMethods() {
105105
* @param env Map to format
106106
* @return Formatted string of the Map entries
107107
*/
108-
private static String formatMap(Map<String, ?> env) {
108+
protected static String formatMap(Map<String, ?> env) {
109109
return env.entrySet().stream()
110110
.map(e -> format("(%s:%s)", e.getKey(), e.getValue()))
111111
.collect(joining(", "));

0 commit comments

Comments
 (0)
Please sign in to comment.