jdk/test/com/sun/jdi/VMDeathRequestTest.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: 2
diff changeset
     2
 * Copyright (c) 2001, 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: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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 4419314
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 *  @author Robert Field
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *  @run build TestScaffold VMConnection TargetListener TargetAdapter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *  @run compile -g HelloWorld.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *  @run build VMDeathRequestTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 *  @run main VMDeathRequestTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * @summary VMDeathRequestTest checks to see that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * VMDisconnectedException is never thrown before VMDisconnectEvent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * Failure mode for this test is throwing VMDisconnectedException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * on vm.eventQueue().remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * Does not use a scaffold since we don't want that hiding the exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import com.sun.jdi.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import com.sun.jdi.event.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import com.sun.jdi.request.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    /********** test program **********/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
public class VMDeathRequestTest extends TestScaffold {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    boolean requestedVMDeathOccurred = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    boolean defaultVMDeathOccurred = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    Object syncer = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    boolean disconnected = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    VMDeathRequest deathRequest;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    EventSet currentEventSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    VMDeathRequestTest (String args[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        super(args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    public static void main(String[] args)      throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        new VMDeathRequestTest(args).startTests();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    /********** event handlers **********/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    public void eventSetReceived(EventSet set) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        currentEventSet = set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    public void vmDied(VMDeathEvent event) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        if (event.request() == deathRequest) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            requestedVMDeathOccurred = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            println("Got requested VMDeathEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            if (currentEventSet.suspendPolicy() !=
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                                   EventRequest.SUSPEND_ALL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                failure("failure: wrong suspend policy");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        } else if (event.request() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            defaultVMDeathOccurred = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            println("Got default VMDeathEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            failure("failure: Unexpected type of VMDeathEvent occurred");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    public void vmDisconnected(VMDisconnectEvent event) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        println("Got VMDisconnectEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        disconnected = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        synchronized (syncer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            syncer.notifyAll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * Turn off default VMDeath handling
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    protected void createDefaultVMDeathRequest() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    /********** test core **********/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    protected void runTests() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        startToMain("HelloWorld");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        deathRequest = eventRequestManager().createVMDeathRequest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        deathRequest.enable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
         * Static tests
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        List reqs = eventRequestManager().vmDeathRequests();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        if (reqs.size() != 1 || reqs.get(0) != deathRequest) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            failure("failure: vmDeathRequests()");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        if (!vm().canRequestVMDeathEvent()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            failure("failure: canRequestVMDeathEvent() returned false");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
         * Event tests
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        addListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        synchronized (syncer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            vm().resume();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            while (!disconnected) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                    syncer.wait();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                } catch (InterruptedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
         * Failure analysis
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        if (!requestedVMDeathOccurred) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            failure("failure: didn't get requested VMDeathEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        if (!defaultVMDeathOccurred) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            failure("failure: didn't get default VMDeathEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        if (!testFailed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            println("VMDeathRequestTest: passed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            throw new Exception("VMDeathRequestTest: failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
}