test/hotspot/jtreg/runtime/cds/appcds/test-classes/DummyClassHelper.java
author coleenp
Mon, 29 Jul 2019 10:34:20 -0400
changeset 57567 b000362a89a0
parent 54927 test/hotspot/jtreg/runtime/appcds/test-classes/DummyClassHelper.java@1512d88b24c6
permissions -rw-r--r--
8202339: [TESTBUG] Consolidate the tests in runtime/SharedArchiveFile and runtime/appcds Summary: add top level cds directory and adjust test groups Reviewed-by: mseledtsov, ccheung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     1
/*
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 48832
diff changeset
     2
 * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     4
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     7
 * published by the Free Software Foundation.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     8
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    13
 * accompanied this code).
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    14
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    18
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    21
 * questions.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    22
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    23
 */
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    24
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    25
import java.lang.*;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    26
import java.lang.reflect.*;
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 48832
diff changeset
    27
import jdk.test.lib.cds.CDSTestUtils;
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    28
import sun.hotspot.WhiteBox;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    29
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    30
public class DummyClassHelper {
48832
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    31
    static void checkDummyMethod(Class<?> cls, String className) {
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    32
        Method m = null;
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    33
        try {
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    34
            m = cls.getMethod("thisClassIsDummy");
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    35
            throw new java.lang.RuntimeException(className +
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    36
                " should be loaded from the jimage and should not have the thisClassIsDummy() method.");
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    37
        } catch(NoSuchMethodException ex) {
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    38
            System.out.println(ex.toString());
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    39
        }
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    40
    }
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    41
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    42
    public static void main(String[] args) throws Exception {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    43
        String[] classNames = {args[0], args[1]};
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    44
        Class cls = null;
48832
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    45
        boolean doWBCheck = (args.length == 3);
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    46
        WhiteBox wb = null;
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    47
        if (doWBCheck) {
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    48
            wb = WhiteBox.getWhiteBox();
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    49
        }
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    50
        for (int i = 0; i < classNames.length; i++) {
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    51
            cls = Class.forName(classNames[i]);
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    52
            checkDummyMethod(cls, classNames[i]);
f1e8ddd6fdc4 8196124: [testbug] runtime/appcds/jigsaw/classpathtests/DummyClassesInBootClassPath.java passes despite of error
ccheung
parents: 48138
diff changeset
    53
            if (doWBCheck) {
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 48832
diff changeset
    54
                // FIXME: for dynamic archive, the class loaded from the
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 48832
diff changeset
    55
                // bootclasspath jar during dump time is not loaded from the
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 48832
diff changeset
    56
                // archive during run time.
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 48832
diff changeset
    57
                if (!CDSTestUtils.isDynamicArchive()) {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 48832
diff changeset
    58
                    if (!wb.isSharedClass(cls)) {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 48832
diff changeset
    59
                        throw new java.lang.RuntimeException(classNames[i] +
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 48832
diff changeset
    60
                            ".class should be in shared space.");
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 48832
diff changeset
    61
                    }
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    62
                }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    63
            }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    64
        }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    65
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    66
}