/*
* Copyright (c) 2002, 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.ObjectReference.invokeMethod;
import com.sun.jdi.*;
import com.sun.jdi.event.*;
import com.sun.jdi.request.*;
import java.util.*;
import java.io.*;
import nsk.share.*;
import nsk.share.jpda.*;
import nsk.share.jdi.*;
/**
* The test checks that the JDI method
* com.sun.jdi.ObjectReference.invokeMethod()
* properly throws IllegalArgumentException when
* debugger part of the test attempts to invoke several
* debuggee methods:
*
which are not members of an object's class
* which are constructors or static intializers
* with the size mismatch of an argument list.
*/
public class invokemethod002 {
static final String DEBUGGEE_CLASS =
"nsk.jdi.ObjectReference.invokeMethod.invokemethod002t";
// tested debuggee methods and type/object reference numbers
static final int METH_NUM = 14;
static final String DEBUGGEE_METHODS[][] = {
{"", "0", "0"},
{"", "0", "0"},
{"", "1", "0"},
{"", "1", "0"},
{"byteMeth", "1", "0"},
{"shortMeth", "1", "0"},
{"intMeth", "1", "0"},
{"longMeth", "1", "0"},
{"floatMeth", "1", "0"},
{"doubleMeth", "1", "0"},
{"charMeth", "1", "0"},
{"booleanMeth", "1", "0"},
{"strMeth", "1", "0"},
{"voidMeth", "1", "0"}
};
// name of debuggee main thread
static final String DEBUGGEE_THRNAME = "invokemethod002tThr";
// debuggee source line where it should be stopped
static final int DEBUGGEE_STOPATLINE = 62;
// debuggee local var used to find needed stack frame
static final String DEBUGGEE_LOCALVAR = "invokemethod002tdummyCls";
static final int TIMEOUT_DELTA = 1000; // in milliseconds
static final String COMMAND_READY = "ready";
static final String COMMAND_GO = "go";
static final String COMMAND_QUIT = "quit";
private ArgumentHandler argHandler;
private Log log;
private IOPipe pipe;
private Debugee debuggee;
private VirtualMachine vm;
private ThreadReference thrRef = null;
private ObjectReference[] objRef = new ObjectReference[2];
private ReferenceType[] rType = new ReferenceType[2];
private BreakpointRequest BPreq;
private volatile int tot_res = Consts.TEST_PASSED;
private volatile boolean gotEvent = false;
public static void main (String argv[]) {
System.exit(run(argv,System.out) + Consts.JCK_STATUS_BASE);
}
public static int run(String argv[], PrintStream out) {
return new invokemethod002().runIt(argv, out);
}
private int runIt(String args[], PrintStream out) {
argHandler = new ArgumentHandler(args);
log = new Log(out, argHandler);
Binder binder = new Binder(argHandler, log);
String cmd;
int num = 0;
debuggee = binder.bindToDebugee(DEBUGGEE_CLASS);
pipe = debuggee.createIOPipe();
vm = debuggee.VM();
debuggee.redirectStderr(log, "invokemethod002t.err> ");
debuggee.resume();
cmd = pipe.readln();
if (!cmd.equals(COMMAND_READY)) {
log.complain("TEST BUG: unknown debuggee command: " + cmd);
tot_res = Consts.TEST_FAILED;
return quitDebuggee();
}
if ((thrRef =
debuggee.threadByName(DEBUGGEE_THRNAME)) == null) {
log.complain("TEST FAILURE: Method Debugee.threadByName() returned null for debuggee thread "
+ DEBUGGEE_THRNAME);
tot_res = Consts.TEST_FAILED;
return quitDebuggee();
}
rType[0] = debuggee.classByName(DEBUGGEE_CLASS); // debuggee main class
// Check the tested assersion
try {
suspendAtBP(rType[0], DEBUGGEE_STOPATLINE);
findObjRef(DEBUGGEE_LOCALVAR);
rType[1] = objRef[1].referenceType(); // debuggee dummy class
// provoke the IllegalArgumentException with the wrong methods
provokeException(Collections.emptyList(), true);
// provoke the IllegalArgumentException with the wrong argument list
provokeException(
Collections.singletonList(vm.mirrorOf(9223372036854775807L)),
false);
} catch (Exception e) {
e.printStackTrace();
log.complain("TEST FAILURE: caught unexpected exception: " + e);
tot_res = Consts.TEST_FAILED;
}
// Finish the test
return quitDebuggee();
}
private void provokeException(List argList, boolean use3rdIndex) {
int objIndex;
for (int i=0; i