1/*
2 * Copyright (c) 2009, 2015, 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/*
25 * @test
26 * @bug 6501502 6877206 6483788
27 * @summary JSR 199: FileObject.toUri should return file:///c:/ or file:/c:/ not file://c:/
28 * @modules java.compiler
29 *          jdk.compiler
30 */
31
32import java.io.*;
33import java.net.URI;
34import javax.tools.*;
35
36public 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();
51        try (StandardJavaFileManager sfm = c.getStandardFileManager(null, null, null)) {
52            fm = sfm;
53            System.err.println(System.getProperties());
54            File tmpDir = new File(System.getProperty("java.io.tmpdir"));
55            File testSrcDir = new File(System.getProperty("test.src"));
56            File testClassesDir = new File(System.getProperty("test.classes"));
57            test(new File("abc.tmp"));
58            test(new File(tmpDir, "bad.file"));
59            test(new File(testSrcDir, "T6501501.java"));
60            test(new File(testClassesDir, "T6501501.class"));
61            test(new File("a b"));
62        }
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
77