test/tools/javac/api/6411333/T6411333.java

Wed, 13 Aug 2014 14:50:00 -0700

author
katleman
date
Wed, 13 Aug 2014 14:50:00 -0700
changeset 2549
0b6cc4ea670f
parent 1733
e39669aea0bd
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Added tag jdk8u40-b01 for changeset bf89a471779d

     1 /*
     2  * Copyright (c) 2006, 2013, 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  */
    24 /*
    25  * @test
    26  * @bug     6411333 6400208 6400225 6400267
    27  * @summary Ensure 6400208, 6400225, and 6400267 are tested
    28  * @author  Peter von der Ah\u00e9
    29  * @library ../lib
    30  * @build ToolTester
    31  * @compile T6411333.java
    32  * @run main T6411333
    33  */
    35 import java.io.IOException;
    36 import javax.tools.*;
    37 import static javax.tools.StandardLocation.*;
    38 import static javax.tools.JavaFileObject.Kind.*;
    40 // Note: 6400225 (getEffectiveLocation) was dropped eventually.
    42 public class T6411333 extends ToolTester {
    44     // 6400208: JSR 199: failure mode for inferBinaryName
    45     void testInferBinaryName(String binaryName, boolean fail) {
    46         try {
    47             JavaFileObject file = fm.getJavaFileForInput(PLATFORM_CLASS_PATH,
    48                                                          binaryName,
    49                                                          CLASS);
    50             String inferred = fm.inferBinaryName(fail ? CLASS_PATH : PLATFORM_CLASS_PATH,
    51                                                  file);
    52             if (inferred == null && fail)
    53                 return;
    54             if (!inferred.equals(binaryName))
    55                 throw new AssertionError(String.format("binaryName (%s) != inferred (%s)",
    56                                                        binaryName,
    57                                                        inferred));
    58         } catch (IOException ex) {
    59             throw new AssertionError(ex);
    60         }
    61     }
    63     // 6400267: JSR 199: specify the exact requirements for relative URIs
    64     void testRelativeUri(String name, boolean fail) {
    65         try {
    66             fm.getFileForInput(SOURCE_OUTPUT, "java.lang", name);
    67         } catch (IllegalArgumentException ex) {
    68             if (fail)
    69                 return;
    70         } catch (IOException ex) {
    71             throw new AssertionError(ex);
    72         }
    73         if (fail)
    74             throw new AssertionError("Expected failure on " + name);
    75     }
    77     void test(String... args) {
    78         testInferBinaryName("java.lang.Object", false);
    79         testInferBinaryName("java.lang.Object", true);
    81         testRelativeUri("../util/List.java", true);
    82         testRelativeUri("util/List.java", false);
    83         testRelativeUri("/util/List.java", true);
    84     }
    85     public static void main(String... args) {
    86         new T6411333().test(args);
    87     }
    88 }

mercurial