test/jdk/com/sun/jdi/VMDeathRequestTest.java
author mbaesken
Tue, 03 Sep 2019 16:52:55 +0200
changeset 58000 62926eb5e40e
parent 47216 71c04702a3d5
permissions -rw-r--r--
8230485: add handling of aix tar in configure Reviewed-by: erikj
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
30376
2ccf2cf7ea48 8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents: 24973
diff changeset
     2
 * Copyright (c) 2001, 2015, 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
/**
44423
306c020eb154 8176176: fix @modules in jdk_svc tests
iignatyev
parents: 30376
diff changeset
    25
 * @test
306c020eb154 8176176: fix @modules in jdk_svc tests
iignatyev
parents: 30376
diff changeset
    26
 * @bug 4419314
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary VMDeathRequestTest checks to see that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * VMDisconnectedException is never thrown before VMDisconnectEvent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * Failure mode for this test is throwing VMDisconnectedException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * on vm.eventQueue().remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * Does not use a scaffold since we don't want that hiding the exception.
44423
306c020eb154 8176176: fix @modules in jdk_svc tests
iignatyev
parents: 30376
diff changeset
    33
 * @author Robert Field
306c020eb154 8176176: fix @modules in jdk_svc tests
iignatyev
parents: 30376
diff changeset
    34
 *
306c020eb154 8176176: fix @modules in jdk_svc tests
iignatyev
parents: 30376
diff changeset
    35
 * @run build TestScaffold VMConnection TargetListener TargetAdapter
306c020eb154 8176176: fix @modules in jdk_svc tests
iignatyev
parents: 30376
diff changeset
    36
 * @run compile -g HelloWorld.java
306c020eb154 8176176: fix @modules in jdk_svc tests
iignatyev
parents: 30376
diff changeset
    37
 * @run build VMDeathRequestTest
306c020eb154 8176176: fix @modules in jdk_svc tests
iignatyev
parents: 30376
diff changeset
    38
 * @run driver VMDeathRequestTest
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import com.sun.jdi.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import com.sun.jdi.event.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import com.sun.jdi.request.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    /********** test program **********/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
public class VMDeathRequestTest extends TestScaffold {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    boolean requestedVMDeathOccurred = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    boolean defaultVMDeathOccurred = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    Object syncer = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    boolean disconnected = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    VMDeathRequest deathRequest;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    EventSet currentEventSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    VMDeathRequestTest (String args[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        super(args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    public static void main(String[] args)      throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        new VMDeathRequestTest(args).startTests();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    /********** event handlers **********/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    public void eventSetReceived(EventSet set) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        currentEventSet = set;
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 void vmDied(VMDeathEvent event) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        if (event.request() == deathRequest) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            requestedVMDeathOccurred = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            println("Got requested VMDeathEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            if (currentEventSet.suspendPolicy() !=
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                                   EventRequest.SUSPEND_ALL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                failure("failure: wrong suspend policy");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        } else if (event.request() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            defaultVMDeathOccurred = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            println("Got default VMDeathEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            failure("failure: Unexpected type of VMDeathEvent occurred");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    public void vmDisconnected(VMDisconnectEvent event) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        println("Got VMDisconnectEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        disconnected = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        synchronized (syncer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            syncer.notifyAll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        }
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
     * Turn off default VMDeath handling
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    protected void createDefaultVMDeathRequest() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    /********** test core **********/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    protected void runTests() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        startToMain("HelloWorld");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        deathRequest = eventRequestManager().createVMDeathRequest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        deathRequest.enable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
         * Static tests
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        List reqs = eventRequestManager().vmDeathRequests();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        if (reqs.size() != 1 || reqs.get(0) != deathRequest) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            failure("failure: vmDeathRequests()");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        if (!vm().canRequestVMDeathEvent()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            failure("failure: canRequestVMDeathEvent() returned false");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
         * Event tests
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        addListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        synchronized (syncer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            vm().resume();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            while (!disconnected) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                    syncer.wait();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                } catch (InterruptedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                }
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
         * Failure analysis
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        if (!requestedVMDeathOccurred) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            failure("failure: didn't get requested VMDeathEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        if (!defaultVMDeathOccurred) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            failure("failure: didn't get default VMDeathEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        if (!testFailed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            println("VMDeathRequestTest: passed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            throw new Exception("VMDeathRequestTest: failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
}