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
|
/*
* Copyright (c) 2002, 2024, 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.EventRequest._bounds_;
import nsk.share.*;
import nsk.share.jpda.*;
import nsk.share.jdi.*;
import com.sun.jdi.*;
import com.sun.jdi.request.*;
import com.sun.jdi.event.*;
import java.util.*;
import java.io.*;
/**
*
* The test checks up the methods of <code>com.sun.jdi.EventRequest</code>: <br>
* 1. <code>putProperty(Object, Object)</code> <br>
* 2. <code>getProperty(Object)</code> <br>
* 3. <code>setSuspendPolicy(int)</code> <br>
* to correctly work for boundary values of argument. <br>
*
* The test performs the next testcases: <br>
* 1. <code>putProperty(null, String)</code> - in this case it is
* expected property <code>null</code> with value of
* <code>String</code> will be created. <br>
* No exception must be thrown.
* 2. <code>getProperty(null)</code> - value of <code>String</code> from
* the previous case is expected as return value. No exception must
* be thrown. <br>
* 3. <code>setSuspendPolicy(int)</code> is checked for the next
* parameters: <code>Integer.MIN_VALUE</code>, <code>-1</code>,
* <code>Integer.MAX_VALUE</code>. IllegalArgumentException is expected. <br>
*/
public class eventrequest001 {
private final static String prefix = "nsk.jdi.EventRequest._bounds_.";
private final static String debuggerName = prefix + "eventrequest001";
private final static String debugeeName = debuggerName + "a";
public final static String SGNL_READY = "ready";
public final static String SGNL_QUIT = "quit";
public static int exitStatus;
public static Log log;
public static Debugee debugee;
private static String propertyValue = "something";
private static int policies[] = {
Integer.MIN_VALUE,
-1,
Integer.MAX_VALUE
};
//----------------------------------------------------
public static void display(String msg) {
log.display(msg);
}
public static void complain(String msg) {
log.complain("debugger FAILURE> " + msg + "\n");
}
public static void main(String argv[]) {
int result = run(argv,System.out);
if (result != 0) {
throw new RuntimeException("TEST FAILED with result " + result);
}
}
public static int run(String argv[], PrintStream out) {
exitStatus = Consts.TEST_PASSED;
eventrequest001 thisTest = new eventrequest001();
ArgumentHandler argHandler = new ArgumentHandler(argv);
log = new Log(out, argHandler);
debugee = Debugee.prepareDebugee(argHandler, log, debugeeName);
thisTest.execTest();
display("Test finished. exitStatus = " + exitStatus);
return exitStatus;
}
private void execTest() {
debugee.VM().suspend();
ReferenceType testedClass = debugee.classByName(debugeeName);
BreakpointRequest brkp = debugee.setBreakpoint(testedClass,
eventrequest001a.brkpMethodName,
eventrequest001a.brkpLineNumber);
display("\nTEST BEGINS");
display("===========");
try {
display("setting property <null>: value <" + propertyValue + ">");
brkp.putProperty(null, propertyValue);
} catch (Exception e) {
complain("Unexpected: " + e);
exitStatus = Consts.TEST_FAILED;
}
display("");
Object obj = null;
try {
display("reading property <null>:");
obj = brkp.getProperty(null);
display("\t\t value : <" + obj + ">");
} catch (Exception e) {
complain("Unexpected: " + e);
exitStatus = Consts.TEST_FAILED;
}
if (!obj.equals(propertyValue)) {
complain("Unexpected property value: " + obj);
exitStatus = Consts.TEST_FAILED;
}
display("");
for (int i = 0; i < policies.length; i++) {
display("invoking brkp.setSuspendPolicy(" + policies[i] + ")");
brkp.disable();
try {
brkp.setSuspendPolicy(policies[i]);
complain("No exception was thrown for argument: " + policies[i]);
exitStatus = Consts.TEST_FAILED;
} catch (IllegalArgumentException e1) {
display("Expected IllegalArgumentException was thrown for argument: " + policies[i]);
} catch (Exception e) {
complain("Unexpected exception was thrown for argument: " + policies[i] + " :\n\t" + e );
exitStatus = Consts.TEST_FAILED;
}
brkp.enable();
display("");
}
// breakpoint should be disabled before test finishing
brkp.disable();
display("=============");
display("TEST FINISHES\n");
debugee.resume();
debugee.quit();
}
}
|