blob: 6e6f8349eab57ee9ece1e52d4487a515a7b819d2 (
plain)
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
|
package org.anarres.cpp;
import java.io.FileNotFoundException;
import org.junit.Test;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class JavaFileSystemTest {
@Test
public void testJavaFileSystem() throws Exception {
JavaFileSystem fs = new JavaFileSystem();
VirtualFile f;
/* Anyone who has this file on their Unix box is messed up. */
f = fs.getFile("/foo/bar baz");
try {
f.getSource(); /* drop on floor */
assertTrue("Got a source for a non-file", f.isFile());
} catch (FileNotFoundException e) {
assertFalse("Got no source for a file", f.isFile());
}
/* We hope we have this. */
f = fs.getFile("/usr/include/stdio.h");
try {
f.getSource(); /* drop on floor */
System.out.println("Opened stdio.h");
assertTrue("Got a source for a non-file", f.isFile());
} catch (FileNotFoundException e) {
System.out.println("Failed to open stdio.h");
assertFalse("Got no source for a file", f.isFile());
}
}
}
|