jdk/test/java/lang/reflect/Proxy/ProxyClassAccessTest.java
author alanb
Thu, 17 Mar 2016 19:04:16 +0000
changeset 36511 9d0388c6b336
child 38457 3d019217e322
permissions -rw-r--r--
8142968: Module System implementation Summary: Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282 Reviewed-by: alanb, mchung, naoto, rriggs, psandoz, plevart, mullan, ascarpino, vinnie, prr, sherman, dfuchs, mhaupt Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, chris.hegarty@oracle.com, alexandr.scherbatiy@oracle.com, amy.lu@oracle.com, calvin.cheung@oracle.com, daniel.fuchs@oracle.com, erik.joelsson@oracle.com, harold.seigel@oracle.com, jaroslav.bachorik@oracle.com, jean-francois.denise@oracle.com, jan.lahoda@oracle.com, james.laskey@oracle.com, lois.foltan@oracle.com, miroslav.kos@oracle.com, huaming.li@oracle.com, sean.mullan@oracle.com, naoto.sato@oracle.com, masayoshi.okutsu@oracle.com, peter.levart@gmail.com, philip.race@oracle.com, claes.redestad@oracle.com, sergey.bylokhov@oracle.com, alexandre.iline@oracle.com, volker.simonis@gmail.com, staffan.larsen@oracle.com, stuart.marks@oracle.com, semyon.sadetsky@oracle.com, serguei.spitsyn@oracle.com, sundararajan.athijegannathan@oracle.com, valerie.peng@oracle.com, vincent.x.ryan@oracle.com, weijun.wang@oracle.com, yuri.nesterenko@oracle.com, yekaterina.kantserova@oracle.com, alexander.kulyakhtin@oracle.com, felix.yang@oracle.com, andrei.eremeev@oracle.com, frank.yuan@oracle.com, sergei.pikalev@oracle.com, sibabrata.sahoo@oracle.com, tiantian.du@oracle.com, sha.jiang@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     2
 * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * accompanied this code).
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * questions.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    23
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    24
import java.lang.module.Configuration;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    25
import java.lang.module.ModuleFinder;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    26
import java.lang.reflect.Layer;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    27
import java.lang.reflect.Proxy;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    28
import java.nio.file.Path;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    29
import java.nio.file.Paths;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    30
import java.util.Arrays;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    31
import java.util.List;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    32
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
import static jdk.testlibrary.ProcessTools.executeTestJava;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
import org.testng.annotations.BeforeTest;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
import org.testng.annotations.Test;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
import static org.testng.Assert.*;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
/**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    40
 * @test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
 * @library /lib/testlibrary
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    42
 * @modules jdk.compiler
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
 * @build ProxyClassAccessTest q.NP CompilerUtils jdk.testlibrary.*
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
 * @run testng ProxyClassAccessTest
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    45
 * @summary Driver for testing proxy class doesn't have access to
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    46
 *          types referenced by proxy interfaces
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    47
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    48
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    49
public class ProxyClassAccessTest {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    50
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    51
    private static final String TEST_SRC = System.getProperty("test.src");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    52
    private static final String TEST_CLASSES = System.getProperty("test.classes");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    53
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
    private static final Path SRC_DIR = Paths.get(TEST_SRC, "src");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    55
    private static final Path MODS_DIR = Paths.get("mods");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    56
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    57
    // the names of the modules in this test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    58
    private static List<String> modules = Arrays.asList("m1", "m2", "m3", "test");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    59
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    60
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    61
     * Compiles all modules used by the test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    62
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    63
    @BeforeTest
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    64
    public void compileAll() throws Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    65
        for (String mn : modules) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    66
            Path msrc = SRC_DIR.resolve(mn);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    67
            assertTrue(CompilerUtils.compile(msrc, MODS_DIR, "-modulesourcepath", SRC_DIR.toString()));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    68
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    72
     * Run the modular test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
    public void runTest() throws Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
        int exitValue = executeTestJava("-mp", MODS_DIR.toString(),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
                                        "-m", "test/jdk.test.ProxyClassAccess")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
                            .outputTo(System.out)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
                            .errorTo(System.out)
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
                            .getExitValue();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
        assertTrue(exitValue == 0);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
     * Test unnamed module has no access to other proxy interface
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
    @Test
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    89
    public void testNoReadAccess() throws Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
        ModuleFinder finder = ModuleFinder.of(MODS_DIR);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
        Layer bootLayer = Layer.boot();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
        Configuration cf = bootLayer
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    93
                .configuration()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    94
                .resolveRequiresAndUses(ModuleFinder.empty(), finder, modules);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    95
        ClassLoader parentLoader = this.getClass().getClassLoader();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    96
        Layer layer = bootLayer.defineModulesWithOneLoader(cf, parentLoader);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    97
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    98
        ClassLoader loader = layer.findLoader("m1");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    99
        Class<?>[] interfaces = new Class<?>[] {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   100
                Class.forName("p.one.I", false, loader),
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   101
                Class.forName("q.NP", false, loader)     // non-public interface in unnamed module
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   102
        };
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   103
        checkIAE(loader, interfaces);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   104
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   105
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   106
    private void checkIAE(ClassLoader loader, Class<?>[] interfaces) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   107
        try {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   108
            Proxy.getProxyClass(loader, interfaces);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   109
            throw new RuntimeException("Expected IllegalArgumentException thrown");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   110
        } catch (IllegalArgumentException e) {}
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   111
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   112
        try {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   113
            Proxy.newProxyInstance(loader, interfaces,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   114
                (proxy, m, params) -> { throw new RuntimeException(m.toString()); });
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   115
            throw new RuntimeException("Expected IllegalArgumentException thrown");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   116
        } catch (IllegalArgumentException e) {}
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   117
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   118
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   119
}