test/tools/javac/T6970173/DebugPointerAtBadPositionTest.java

changeset 0
959103a6100f
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/tools/javac/T6970173/DebugPointerAtBadPositionTest.java	Wed Apr 27 01:34:52 2016 +0800
     1.3 @@ -0,0 +1,112 @@
     1.4 +/*
     1.5 + * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.
    1.11 + *
    1.12 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.13 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.14 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.15 + * version 2 for more details (a copy is included in the LICENSE file that
    1.16 + * accompanied this code).
    1.17 + *
    1.18 + * You should have received a copy of the GNU General Public License version
    1.19 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.20 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.21 + *
    1.22 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.23 + * or visit www.oracle.com if you need additional information or have any
    1.24 + * questions.
    1.25 + */
    1.26 +
    1.27 +/*
    1.28 + * @test
    1.29 + * @bug 6970173
    1.30 + * @summary Debug pointer at bad position
    1.31 + * @library /tools/javac/lib
    1.32 + * @build ToolBox
    1.33 + * @run main DebugPointerAtBadPositionTest
    1.34 + */
    1.35 +
    1.36 +import java.io.File;
    1.37 +import java.nio.file.Paths;
    1.38 +
    1.39 +import com.sun.tools.classfile.ClassFile;
    1.40 +import com.sun.tools.classfile.Code_attribute;
    1.41 +import com.sun.tools.classfile.LineNumberTable_attribute;
    1.42 +import com.sun.tools.classfile.Method;
    1.43 +import com.sun.tools.javac.util.Assert;
    1.44 +
    1.45 +public class DebugPointerAtBadPositionTest {
    1.46 +
    1.47 +    static final String testSource =
    1.48 +            "public class AssertionTest {\n" +
    1.49 +            "    void lookForThisMethod() {\n" +
    1.50 +            "        int i;\n" +
    1.51 +            "        i = 33;\n" +
    1.52 +            "        assert // line 5\n" +
    1.53 +            "            i < 89:\n" +
    1.54 +            "        i < 100; // line 7\n" +
    1.55 +            "    }\n" +
    1.56 +            "}";
    1.57 +
    1.58 +    static final int[][] expectedLNT = {
    1.59 +        {4, 0},
    1.60 +        {5, 3},
    1.61 +        {8, 34}
    1.62 +    };
    1.63 +
    1.64 +    static final String methodToLookFor = "lookForThisMethod";
    1.65 +    static final String seekMethodNotFoundMsg =
    1.66 +        "The seek method was not found";
    1.67 +    static final String foundLNTLengthDifferentThanExpMsg =
    1.68 +        "The LineNumberTable found has a length different to the expected one";
    1.69 +
    1.70 +    public static void main(String[] args) throws Exception {
    1.71 +        new DebugPointerAtBadPositionTest().run();
    1.72 +    }
    1.73 +
    1.74 +    void run() throws Exception {
    1.75 +        compileTestClass();
    1.76 +        checkClassFile(new File(Paths.get(System.getProperty("user.dir"),
    1.77 +                "AssertionTest.class").toUri()), methodToLookFor);
    1.78 +    }
    1.79 +
    1.80 +    void compileTestClass() throws Exception {
    1.81 +        ToolBox.JavaToolArgs javacSuccessArgs =
    1.82 +                new ToolBox.JavaToolArgs().setSources(testSource);
    1.83 +        ToolBox.javac(javacSuccessArgs);
    1.84 +    }
    1.85 +
    1.86 +    void checkClassFile(final File cfile, String methodToFind) throws Exception {
    1.87 +        ClassFile classFile = ClassFile.read(cfile);
    1.88 +        boolean methodFound = false;
    1.89 +        for (Method method : classFile.methods) {
    1.90 +            if (method.getName(classFile.constant_pool).equals(methodToFind)) {
    1.91 +                methodFound = true;
    1.92 +                Code_attribute code = (Code_attribute) method.attributes.get("Code");
    1.93 +                LineNumberTable_attribute lnt =
    1.94 +                        (LineNumberTable_attribute) code.attributes.get("LineNumberTable");
    1.95 +                Assert.check(lnt.line_number_table_length == expectedLNT.length,
    1.96 +                        foundLNTLengthDifferentThanExpMsg);
    1.97 +                int i = 0;
    1.98 +                for (LineNumberTable_attribute.Entry entry: lnt.line_number_table) {
    1.99 +                    Assert.check(entry.line_number == expectedLNT[i][0] &&
   1.100 +                            entry.start_pc == expectedLNT[i][1],
   1.101 +                            "LNT entry at pos " + i + " differ from expected." +
   1.102 +                            "Found " + entry.line_number + ":" + entry.start_pc +
   1.103 +                            ". Expected " + expectedLNT[i][0] + ":" + expectedLNT[i][1]);
   1.104 +                    i++;
   1.105 +                }
   1.106 +            }
   1.107 +        }
   1.108 +        Assert.check(methodFound, seekMethodNotFoundMsg);
   1.109 +    }
   1.110 +
   1.111 +    void error(String msg) {
   1.112 +        throw new AssertionError(msg);
   1.113 +    }
   1.114 +
   1.115 +}

mercurial