1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
|
/*
* Copyright (c) 2003, 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/* @test
* @bug 4842706 8024695 8361587 8362429
* @summary Test some file operations with empty path
* @run junit EmptyPath
*/
import java.io.File;
import java.io.FileFilter;
import java.io.FileInputStream;
import java.io.FilenameFilter;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.MalformedURLException;
import java.nio.file.Files;
import java.nio.file.FileStore;
import java.nio.file.Path;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.function.Function;
import java.util.stream.Collectors;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
import static org.junit.jupiter.api.Assertions.*;
public class EmptyPath {
private static final String EMPTY_STRING = "";
static File f;
static Path p;
@BeforeAll
public static void init() {
f = new File(EMPTY_STRING);
p = Path.of(EMPTY_STRING);
}
@Test
public void canExecute() {
assertTrue(f.canExecute());
}
@Test
public void canRead() {
assertTrue(f.canRead());
}
@Test
public void canWrite() {
assertTrue(f.canWrite());
}
@Test
public void compareTo() {
assertEquals(0, f.compareTo(p.toFile()));
}
@Test
public void createNewFile() {
assertThrows(IOException.class, () -> f.createNewFile());
}
@Test
public void open() throws FileNotFoundException {
assertThrows(FileNotFoundException.class,
() -> new FileInputStream(f));
}
@Test
public void delete() {
assertFalse(f.delete());
}
@Test
public void equals() {
assertTrue(f.equals(p.toFile()));
}
@Test
public void exists() {
assertTrue(f.exists());
}
@Test
public void getAbsoluteFile() {
assertEquals(p.toAbsolutePath().toFile(), f.getAbsoluteFile());
}
@Test
public void getAbsolutePath() {
System.out.println(p.toAbsolutePath().toString() + "\n" +
f.getAbsolutePath());
assertEquals(p.toAbsolutePath().toString(), f.getAbsolutePath());
}
@Test
public void getCanonicalFile() throws IOException {
assertEquals(p.toRealPath().toFile(), f.getCanonicalFile());
}
@Test
public void getCanonicalPath() throws IOException {
assertEquals(p.toRealPath().toString(), f.getCanonicalPath());
}
private void checkSpace(long expected, long actual) {
if (expected == 0) {
assertEquals(0L, actual);
} else {
assertTrue(actual > 0);
}
}
public void getFreeSpace() throws IOException {
FileStore fs = Files.getFileStore(f.toPath());
checkSpace(fs.getUnallocatedSpace(), f.getFreeSpace());
}
@Test
public void getName() {
assertEquals(p.getFileName().toString(), f.getName());
}
@Test
public void getParent() {
assertNull(f.getParent());
}
@Test
public void getParentFile() {
assertNull(f.getParentFile());
}
@Test
public void getPath() {
assertEquals(p.toString(), f.getPath());
}
public void getTotalSpace() throws IOException {
FileStore fs = Files.getFileStore(f.toPath());
checkSpace(fs.getTotalSpace(), f.getTotalSpace());
}
public void getUsableSpace() throws IOException {
FileStore fs = Files.getFileStore(f.toPath());
checkSpace(fs.getUsableSpace(), f.getUsableSpace());
}
@Test
public void isNotAbsolute() {
assertFalse(f.isAbsolute());
}
@Test
public void isAbsolute() {
assertTrue(f.getAbsoluteFile().isAbsolute());
}
@Test
public void isDirectory() {
assertTrue(f.isDirectory());
}
@Test
public void isFile() {
assertFalse(f.isFile());
}
@Test
public void isHidden() {
assertFalse(f.isHidden());
}
@Test
public void lastModified() {
assertTrue(f.lastModified() > 0);
}
@Test
public void length() throws IOException {
assertEquals(Files.size(f.toPath()), f.length());
}
@Test
public void list() throws IOException {
list(f.list());
}
@Test
public void listFilenameFilter() throws IOException {
list(f.list((FilenameFilter)null));
}
private void list(String[] files) throws IOException {
assertNotNull(files);
Set<String> ioSet = new HashSet(Arrays.asList(files));
Set<String> nioSet = new HashSet();
Files.list(p).forEach((x) -> nioSet.add(x.toString()));
assertEquals(nioSet, ioSet);
}
@Test
public void listFiles() throws IOException {
listFiles(x -> x.listFiles());
}
@Test
public void listFilesFileFilter() throws IOException {
FileFilter ff = new FileFilter() {
public boolean accept(File pathname) { return true; }
};
listFiles(x -> x.listFiles(ff));
}
@Test
public void listFilesNullFileFilter() throws IOException {
listFiles(x -> x.listFiles((FileFilter)null));
}
@Test
public void listFilesFilenameFilter() throws IOException {
FilenameFilter fnf = new FilenameFilter() {
public boolean accept(File dir, String name) { return true; }
};
listFiles(x -> x.listFiles(fnf));
}
@Test
public void listFilesNullFilenameFilter() throws IOException {
listFiles(x -> x.listFiles((FilenameFilter)null));
}
private void listFiles(Function<File,File[]> func) throws IOException {
String childName = "child" + System.nanoTime();
File child = new File(f.getAbsoluteFile(), childName);
assertTrue(child.createNewFile());
child.deleteOnExit();
File[] files = func.apply(f);
for (File file : files)
assertEquals(-1, f.toString().indexOf(File.separatorChar));
Set<String> ioSet = Arrays.stream(files)
.map(File::getName)
.collect(Collectors.toSet());
assertTrue(ioSet.contains(child.getName()));
Set<String> nioSet = Files.list(p)
.map(Path::getFileName)
.map(Path::toString)
.collect(Collectors.toSet());
assertEquals(nioSet, ioSet);
}
@Test
public void listRoots() {
Set<String> expected = Arrays.stream(f.getAbsoluteFile().listRoots())
.map(File::toString)
.collect(Collectors.toSet());
Set<String> actual = Arrays.stream(f.listRoots())
.map(File::toString)
.collect(Collectors.toSet());
assertEquals(expected, actual);
}
@Test
public void mkdir() {
assertFalse(f.mkdir());
}
@Test
public void mkdirs() {
assertFalse(f.mkdirs());
}
@Test
public void renameTo() throws IOException {
File tmp = File.createTempFile("foo", "bar", f.getAbsoluteFile());
assertTrue(tmp.exists());
assertFalse(f.renameTo(tmp));
}
@Test
public void setLastModified() {
long t0 = f.lastModified();
long t = System.currentTimeMillis();
try {
assertTrue(f.setLastModified(t));
assertEquals(t, f.lastModified());
assertTrue(f.setLastModified(t0));
assertEquals(t0, f.lastModified());
} finally {
f.setLastModified(t0);
}
}
// Note: Testing File.setExecutable is omitted because calling
// File.setExecutable(false) makes it impossible to set the CWD to
// executable again which makes subsequent tests fail
@Test
@DisabledOnOs({OS.WINDOWS})
public void setReadable() {
assertTrue(f.canRead());
try {
assertTrue(f.setReadable(false));
assertFalse(f.canRead());
assertTrue(f.setReadable(true));
assertTrue(f.canRead());
} finally {
f.setReadable(true);
}
}
@Test
@DisabledOnOs({OS.WINDOWS})
public void setReadOnly() {
assertTrue(f.canExecute());
assertTrue(f.canRead());
assertTrue(f.canWrite());
try {
assertTrue(f.setReadOnly());
assertTrue(f.canRead());
assertFalse(f.canWrite());
assertTrue(f.setWritable(true, true));
assertTrue(f.canWrite());
} finally {
f.setWritable(true, true);
}
}
@Test
@DisabledOnOs({OS.WINDOWS})
public void setWritable() {
assertTrue(f.canWrite());
try {
assertTrue(f.setWritable(false, true));
assertFalse(f.canWrite());
assertTrue(f.setWritable(true, true));
assertTrue(f.canWrite());
} finally {
f.setWritable(true, true);
}
}
@Test
public void toPath() {
assertEquals(p, f.toPath());
}
@Test
public String toString() {
assertEquals(EMPTY_STRING, f.toString());
return EMPTY_STRING;
}
@Test
public void toURI() {
assertEquals(f.toPath().toUri(), f.toURI());
}
@Test
public void toURL() throws MalformedURLException {
assertEquals(f.toPath().toUri().toURL(), f.toURL());
}
}
|