author | akulyakh |
Thu, 21 May 2015 11:41:04 -0700 | |
changeset 30730 | d3ce7619db2c |
parent 27319 | 030080f03e4f |
permissions | -rw-r--r-- |
3782 | 1 |
/* |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27319
diff
changeset
|
2 |
* Copyright (c) 2009, 2015, Oracle and/or its affiliates. All rights reserved. |
3782 | 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 |
* |
|
5520 | 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. |
|
3782 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @bug 6501502 6877206 6483788 |
|
27 |
* @summary JSR 199: FileObject.toUri should return file:///c:/ or file:/c:/ not file://c:/ |
|
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27319
diff
changeset
|
28 |
* @modules java.compiler |
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27319
diff
changeset
|
29 |
* jdk.compiler |
3782 | 30 |
*/ |
31 |
||
32 |
import java.io.*; |
|
33 |
import java.net.URI; |
|
34 |
import javax.tools.*; |
|
35 |
||
36 |
public class T6501502 { |
|
37 |
public static void main(String... args) throws Exception { |
|
38 |
new T6501502().run(); |
|
39 |
} |
|
40 |
||
41 |
// The spec for java.io.File includes the following: |
|
42 |
// For a given abstract pathname f it is guaranteed that |
|
43 |
// new File( f.toURI()).equals( f.getAbsoluteFile()) |
|
44 |
// For JavaFileObject we test as follows: |
|
45 |
// new File( CONVERT_TO_FILEOBJECT(f).toURI()).equals( f.getAbsoluteFile()) |
|
46 |
// to verify that we get reasonable URIs returned from toURI. |
|
47 |
// To make this a general test, and not just a Windows test, |
|
48 |
// we test a number of platform-independent paths. |
|
49 |
void run() throws Exception { |
|
50 |
JavaCompiler c = ToolProvider.getSystemJavaCompiler(); |
|
27319
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
51 |
try (StandardJavaFileManager sfm = c.getStandardFileManager(null, null, null)) { |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
52 |
fm = sfm; |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
53 |
System.err.println(System.getProperties()); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
54 |
File tmpDir = new File(System.getProperty("java.io.tmpdir")); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
55 |
File testSrcDir = new File(System.getProperty("test.src")); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
56 |
File testClassesDir = new File(System.getProperty("test.classes")); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
57 |
test(new File("abc.tmp")); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
58 |
test(new File(tmpDir, "bad.file")); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
59 |
test(new File(testSrcDir, "T6501501.java")); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
60 |
test(new File(testClassesDir, "T6501501.class")); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
61 |
test(new File("a b")); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
62 |
} |
3782 | 63 |
} |
64 |
||
65 |
void test(File f) throws Exception { |
|
66 |
System.err.println("test " + f); |
|
67 |
FileObject fo = fm.getJavaFileObjects(f).iterator().next(); |
|
68 |
URI uri = fo.toUri(); |
|
69 |
System.err.println("FileObject uri: " + uri); |
|
70 |
if (!new File(uri).equals(f.getAbsoluteFile())) |
|
71 |
throw new Exception("unexpected URI returned"); |
|
72 |
} |
|
73 |
||
74 |
StandardJavaFileManager fm; |
|
75 |
} |
|
76 |