summaryrefslogtreecommitdiff
path: root/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/SuspendCountTest.java
blob: 59a9c1e487a29d9ce06989fea73f261b65e81b81 (plain)
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

/**
 * @author Vitaly A. Provodin
 */

/**
 * Created on 15.02.2005
 */
package org.apache.harmony.jpda.tests.jdwp.ThreadReference;

import org.apache.harmony.jpda.tests.framework.jdwp.exceptions.*;
import org.apache.harmony.jpda.tests.framework.jdwp.CommandPacket;
import org.apache.harmony.jpda.tests.framework.jdwp.JDWPCommands;
import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants;
import org.apache.harmony.jpda.tests.framework.jdwp.ReplyPacket;
import org.apache.harmony.jpda.tests.jdwp.share.JDWPSyncTestCase;
import org.apache.harmony.jpda.tests.share.JPDADebuggeeSynchronizer;


/**
 * JDWP Unit test for ThreadReference.SuspendCount command.
 */
public class SuspendCountTest extends JDWPSyncTestCase {

    static final int testStatusPassed = 0;
    static final int testStatusFailed = -1;
    static final String debuggeeSignature =
            "Lorg/apache/harmony/jpda/tests/jdwp/ThreadReference/SuspendCountDebuggee;";

    @Override
    protected String getDebuggeeClassName() {
        return "org.apache.harmony.jpda.tests.jdwp.ThreadReference.SuspendCountDebuggee";
    }

    /**
     * This testcase exercises ThreadReference.SuspendCount command.
     * <BR>At first the test starts SuspendCountDebuggee which starts and runs some tested threads.
     * <BR>After the tested threads starts, the test suspends every
     * tested thread in debuggee some times and
     * check that ThreadReference.SuspendCount command returns
     * expected number of times thread was suspended.
     * <BR>Then the test suspends all debuggee by VirtualMachine.Suspend command
     * and check that ThreadReference.SuspendCount command returns 1 value
     * for all tested threads and main thread.
     * <BR>Then the test resumes all debuggee by VirtualMachine.Resume command
     * and check that ThreadReference.SuspendCount command returns 0 value
     * for all tested threads and main thread.
     */
    public void testSuspendCount001() {
        logWriter.println("==> testSuspendCount001: START...");
        String debuggeeMessage = synchronizer.receiveMessage();
        int testedThreadsNumber = 0;
        try {
            testedThreadsNumber = Integer.valueOf(debuggeeMessage).intValue();
        } catch (NumberFormatException exception) {
            logWriter.println
                ("## FAILURE: Exception while getting number of started threads from debuggee = " + exception);
            synchronizer.sendMessage("FINISH");
            printErrorAndFail("Can NOT get number of started threads from debuggee! ");
        }
        if ( testedThreadsNumber == 0 ) {
            logWriter.println("==>  There are no started threads in debuggee to test"
                    + " - testSuspendCount001 finishes!");
            synchronizer.sendMessage("FINISH");
            return;
        }
        logWriter.println("==>  Number of started threads in debuggee to test = " + testedThreadsNumber);
        String[] testedThreadsNames = new String[testedThreadsNumber+1]; // +1 is for main debuggee thread
        long[] testedThreadsIDs = new long[testedThreadsNumber+1];
        for (int i = 0; i < testedThreadsNumber; i++) {
            testedThreadsNames[i] = SuspendCountDebuggee.THREAD_NAME_PATTERN + i;
            testedThreadsIDs[i] = 0;
        }

        // getting ID of the tested thread
        ReplyPacket allThreadIDReply = null;
        try {
            allThreadIDReply = debuggeeWrapper.vmMirror.getAllThreadID();
        } catch (ReplyErrorCodeException exception) {
            logWriter.println
                ("## FAILURE: Exception in vmMirror.getAllThreadID() = " + exception);
            synchronizer.sendMessage("FINISH");
            printErrorAndFail("Can NOT get all ThreadID in debuggee! ");
        }
        int threads = allThreadIDReply.getNextValueAsInt();
        logWriter.println("==>  Number of all threads in debuggee = " + threads);
        String[] allThreadsNames = new String[threads];
        long[] allThreadsIDs = new long[threads];
        boolean suspendCommandFailed = false;
        boolean suspendCountCommandFailed = false;
        boolean resumeCommandFailed = false;

        int suspendNumber = 0;
        for (int i = 0; i < threads; i++) {
            long threadID = allThreadIDReply.getNextValueAsThreadID();
            allThreadsIDs[i] = threadID;
            String threadName = null;
            try {
                threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
            } catch (ReplyErrorCodeException exception) {
                logWriter.println
                    ("==> WARNING: Can NOT get thread name for threadID = " + threadID);
                continue;
            }
            allThreadsNames[i] = threadName;
            int k = 0;
            for (; k < testedThreadsNumber; k++) {
                if ( threadName.equals(testedThreadsNames[k]) ) {
                    testedThreadsIDs[k] = threadID;
                    break;
                }
            }
            if ( k == testedThreadsNumber ) {
                // it is not thread to test
                continue;
            }

            logWriter.println("\n==> Check for Thread: threadID = " + threadID
                    + "; threadName = " + threadName);

            logWriter.println("==> Send ThreadReference.SuspendCount command...");
            CommandPacket packet = new CommandPacket(
                    JDWPCommands.ThreadReferenceCommandSet.CommandSetID,
                    JDWPCommands.ThreadReferenceCommandSet.SuspendCountCommand);
            packet.setNextValueAsThreadID(threadID);
            ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
            if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.SuspendCount command") ) {
                suspendCountCommandFailed = true;
            } else {
                int suspendCount = reply.getNextValueAsInt();
                logWriter.println("==> ThreadReference.SuspendCount command returns suspendCount = " + suspendCount);
                if ( suspendCount != 0 ) {
                    logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
                    logWriter.println("##          Expected suspendCount  = 0");
                    suspendCountCommandFailed = true;
                }
            }

            suspendNumber++;
            logWriter.println("==> Send ThreadReference.Suspend command number of times = "
                    + suspendNumber + "...");
            int j = 0;
            for (; j < suspendNumber; j++) {
                packet = new CommandPacket(
                        JDWPCommands.ThreadReferenceCommandSet.CommandSetID,
                        JDWPCommands.ThreadReferenceCommandSet.SuspendCommand);
                packet.setNextValueAsThreadID(threadID);
                reply = debuggeeWrapper.vmMirror.performCommand(packet);
                if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Suspend command") ) {
                    break;
                }
            }
            if ( j < suspendNumber ) {
                suspendCommandFailed = true;
                continue;
            }

            logWriter.println("==> Send ThreadReference.SuspendCount command...");
            packet = new CommandPacket(
                    JDWPCommands.ThreadReferenceCommandSet.CommandSetID,
                    JDWPCommands.ThreadReferenceCommandSet.SuspendCountCommand);
            packet.setNextValueAsThreadID(threadID);
            reply = debuggeeWrapper.vmMirror.performCommand(packet);
            if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.SuspendCount command") ) {
                suspendCountCommandFailed = true;
            } else {
                int suspendCount = reply.getNextValueAsInt();
                logWriter.println("==> ThreadReference.SuspendCount command returns suspendCount = " + suspendCount);
                if ( suspendCount != suspendNumber ) {
                    logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
                    logWriter.println("##          Expected suspendCount  = " + suspendNumber);
                    suspendCountCommandFailed = true;
                }
            }

            logWriter.println("==> Send ThreadReference.Resume command...");
            packet = new CommandPacket(
                    JDWPCommands.ThreadReferenceCommandSet.CommandSetID,
                    JDWPCommands.ThreadReferenceCommandSet.ResumeCommand);
            packet.setNextValueAsThreadID(threadID);
            reply = debuggeeWrapper.vmMirror.performCommand(packet);
            if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Resume command") ) {
                resumeCommandFailed = true;
            }

            logWriter.println("==> Send ThreadReference.SuspendCount command...");
            packet = new CommandPacket(
                    JDWPCommands.ThreadReferenceCommandSet.CommandSetID,
                    JDWPCommands.ThreadReferenceCommandSet.SuspendCountCommand);
            packet.setNextValueAsThreadID(threadID);
            reply = debuggeeWrapper.vmMirror.performCommand(packet);
            if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.SuspendCount command") ) {
                suspendCountCommandFailed = true;
            } else {
                int suspendCount = reply.getNextValueAsInt();
                logWriter.println("==> ThreadReference.SuspendCount command returns suspendCount = " + suspendCount);
                if ( suspendCount != (suspendNumber -1) ) {
                    logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
                    logWriter.println("##          Expected suspendCount  = " + (suspendNumber-1));
                    suspendCountCommandFailed = true;
                }
            }

            if ( suspendNumber == 1 ) {
                continue;
            }

            logWriter.println("==> Send ThreadReference.Resume command number of times = "
                    + (suspendNumber - 1) + "...");
            j = 0;
            for (; j < (suspendNumber-1); j++) {
                packet = new CommandPacket(
                        JDWPCommands.ThreadReferenceCommandSet.CommandSetID,
                        JDWPCommands.ThreadReferenceCommandSet.ResumeCommand);
                packet.setNextValueAsThreadID(threadID);
                reply = debuggeeWrapper.vmMirror.performCommand(packet);
                if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Resume command") ) {
                    break;
                }
            }
            if ( j < (suspendNumber-1) ) {
                resumeCommandFailed = true;
                continue;
            }

            logWriter.println("==> Send ThreadReference.SuspendCount command...");
            packet = new CommandPacket(
                    JDWPCommands.ThreadReferenceCommandSet.CommandSetID,
                    JDWPCommands.ThreadReferenceCommandSet.SuspendCountCommand);
            packet.setNextValueAsThreadID(threadID);
            reply = debuggeeWrapper.vmMirror.performCommand(packet);
            if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.SuspendCount command") ) {
                suspendCountCommandFailed = true;
                continue;
            }
            int suspendCount = reply.getNextValueAsInt();
            logWriter.println("==> ThreadReference.SuspendCount command returns suspendCount = " + suspendCount);
            if ( suspendCount != 0 ) {
                logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
                logWriter.println("##          Expected suspendCount  = 0");
                suspendCountCommandFailed = true;
            }
        }

        String errorMessage = "";
        if ( suspendCountCommandFailed ) {
            errorMessage = errorMessage + "## Error found out while ThreadReference.SuspendCount command performing!\n";
        }
        if ( suspendCommandFailed ) {
            errorMessage = errorMessage + "## Error found out while ThreadReference.Suspend command performing!\n";
        }
        if ( resumeCommandFailed ) {
            errorMessage = errorMessage + "## Error found out while ThreadReference.Resume command performing!\n";
        }

        boolean testedThreadNotFound = false;
        for (int i = 0; i < testedThreadsNumber; i++) {
            if ( testedThreadsIDs[i] == 0 ) {
                logWriter.println("## FAILURE: Tested thread is not found out among debuggee threads!");
                logWriter.println("##          Thread name = " + testedThreadsNames[i]);
                testedThreadNotFound = true;
            }
        }

        if ( testedThreadNotFound ) {
            errorMessage = errorMessage + "## Some of tested threads are not found!\n";
        }
        if ( ! errorMessage.equals("") ) {
            synchronizer.sendMessage("FINISH");
            printErrorAndFail("\ntestSuspendCount001 FAILED:\n" + errorMessage);
        }

        synchronizer.sendMessage(JPDADebuggeeSynchronizer.SGNL_CONTINUE);
        logWriter.println("\n==> Check ThreadReference.SuspendCount command when all debuggee is suspended...");
        testedThreadsNames[testedThreadsNumber] = synchronizer.receiveMessage(); // debuggee main thread name

        testedThreadsIDs[testedThreadsNumber] = 0; // debuggee main thread ID
        for (int i = 0; i < threads; i++) {
            if ( testedThreadsNames[testedThreadsNumber].equals(allThreadsNames[i]) ) {
                testedThreadsIDs[testedThreadsNumber] = allThreadsIDs[i];
                break;
            }
        }
        if ( testedThreadsIDs[testedThreadsNumber] == 0 ) {
            setStaticIntField(debuggeeSignature, SuspendCountDebuggee.TO_FINISH_DEBUGGEE_FIELD_NAME, 99);
            logWriter.println("## FAILURE: Debuggee main thread is not found out among debuggee threads!");
            logWriter.println("##          Thread name = " + testedThreadsNames[testedThreadsNumber]);
            printErrorAndFail("\nCan NOT found out debuggee main thread!");
        }

        logWriter.println("\n==> Send VirtualMachine.Suspend command...");
        CommandPacket packet = new CommandPacket(
                JDWPCommands.VirtualMachineCommandSet.CommandSetID,
                JDWPCommands.VirtualMachineCommandSet.SuspendCommand);
        ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
        int errorCode = reply.getErrorCode();
        if ( errorCode !=  JDWPConstants.Error.NONE ) {
            setStaticIntField(debuggeeSignature, SuspendCountDebuggee.TO_FINISH_DEBUGGEE_FIELD_NAME, 99);
            logWriter.println("## FAILURE: VirtualMachine.Suspend command returns error = " + errorCode
                    + "(" + JDWPConstants.Error.getName(errorCode) + ")");
            printErrorAndFail("\nVirtualMachine.Suspend command FAILED!");
        }

        for (int i = 0; i < (testedThreadsNumber+1); i++) {
            logWriter.println("==> Send ThreadReference.SuspendCount command for thread = "
                    + testedThreadsNames[i] + " ...");
            packet = new CommandPacket(
                    JDWPCommands.ThreadReferenceCommandSet.CommandSetID,
                    JDWPCommands.ThreadReferenceCommandSet.SuspendCountCommand);
            packet.setNextValueAsThreadID(testedThreadsIDs[i]);
            reply = debuggeeWrapper.vmMirror.performCommand(packet);
            if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.SuspendCount command") ) {
                suspendCountCommandFailed = true;
                continue;
            }
            int suspendCount = reply.getNextValueAsInt();
            logWriter.println("==> ThreadReference.SuspendCount command returns suspendCount = " + suspendCount);
            if ( suspendCount != 1 ) {
                logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + testedThreadsNames[i]);
                logWriter.println("##          Expected suspendCount  = 1");
                suspendCountCommandFailed = true;
            }
        }

        logWriter.println("\n==> Send VirtualMachine.Resume command ...");
        packet = new CommandPacket(
                JDWPCommands.VirtualMachineCommandSet.CommandSetID,
                JDWPCommands.VirtualMachineCommandSet.ResumeCommand);
        reply = debuggeeWrapper.vmMirror.performCommand(packet);
        if ( ! checkReplyPacketWithoutFail(reply, "VirtualMachine.Resume command") ) {
            resumeCommandFailed = true;
        } else {
            logWriter.println("\n==> Check ThreadReference.SuspendCount command after debuggee is resumed...");
            for (int i = 0; i < (testedThreadsNumber+1); i++) {
                logWriter.println("==> Send ThreadReference.SuspendCount command for thread = "
                        + testedThreadsNames[i] + " ...");
                packet = new CommandPacket(
                        JDWPCommands.ThreadReferenceCommandSet.CommandSetID,
                        JDWPCommands.ThreadReferenceCommandSet.SuspendCountCommand);
                packet.setNextValueAsThreadID(testedThreadsIDs[i]);
                reply = debuggeeWrapper.vmMirror.performCommand(packet);
                if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.SuspendCount command") ) {
                    suspendCountCommandFailed = true;
                    continue;
                }
                int suspendCount = reply.getNextValueAsInt();
                logWriter.println("==> ThreadReference.SuspendCount command returns suspendCount = " + suspendCount);
                if ( suspendCount != 0 ) {
                    logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + testedThreadsNames[i]);
                    logWriter.println("##          Expected suspendCount  = 0");
                    suspendCountCommandFailed = true;
                }
            }
        }

        setStaticIntField(debuggeeSignature, SuspendCountDebuggee.TO_FINISH_DEBUGGEE_FIELD_NAME, 99);

        if ( suspendCountCommandFailed ) {
            errorMessage = "## Error found out while ThreadReference.SuspendCount command performing!\n";
        }

        if ( resumeCommandFailed ) {
            errorMessage = "## Error found out while VirtualMachine.Resume command performing!\n";
        }

        if ( ! errorMessage.equals("") ) {
            printErrorAndFail("\ntestSuspendCount001 FAILED:\n" + errorMessage);
        }
        logWriter.println("\n==> testSuspendCount001 - OK!");
    }
/*
    protected int setStaticIntField (String classSignature, String fieldName, int newValue) {

        long classID = debuggeeWrapper.vmMirror.getClassID(classSignature);
        if ( classID == -1 ) {
            logWriter.println
            ("## setStaticIntField(): Can NOT get classID for class signature = '"
                    + classSignature + "'");
            return -1;
        }

        long fieldID =
            debuggeeWrapper.vmMirror.getFieldID(classID, fieldName);
        if ( fieldID == -1 ) {
            logWriter.println
            ("## setStaticIntField(): Can NOT get fieldID for field = '"
                    + fieldName + "'");
            return -1;
        }

        CommandPacket packet = new CommandPacket(
                JDWPCommands.ClassTypeCommandSet.CommandSetID,
                JDWPCommands.ClassTypeCommandSet.SetValuesCommand);
        packet.setNextValueAsReferenceTypeID(classID);
        packet.setNextValueAsInt(1);
        packet.setNextValueAsFieldID(fieldID);
        packet.setNextValueAsInt(newValue);

        ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
        int errorCode = reply.getErrorCode();
        if ( errorCode !=  JDWPConstants.Error.NONE ) {
            logWriter.println
            ("## setStaticIntField(): Can NOT set value for field = '"
                    + fieldName + "' in class = '" + classSignature
                    + "'; ClassType.SetValues command reurns error = " + errorCode);
            return -1;
        }
        return 0;
    }
*/
}