langtools/test/tools/javac/6330997/T6330997.java
author jjg
Sun, 18 May 2014 19:59:10 -0700
changeset 24604 7f68545b5128
parent 22151 cb8daa93eeb1
child 30730 d3ce7619db2c
permissions -rw-r--r--
8041422: Split javac ClassReader into ClassReader+ClassFinder Reviewed-by: jfranck
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 22151
diff changeset
     2
 * Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    21
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 * @test
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    26
 * @bug     6330997 7025789 8000961
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary javac should accept class files with major version of the next release
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 * @author  Wei Tao
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 * @clean T1 T2
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    30
 * @compile -source 8 -target 8 T1.java
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    31
 * @compile -source 8 -target 8 T2.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 * @run main/othervm T6330997
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import java.nio.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import java.io.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import java.nio.channels.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
import com.sun.tools.javac.api.JavacTaskImpl;
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 22151
diff changeset
    39
import com.sun.tools.javac.code.ClassFinder.BadClassFile;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import com.sun.tools.javac.main.JavaCompiler;
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
import javax.tools.ToolProvider;
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
public class T6330997 {
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
    public static void main(String... args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
        increaseMajor("T1.class", 1);
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
        increaseMajor("T2.class", 2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
        javax.tools.JavaCompiler tool = ToolProvider.getSystemJavaCompiler();
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
        JavacTaskImpl task = (JavacTaskImpl)tool.getTask(null, null, null, null, null, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
        JavaCompiler compiler = JavaCompiler.instance(task.getContext());
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
            compiler.resolveIdent("T1").complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
        } catch (Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
            e.printStackTrace();
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
            throw new RuntimeException("Failed: unexpected exception while reading class T1");
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
            compiler.resolveIdent("T2").complete();
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
        } catch (BadClassFile e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
            System.err.println("Passed: expected completion failure " + e.getClass().getName());
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
        } catch (Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
            e.printStackTrace();
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
            throw new RuntimeException("Failed: unexpected exception while reading class T2");
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        throw new RuntimeException("Failed: no error reported");
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    // Increase class file cfile's major version by delta
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    static void increaseMajor(String cfile, int delta) {
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    70
        try (RandomAccessFile cls =
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    71
             new RandomAccessFile(new File(System.getProperty("test.classes", "."), cfile), "rw");
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    72
             FileChannel fc = cls.getChannel()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
            ByteBuffer rbuf = ByteBuffer.allocate(2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
            fc.read(rbuf, 6);
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
            ByteBuffer wbuf = ByteBuffer.allocate(2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
            wbuf.putShort(0, (short)(rbuf.getShort(0) + delta));
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
            fc.write(wbuf, 6);
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
            fc.force(false);
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    79
        } catch (Exception e){
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
            throw new RuntimeException("Failed: unexpected exception");
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
         }
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
     }
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
}