|
| 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 | +} |
0 commit comments