1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
/*
* Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package nsk.jdi.EventSet.resume;
import nsk.share.*;
import nsk.share.jpda.*;
import nsk.share.jdi.*;
import com.sun.jdi.*;
import com.sun.jdi.event.*;
import com.sun.jdi.request.*;
import java.util.*;
import java.io.*;
import static nsk.share.Consts.TEST_FAILED;
/**
* The test for the implementation of an object of the type
* EventSet.
*
* The test checks that results of the method
* <code>com.sun.jdi.EventSet.resume()</code>
* complies with its spec.
*
* Test cases include all three possible suspensions, NONE,
* EVENT_THREAD, and ALL, for ThreadStartEvent sets.
*
* To check up on the method, a debugger,
* upon getting new set for the EventSet,
* suspends VM with the method VirtualMachine.suspend(),
* gets the List of geduggee's threads calling VM.allThreads(),
* invokes the method EventSet.resume(), and
* gets another List of geduggee's threads.
* The debugger then compares values of
* each thread's suspendCount from first and second Lists.
*
* The test works as follows.
* - The debugger sets up a ThreadStartRequest, resumes
* the debuggee, and waits for the ThreadStartEvent.
* - The debuggee creates and starts new thread
* to be resulting in the event.
* - Upon getting new event, the debugger
* performs the check corresponding to the event.
*/
public class resume008 extends TestDebuggerType1 {
public static void main (String argv[]) {
System.exit(run(argv, System.out) + Consts.JCK_STATUS_BASE);
}
public static int run (String argv[], PrintStream out) {
debuggeeName = "nsk.jdi.EventSet.resume.resume008a";
return new resume008().runThis(argv, out);
}
private String testedClassName = "nsk.jdi.EventSet.resume.TestClass";
protected void testRun() {
EventRequest eventRequest = null;
final int SUSPEND_NONE = EventRequest.SUSPEND_NONE;
final int SUSPEND_THREAD = EventRequest.SUSPEND_EVENT_THREAD;
final int SUSPEND_ALL = EventRequest.SUSPEND_ALL;
ReferenceType testClassReference = null;
for (int i = 0; ; i++) {
if (!shouldRunAfterBreakpoint()) {
vm.resume();
break;
}
display(":::::: case: # " + i);
switch (i) {
case 0:
eventRequest = settingThreadStartRequest (
SUSPEND_NONE, "ThreadStartRequest1");
break;
case 1:
eventRequest = settingThreadStartRequest (
SUSPEND_THREAD, "ThreadStartRequest2");
break;
case 2:
eventRequest = settingThreadStartRequest (
SUSPEND_ALL, "ThreadStartRequest3");
break;
default:
throw new Failure("** default case 2 **");
}
display("......waiting for new ThreadStartEvent : " + i);
EventSet eventSet = eventHandler.waitForRequestedEventSet(new EventRequest[]{eventRequest}, waitTime, true);
EventIterator eventIterator = eventSet.eventIterator();
Event newEvent = eventIterator.nextEvent();
if ( !(newEvent instanceof ThreadStartEvent)) {
setFailedStatus("ERROR: new event is not ThreadStartEvent");
} else {
String property = (String) newEvent.request().getProperty("number");
display(" got new ThreadStartEvent with propety 'number' == " + property);
display("......checking up on EventSet.resume()");
display("......--> vm.suspend();");
vm.suspend();
display(" getting : Map<String, Integer> suspendsCounts1");
Map<String, Integer> suspendsCounts1 = new HashMap<String, Integer>();
for (ThreadReference threadReference : vm.allThreads()) {
suspendsCounts1.put(threadReference.name(), threadReference.suspendCount());
}
display(suspendsCounts1.toString());
display(" eventSet.resume;");
eventSet.resume();
display(" getting : Map<String, Integer> suspendsCounts2");
Map<String, Integer> suspendsCounts2 = new HashMap<String, Integer>();
for (ThreadReference threadReference : vm.allThreads()) {
suspendsCounts2.put(threadReference.name(), threadReference.suspendCount());
}
display(suspendsCounts2.toString());
display(" getting : int policy = eventSet.suspendPolicy();");
int policy = eventSet.suspendPolicy();
switch (policy) {
case SUSPEND_NONE :
display(" case SUSPEND_NONE");
for (String threadName : suspendsCounts1.keySet()) {
display(" checking " + threadName);
if (!suspendsCounts2.containsKey(threadName)) {
complain("ERROR: couldn't get ThreadReference for " + threadName);
testExitCode = TEST_FAILED;
break;
}
int count1 = suspendsCounts1.get(threadName);
int count2 = suspendsCounts2.get(threadName);
if (count1 != count2) {
complain("ERROR: suspendCounts don't match for : " + threadName);
complain("before resuming : " + count1);
complain("after resuming : " + count2);
testExitCode = TEST_FAILED;
break;
}
}
break;
case SUSPEND_THREAD :
display(" case SUSPEND_THREAD");
for (String threadName : suspendsCounts1.keySet()) {
display("checking " + threadName);
if (!suspendsCounts2.containsKey(threadName)) {
complain("ERROR: couldn't get ThreadReference for " + threadName);
testExitCode = TEST_FAILED;
break;
}
int count1 = suspendsCounts1.get(threadName);
int count2 = suspendsCounts2.get(threadName);
String eventThreadName = ((ThreadStartEvent)newEvent).thread().name();
int expectedValue = count2 + (eventThreadName.equals(threadName) ? 1 : 0);
if (count1 != expectedValue) {
complain("ERROR: suspendCounts don't match for : " + threadName);
complain("before resuming : " + count1);
complain("after resuming : " + count2);
testExitCode = TEST_FAILED;
break;
}
}
break;
case SUSPEND_ALL :
display(" case SUSPEND_ALL");
for (String threadName : suspendsCounts1.keySet()) {
display("checking " + threadName);
if (!newEvent.request().equals(eventRequest))
break;
if (!suspendsCounts2.containsKey(threadName)) {
complain("ERROR: couldn't get ThreadReference for " + threadName);
testExitCode = TEST_FAILED;
break;
}
int count1 = suspendsCounts1.get(threadName);
int count2 = suspendsCounts2.get(threadName);
if (count1 != count2 + 1) {
complain("ERROR: suspendCounts don't match for : " + threadName);
complain("before resuming : " + count1);
complain("after resuming : " + count2);
testExitCode = TEST_FAILED;
break;
}
}
break;
default: throw new Failure("** default case 1 **");
}
}
display("......--> vm.resume()");
vm.resume();
}
return;
}
private ThreadStartRequest settingThreadStartRequest(int suspendPolicy,
String property) {
try {
ThreadStartRequest tsr = eventRManager.createThreadStartRequest();
tsr.addCountFilter(1);
tsr.setSuspendPolicy(suspendPolicy);
tsr.putProperty("number", property);
return tsr;
} catch ( Exception e ) {
throw new Failure("** FAILURE to set up ThreadStartRequest **");
}
}
}
|