|
| 1 | +/* |
| 2 | + * Copyright (c) 2022, 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 | +import org.testng.annotations.BeforeClass; |
| 25 | +import org.testng.annotations.BeforeMethod; |
| 26 | +import org.testng.annotations.DataProvider; |
| 27 | +import org.testng.annotations.Test; |
| 28 | + |
| 29 | +import java.io.IOException; |
| 30 | +import java.net.URI; |
| 31 | +import java.nio.file.*; |
| 32 | +import java.nio.file.attribute.BasicFileAttributes; |
| 33 | +import java.util.ArrayList; |
| 34 | +import java.util.HashMap; |
| 35 | +import java.util.List; |
| 36 | +import java.util.Map; |
| 37 | + |
| 38 | +import static org.testng.AssertJUnit.assertEquals; |
| 39 | + |
| 40 | +/** |
| 41 | + * @test |
| 42 | + * @summary Verifies that a FileSystemProvider's implementation of the exists |
| 43 | + * and readAttributesIfExists methods are invoked |
| 44 | + * @build TestDelegation TestProvider |
| 45 | + * @run testng/othervm TestDelegation |
| 46 | + */ |
| 47 | +public class TestDelegation { |
| 48 | + |
| 49 | + // Non-existent Path to be used by the test |
| 50 | + private Path nonExistentFile; |
| 51 | + // Path to Temp directory used by the test |
| 52 | + private Path tempDirectory; |
| 53 | + // Valid file Path used by the test |
| 54 | + private Path fileThatExists; |
| 55 | + // The FileSystemProvider used by the test |
| 56 | + private MyProvider myProvider; |
| 57 | + |
| 58 | + |
| 59 | + /** |
| 60 | + * Create the FileSystemProvider, the FileSystem and |
| 61 | + * Path's used by the test. |
| 62 | + * |
| 63 | + * @throws IOException if an error occurs |
| 64 | + */ |
| 65 | + @BeforeClass |
| 66 | + public void setup() throws IOException { |
| 67 | + myProvider = new MyProvider(); |
| 68 | + FileSystem fs = myProvider.getFileSystem(URI.create("/")); |
| 69 | + // Path to Current Working Directory |
| 70 | + Path cwd = fs.getPath("."); |
| 71 | + tempDirectory = Files.createTempDirectory(cwd, "tmp"); |
| 72 | + fileThatExists = Files.createFile(tempDirectory.resolve("file")); |
| 73 | + nonExistentFile = tempDirectory.resolve("doesNotExist"); |
| 74 | + } |
| 75 | + |
| 76 | + /** |
| 77 | + * DataProvider that is used to test Files::exists. The DataProvider's |
| 78 | + * elements are: |
| 79 | + * <UL> |
| 80 | + * <li>Path to validate</li> |
| 81 | + * <li>Does the Path Exist</li> |
| 82 | + * </UL> |
| 83 | + * @return The test parameter data |
| 84 | + */ |
| 85 | + @DataProvider |
| 86 | + private Object[][] testExists() { |
| 87 | + return new Object[][]{ |
| 88 | + {tempDirectory, true}, |
| 89 | + {fileThatExists, true}, |
| 90 | + {nonExistentFile, false} |
| 91 | + }; |
| 92 | + } |
| 93 | + |
| 94 | + /** |
| 95 | + * DataProvider that is used to test Files::isDirectory. The DataProvider's |
| 96 | + * elements are: |
| 97 | + * <UL> |
| 98 | + * <li>Path to validate</li> |
| 99 | + * <li>Is the Path a Directory</li> |
| 100 | + * </UL> |
| 101 | + * @return The test parameter data |
| 102 | + */ |
| 103 | + @DataProvider |
| 104 | + private Object[][] testIsDirectory() { |
| 105 | + return new Object[][]{ |
| 106 | + {tempDirectory, true}, |
| 107 | + {fileThatExists, false}, |
| 108 | + {nonExistentFile, false} |
| 109 | + }; |
| 110 | + } |
| 111 | + /** |
| 112 | + * DataProvider that is used to test Files::isRegularFile. The DataProvider's |
| 113 | + * elements are: |
| 114 | + * <UL> |
| 115 | + * <li>Path to validate</li> |
| 116 | + * <li>Is the Path a regular file</li> |
| 117 | + * </UL> |
| 118 | + * @return The test parameter data |
| 119 | + */ |
| 120 | + @DataProvider |
| 121 | + private Object[][] testIsRegularFile() { |
| 122 | + return new Object[][]{ |
| 123 | + {tempDirectory, false}, |
| 124 | + {fileThatExists, true}, |
| 125 | + {nonExistentFile, false} |
| 126 | + }; |
| 127 | + } |
| 128 | + |
| 129 | + /** |
| 130 | + * Clear our Map prior to each test run |
| 131 | + */ |
| 132 | + @BeforeMethod |
| 133 | + public void resetParams() { |
| 134 | + myProvider.resetCalls(); |
| 135 | + } |
| 136 | + |
| 137 | + /** |
| 138 | + * Validate that Files::exists delegates to the FileSystemProvider's |
| 139 | + * implementation of exists. |
| 140 | + * |
| 141 | + * @param p the path to the file to test |
| 142 | + * @param exists does the path exist |
| 143 | + */ |
| 144 | + @Test(dataProvider = "testExists") |
| 145 | + public void testExists(Path p, boolean exists) { |
| 146 | + assertEquals(Files.exists(p), exists); |
| 147 | + // We should only have called exists once |
| 148 | + assertEquals(1, myProvider.findCall("exists").size()); |
| 149 | + assertEquals(0, myProvider.findCall("readAttributesIfExists").size()); |
| 150 | + } |
| 151 | + |
| 152 | + /** |
| 153 | + * Validate that Files::isDirectory delegates to the FileSystemProvider's |
| 154 | + * implementation readAttributesIfExists. |
| 155 | + * |
| 156 | + * @param p the path to the file to test |
| 157 | + * @param isDir is the path a directory |
| 158 | + */ |
| 159 | + @Test(dataProvider = "testIsDirectory") |
| 160 | + public void testIsDirectory(Path p, boolean isDir) { |
| 161 | + assertEquals(Files.isDirectory(p), isDir); |
| 162 | + // We should only have called readAttributesIfExists once |
| 163 | + assertEquals(0, myProvider.findCall("exists").size()); |
| 164 | + assertEquals(1, myProvider.findCall("readAttributesIfExists").size()); |
| 165 | + } |
| 166 | + |
| 167 | + /** |
| 168 | + * Validate that Files::isRegularFile delegates to the FileSystemProvider's |
| 169 | + * implementation readAttributesIfExists. |
| 170 | + * |
| 171 | + * @param p the path to the file to test |
| 172 | + * @param isFile is the path a regular file |
| 173 | + */ |
| 174 | + @Test(dataProvider = "testIsRegularFile") |
| 175 | + public void testIsRegularFile(Path p, boolean isFile) { |
| 176 | + assertEquals(Files.isRegularFile(p), isFile); |
| 177 | + // We should only have called readAttributesIfExists once |
| 178 | + assertEquals(0, myProvider.findCall("exists").size()); |
| 179 | + assertEquals(1, myProvider.findCall("readAttributesIfExists").size()); |
| 180 | + } |
| 181 | + |
| 182 | + /** |
| 183 | + * The FileSystemProvider implementation used by the test |
| 184 | + */ |
| 185 | + static class MyProvider extends TestProvider { |
| 186 | + private final Map<String, List<Path>> calls = new HashMap<>(); |
| 187 | + |
| 188 | + private MyProvider() { |
| 189 | + super(FileSystems.getDefault().provider()); |
| 190 | + } |
| 191 | + |
| 192 | + private void recordCall(String op, Path path) { |
| 193 | + calls.computeIfAbsent(op, k -> new ArrayList<>()).add(path); |
| 194 | + } |
| 195 | + |
| 196 | + List<Path> findCall(String op) { |
| 197 | + return calls.getOrDefault(op, List.of()); |
| 198 | + } |
| 199 | + |
| 200 | + void resetCalls() { |
| 201 | + calls.clear(); |
| 202 | + } |
| 203 | + |
| 204 | + @Override |
| 205 | + public boolean exists(Path path, LinkOption... options) { |
| 206 | + recordCall("exists", path); |
| 207 | + return super.exists(path, options); |
| 208 | + } |
| 209 | + |
| 210 | + @Override |
| 211 | + public <A extends BasicFileAttributes> A readAttributesIfExists(Path path, |
| 212 | + Class<A> type, |
| 213 | + LinkOption... options) |
| 214 | + throws IOException { |
| 215 | + recordCall("readAttributesIfExists", path); |
| 216 | + return super.readAttributesIfExists(path, type, options); |
| 217 | + } |
| 218 | + } |
| 219 | +} |
| 220 | + |
0 commit comments