jdk/test/com/sun/jdi/EnumTest.java
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 5506 202f599c92aa
child 24973 8c4bc3fa4c4e
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3432
diff changeset
     2
 * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3432
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3432
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3432
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 *  @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 *  @bug 4728816
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 *  @summary JPDA: Add support for enums
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *  @author jjh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *  @run build TestScaffold VMConnection TargetListener TargetAdapter
3432
8acd97c69118 6868533: 3/4 JDI: remove '-source 1.5' and '-target 1.5' options from com.sun.jdi tests
dcubed
parents: 2
diff changeset
    32
 *  @run compile -g EnumTest.java
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 *  @run main EnumTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import com.sun.jdi.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import com.sun.jdi.event.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import com.sun.jdi.request.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    /********** target program **********/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
enum Coin {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    penny(1), nickel(5), dime(10), quarter(25);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    Coin(int value) { this.value = value; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private final int value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    public int value() { return value; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
class EnumTarg {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    static Coin myCoin = Coin.penny;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    public static void main(String[] args){
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        System.out.println("Howdy!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        System.out.println("Goodbye from EnumTarg!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    /********** test program **********/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
public class EnumTest extends TestScaffold {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    ReferenceType targetClass;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    EnumTest (String args[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        super(args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    public static void main(String[] args)      throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        new EnumTest(args).startTests();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    void fail(String reason) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        failure(reason);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    /********** test core **********/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    protected void runTests() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
         * Get to the top of main()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
         * to determine targetClass
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        BreakpointEvent bpe = startToMain("EnumTarg");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        targetClass = bpe.location().declaringType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        ReferenceType rt = findReferenceType("EnumTarg");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        Field myField = rt.fieldByName("myCoin");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        ObjectReference enumObject = (ObjectReference)rt.getValue(myField);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        ClassType enumClass =(ClassType) enumObject.referenceType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        ClassType superClass = enumClass.superclass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        if (!superClass.name().equals("java.lang.Enum")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            fail("failure: Superclass of enum class is not java.lang.Enum: " + superClass.name());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        if (!enumClass.isEnum()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            fail("failure: isEnum() is false but should be true");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        if (((ClassType)rt).isEnum()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            fail("failure: isEnum() is true for EnumTarg but should be false");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        Field enumConstant = enumClass.fieldByName("penny");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        if (!enumConstant.isEnumConstant()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            fail("failure: The 'penny' field is not marked " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                 "as an enum constant.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
         * This isn't really part of the test, it just
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
         * shows how to look at all the enum constants,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
         * but not necessarily in the correct order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        List allFields = enumClass.fields();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        List enumConstantFields = new ArrayList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        StringBuffer enumDecl = new StringBuffer("enum " + enumClass.name() + " {");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        char delim = ' ';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        for (Iterator iter = allFields.iterator(); iter.hasNext(); ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            Field aField = (Field)iter.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            if (aField.isEnumConstant()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                enumDecl.append(' ');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                enumDecl.append(aField.name());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                enumDecl.append(delim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                delim = ',';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        enumDecl.append("; };");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        System.out.println("Enum decl is: " + enumDecl);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        listenUntilVMDisconnect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
         * deal with results of test
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
         * if anything has called failure("foo") testFailed will be true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        if (!testFailed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            println("EnumTest: passed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            throw new Exception("EnumTest: failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
}