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
|
/*
* 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.PrimitiveValue.floatValue;
import nsk.share.*;
import nsk.share.jpda.*;
import nsk.share.jdi.*;
import com.sun.jdi.*;
import java.util.*;
import java.io.*;
/**
* The test for the implementation of an object of the type <BR>
* PrimitiveValue. <BR>
* <BR>
* The test checks up that results of the method <BR>
* <code>com.sun.jdi.PrimitiveValue.floatValue()</code> <BR>
* complies with its spec. <BR>
* <BR>
* The cases for testing are as follows : <BR>
* <BR>
* when a gebuggee executes the following : <BR>
* static boolean bl1 = true; <BR>
* static boolean bl0 = false; <BR>
* static byte bt1 = Byte.MAX_VALUE; <BR>
* static byte bt0 = 0; <BR>
* static char ch1 = Character.MAX_VALUE; <BR>
* static char ch0 = 0; <BR>
* static double db1 = Double.MAX_VALUE; <BR>
* static double db0 = 0.0d; <BR>
* static float fl1 = Float.MAX_VALUE; <BR>
* static float fl0 = 0.0f; <BR>
* static int in1 = Integer.MAX_VALUE; <BR>
* static int in0 = 0; <BR>
* static long ln1 = Long.MAX_VALUE; <BR>
* static long ln0 = 0; <BR>
* static short sh1 = Short.MAX_VALUE; <BR>
* static short sh0 = 0; <BR>
* <BR>
* which a debugger mirrors as : <BR>
* <BR>
* PrimitiveValue pvbl1, pvbl0, pvbt1, pvbt0, <BR>
* pvch1, pvch0, pvdb1, pvdb0, <BR>
* pvfl1, pvfl0, pvin1, pvin0, <BR>
* pvln1, pvln0, pvsh1, pvsh0; <BR>
* <BR>
* each of the following is true: <BR>
* <BR>
* pvbl1.floatValue() == 1 <BR>
* pvbl0.floatValue() == 0 <BR>
* pvbt1.floatValue() == (float) Byte.MAX_VALUE <BR>
* pvbt0.floatValue() == 0 <BR>
* pvch1.floatValue() == (float) Character.MAX_VALUE <BR>
* pvch0.floatValue() == 0 <BR>
*<BR>
*<BR>
* pvfl1.floatValue() == Float.MAX_VALUE <BR>
* pvfl0.floatValue() == 0 <BR>
* pvin1.floatValue() == (float) Integer.MAX_VALUE <BR>
* pvin0.floatValue() == 0 <BR>
* pvln1.floatValue() == (float) Long.MAX_VALUE <BR>
* pvln0.floatValue() == 0 <BR>
* pvsh1.floatValue() == (float) Short.MAX_VALUE <BR>
* pvsh0.floatValue() == 0 <BR>
* <BR>
*/
public class floatvalue001 {
//----------------------------------------------------- templete section
static final int PASSED = 0;
static final int FAILED = 2;
static final int PASS_BASE = 95;
//----------------------------------------------------- templete parameters
static final String
sHeader1 = "\n==> nsk/jdi/PrimitiveValue/floatValue/floatvalue001",
sHeader2 = "--> debugger: ",
sHeader3 = "##> debugger: ";
//----------------------------------------------------- main method
public static void main (String argv[]) {
int result = run(argv, System.out);
System.exit(result + PASS_BASE);
}
public static int run (String argv[], PrintStream out) {
return new floatvalue001().runThis(argv, out);
}
//-------------------------------------------------- log procedures
//private static boolean verbMode = false;
private static Log logHandler;
private static void log1(String message) {
logHandler.display(sHeader1 + message);
}
private static void log2(String message) {
logHandler.display(sHeader2 + message);
}
private static void log3(String message) {
logHandler.complain(sHeader3 + message);
}
// ************************************************ test parameters
private String debuggeeName =
"nsk.jdi.PrimitiveValue.floatValue.floatvalue001a";
//====================================================== test program
static ArgumentHandler argsHandler;
static int testExitCode = PASSED;
//------------------------------------------------------ common section
private int runThis (String argv[], PrintStream out) {
Debugee debuggee;
argsHandler = new ArgumentHandler(argv);
logHandler = new Log(out, argsHandler);
Binder binder = new Binder(argsHandler, logHandler);
if (argsHandler.verbose()) {
debuggee = binder.bindToDebugee(debuggeeName + " -vbs"); // *** tp
} else {
debuggee = binder.bindToDebugee(debuggeeName); // *** tp
}
IOPipe pipe = new IOPipe(debuggee);
debuggee.redirectStderr(out);
log2("floatvalue001a debuggee launched");
debuggee.resume();
String line = pipe.readln();
if ((line == null) || !line.equals("ready")) {
log3("signal received is not 'ready' but: " + line);
return FAILED;
} else {
log2("'ready' recieved");
}
VirtualMachine vm = debuggee.VM();
//------------------------------------------------------ testing section
log1(" TESTING BEGINS");
for (int i = 0; ; i++) {
pipe.println("newcheck");
line = pipe.readln();
if (line.equals("checkend")) {
log2(" : returned string is 'checkend'");
break ;
} else if (!line.equals("checkready")) {
log3("ERROR: returned string is not 'checkready'");
testExitCode = FAILED;
break ;
}
log1("new check: #" + i);
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ variable part
List listOfDebuggeeExecClasses = vm.classesByName(debuggeeName);
if (listOfDebuggeeExecClasses.size() != 1) {
testExitCode = FAILED;
log3("ERROR: listOfDebuggeeExecClasses.size() != 1");
break ;
}
ReferenceType execClass =
(ReferenceType) listOfDebuggeeExecClasses.get(0);
Field fsbl1 = execClass.fieldByName("bl1");
Field fsbl0 = execClass.fieldByName("bl0");
Field fsbt1 = execClass.fieldByName("bt1");
Field fsbt0 = execClass.fieldByName("bt0");
Field fsch1 = execClass.fieldByName("ch1");
Field fsch0 = execClass.fieldByName("ch0");
Field fsdb1 = execClass.fieldByName("db1");
Field fsdb0 = execClass.fieldByName("db0");
Field fsfl1 = execClass.fieldByName("fl1");
Field fsfl0 = execClass.fieldByName("fl0");
Field fsin1 = execClass.fieldByName("in1");
Field fsin0 = execClass.fieldByName("in0");
Field fsln1 = execClass.fieldByName("ln1");
Field fsln0 = execClass.fieldByName("ln0");
Field fssh1 = execClass.fieldByName("sh1");
Field fssh0 = execClass.fieldByName("sh0");
PrimitiveValue pvbl1 = (PrimitiveValue) execClass.getValue(fsbl1);
PrimitiveValue pvbl0 = (PrimitiveValue) execClass.getValue(fsbl0);
PrimitiveValue pvbt1 = (PrimitiveValue) execClass.getValue(fsbt1);
PrimitiveValue pvbt0 = (PrimitiveValue) execClass.getValue(fsbt0);
PrimitiveValue pvch1 = (PrimitiveValue) execClass.getValue(fsch1);
PrimitiveValue pvch0 = (PrimitiveValue) execClass.getValue(fsch0);
PrimitiveValue pvdb1 = (PrimitiveValue) execClass.getValue(fsdb1);
PrimitiveValue pvdb0 = (PrimitiveValue) execClass.getValue(fsdb0);
PrimitiveValue pvfl1 = (PrimitiveValue) execClass.getValue(fsfl1);
PrimitiveValue pvfl0 = (PrimitiveValue) execClass.getValue(fsfl0);
PrimitiveValue pvin1 = (PrimitiveValue) execClass.getValue(fsin1);
PrimitiveValue pvin0 = (PrimitiveValue) execClass.getValue(fsin0);
PrimitiveValue pvln1 = (PrimitiveValue) execClass.getValue(fsln1);
PrimitiveValue pvln0 = (PrimitiveValue) execClass.getValue(fsln0);
PrimitiveValue pvsh1 = (PrimitiveValue) execClass.getValue(fssh1);
PrimitiveValue pvsh0 = (PrimitiveValue) execClass.getValue(fssh0);
int i2;
for (i2 = 0; ; i2++) {
int expresult = 0;
log2("new check: #" + i2);
switch (i2) {
case 0:
log2("......checks for: pvbl1.floatValue() == 1 and pvbl0.floatValue() == 0");
if (pvbl1.floatValue() != 1 || pvbl0.floatValue() != 0) {
log3("ERROR: pvbl1.floatValue() != 1 || pvbl0.floatValue() != 0");
expresult = 1;
}
break;
case 1:
log2("......checks for: pvbt1.floatValue() == (float) Byte.MAX_VALUE and pvbt0.floatValue() == 0");
if (pvbt1.floatValue() != (float) Byte.MAX_VALUE || pvbt0.floatValue() != 0) {
log3("ERROR: pvbt1.floatValue() != (float) Byte.MAX_VALUE || pvbt0.floatValue() != 0");
expresult = 1;
}
break;
case 2:
log2("......checks for: pvch1.floatValue() == (float) Character.MAX_VALUE and pvch0.floatValue() == 0");
if (pvch1.floatValue() != (float) Character.MAX_VALUE || pvch0.floatValue() != 0) {
log3("ERROR: pvch1.floatValue() != (float) Character.MAX_VALUE || pvch0.floatValue() != 0");
expresult = 1;
}
break;
case 3:
log2("......checks for: no checks");
break;
case 4:
log2("......checks for: pvfl1.floatValue() == Float.MAX_VALUE and pvfl0.floatValue() ==0");
if (pvfl1.floatValue() != Float.MAX_VALUE || pvfl0.floatValue() !=0 ) {
log3("ERROR: pvfl1.floatValue() != Float.MAX_VALUE || pvfl0.floatValue() !=0");
expresult = 1;
}
break;
case 5:
log2("......checks for: pvin1.floatValue() == (float) Integer.MAX_VALUE and pvin0.floatValue() == 0");
if (pvin1.floatValue() != (float) Integer.MAX_VALUE || pvin0.floatValue() != 0) {
log3("ERROR: pvin1.floatValue() != (float) Integer.MAX_VALUE || pvin0.floatValue() != 0");
expresult = 1;
}
break;
case 6:
log2("......checks for: pvln1.floatValue() == (float) Long.MAX_VALUE and pvln0.floatValue() == 0");
if (pvln1.floatValue() != (float) Long.MAX_VALUE || pvln0.floatValue() != 0) {
log3("ERROR: pvln1.floatValue() != (float) Long.MAX_VALUE || pvln0.floatValue() != 0");
expresult = 1;
}
break;
case 7:
log2("......checks for: pvsh1.floatValue() == (float) Short.MAX_VALUE and pvsh0.floatValue() == 0");
if (pvsh1.floatValue() != (float) Short.MAX_VALUE || pvsh0.floatValue() != 0) {
log3("ERROR: pvsh1.floatValue() != (float) Short.MAX_VALUE || pvsh0.floatValue() != 0");
expresult = 1;
}
break;
default: expresult = 2;
break ;
}
if (expresult == 2) {
log2(" test cases finished");
break ;
} else if (expresult == 1) {
// log3("ERROR: expresult != true; check # = " + i);
testExitCode = FAILED;
}
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
}
log1(" TESTING ENDS");
//-------------------------------------------------- test summary section
//------------------------------------------------- standard end section
pipe.println("quit");
log2("waiting for the debuggee to finish ...");
debuggee.waitFor();
int status = debuggee.getStatus();
if (status != PASSED + PASS_BASE) {
log3("debuggee returned UNEXPECTED exit status: " +
status + " != PASS_BASE");
testExitCode = FAILED;
} else {
log2("debuggee returned expected exit status: " +
status + " == PASS_BASE");
}
if (testExitCode != PASSED) {
logHandler.complain("TEST FAILED");
}
return testExitCode;
}
}
|