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 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2000-2002
* Sleepycat Software. All rights reserved.
*
* $Id: TestConstruct01.java,v 1.1.1.1 2003/11/20 22:14:05 toshok Exp $
*/
/*
* Do some regression tests for constructors.
* Run normally (without arguments) it is a simple regression test.
* Run with a numeric argument, it repeats the regression a number
* of times, to try to determine if there are memory leaks.
*/
package com.sleepycat.test;
import com.sleepycat.db.*;
import java.io.File;
import java.io.IOException;
import java.io.FileNotFoundException;
public class TestConstruct01
{
public static final String CONSTRUCT01_DBNAME = "construct01.db";
public static final String CONSTRUCT01_DBDIR = "/tmp";
public static final String CONSTRUCT01_DBFULLPATH =
CONSTRUCT01_DBDIR + "/" + CONSTRUCT01_DBNAME;
private int itemcount; // count the number of items in the database
public static boolean verbose_flag = false;
public static void ERR(String a)
{
System.out.println("FAIL: " + a);
System.err.println("FAIL: " + a);
sysexit(1);
}
public static void DEBUGOUT(String s)
{
System.out.println(s);
}
public static void VERBOSEOUT(String s)
{
if (verbose_flag)
System.out.println(s);
}
public static void sysexit(int code)
{
System.exit(code);
}
private static void check_file_removed(String name, boolean fatal,
boolean force_remove_first)
{
File f = new File(name);
if (force_remove_first) {
f.delete();
}
if (f.exists()) {
if (fatal)
System.out.print("FAIL: ");
System.out.print("File \"" + name + "\" still exists after run\n");
if (fatal)
sysexit(1);
}
}
// Check that key/data for 0 - count-1 are already present,
// and write a key/data for count. The key and data are
// both "0123...N" where N == count-1.
//
// For some reason on Windows, we need to open using the full pathname
// of the file when there is no environment, thus the 'has_env'
// variable.
//
void rundb(Db db, int count, boolean has_env, TestOptions options)
throws DbException, FileNotFoundException
{
String name;
if (has_env)
name = CONSTRUCT01_DBNAME;
else
name = CONSTRUCT01_DBFULLPATH;
db.set_error_stream(System.err);
// We don't really care about the pagesize, but we do want
// to make sure adjusting Db specific variables works before
// opening the db.
//
db.set_pagesize(1024);
db.open(null, name, null, Db.DB_BTREE,
(count != 0) ? 0 : Db.DB_CREATE, 0664);
// The bit map of keys we've seen
long bitmap = 0;
// The bit map of keys we expect to see
long expected = (1 << (count+1)) - 1;
byte outbuf[] = new byte[count+1];
int i;
for (i=0; i<count; i++) {
outbuf[i] = (byte)('0' + i);
//outbuf[i] = System.out.println((byte)('0' + i);
}
outbuf[i++] = (byte)'x';
/*
System.out.println("byte: " + ('0' + 0) + ", after: " +
(int)'0' + "=" + (int)('0' + 0) +
"," + (byte)outbuf[0]);
*/
Dbt key = new Dbt(outbuf, 0, i);
Dbt data = new Dbt(outbuf, 0, i);
//DEBUGOUT("Put: " + (char)outbuf[0] + ": " + new String(outbuf));
db.put(null, key, data, Db.DB_NOOVERWRITE);
// Acquire a cursor for the table.
Dbc dbcp = db.cursor(null, 0);
// Walk through the table, checking
Dbt readkey = new Dbt();
Dbt readdata = new Dbt();
Dbt whoknows = new Dbt();
readkey.set_flags(options.dbt_alloc_flags);
readdata.set_flags(options.dbt_alloc_flags);
//DEBUGOUT("Dbc.get");
while (dbcp.get(readkey, readdata, Db.DB_NEXT) == 0) {
String key_string = new String(readkey.get_data());
String data_string = new String(readdata.get_data());
//DEBUGOUT("Got: " + key_string + ": " + data_string);
int len = key_string.length();
if (len <= 0 || key_string.charAt(len-1) != 'x') {
ERR("reread terminator is bad");
}
len--;
long bit = (1 << len);
if (len > count) {
ERR("reread length is bad: expect " + count + " got "+ len + " (" + key_string + ")" );
}
else if (!data_string.equals(key_string)) {
ERR("key/data don't match");
}
else if ((bitmap & bit) != 0) {
ERR("key already seen");
}
else if ((expected & bit) == 0) {
ERR("key was not expected");
}
else {
bitmap |= bit;
expected &= ~(bit);
for (i=0; i<len; i++) {
if (key_string.charAt(i) != ('0' + i)) {
System.out.print(" got " + key_string
+ " (" + (int)key_string.charAt(i)
+ "), wanted " + i
+ " (" + (int)('0' + i)
+ ") at position " + i + "\n");
ERR("key is corrupt");
}
}
}
}
if (expected != 0) {
System.out.print(" expected more keys, bitmap is: " + expected + "\n");
ERR("missing keys in database");
}
dbcp.close();
db.close(0);
}
void t1(TestOptions options)
throws DbException, FileNotFoundException
{
Db db = new Db(null, 0);
rundb(db, itemcount++, false, options);
}
void t2(TestOptions options)
throws DbException, FileNotFoundException
{
Db db = new Db(null, 0);
rundb(db, itemcount++, false, options);
// rundb(db, itemcount++, false, options);
// rundb(db, itemcount++, false, options);
}
void t3(TestOptions options)
throws DbException, FileNotFoundException
{
Db db = new Db(null, 0);
// rundb(db, itemcount++, false, options);
db.set_errpfx("test3");
for (int i=0; i<100; i++)
db.set_errpfx("str" + i);
rundb(db, itemcount++, false, options);
}
void t4(TestOptions options)
throws DbException, FileNotFoundException
{
DbEnv env = new DbEnv(0);
env.open(CONSTRUCT01_DBDIR, Db.DB_CREATE | Db.DB_INIT_MPOOL, 0);
Db db = new Db(env, 0);
/**/
//rundb(db, itemcount++, true, options);
db.set_errpfx("test4");
rundb(db, itemcount++, true, options);
/**/
env.close(0);
}
void t5(TestOptions options)
throws DbException, FileNotFoundException
{
DbEnv env = new DbEnv(0);
env.open(CONSTRUCT01_DBDIR, Db.DB_CREATE | Db.DB_INIT_MPOOL, 0);
Db db = new Db(env, 0);
// rundb(db, itemcount++, true, options);
db.set_errpfx("test5");
rundb(db, itemcount++, true, options);
/*
env.close(0);
// reopen the environment, don't recreate
env.open(CONSTRUCT01_DBDIR, Db.DB_INIT_MPOOL, 0);
// Note we cannot reuse the old Db!
*/
Db anotherdb = new Db(env, 0);
// rundb(anotherdb, itemcount++, true, options);
anotherdb.set_errpfx("test5");
rundb(anotherdb, itemcount++, true, options);
env.close(0);
}
void t6(TestOptions options)
throws DbException, FileNotFoundException
{
Db db = new Db(null, 0);
DbEnv dbenv = new DbEnv(0);
db.close(0);
dbenv.close(0);
System.gc();
System.runFinalization();
}
// By design, t7 leaves a db and dbenv open; it should be detected.
void t7(TestOptions options)
throws DbException, FileNotFoundException
{
Db db = new Db(null, 0);
DbEnv dbenv = new DbEnv(0);
System.gc();
System.runFinalization();
}
// remove any existing environment or database
void removeall(boolean use_db)
{
{
if (use_db) {
try {
/**/
//memory leak for this:
Db tmpdb = new Db(null, 0);
tmpdb.remove(CONSTRUCT01_DBFULLPATH, null, 0);
/**/
DbEnv tmpenv = new DbEnv(0);
tmpenv.remove(CONSTRUCT01_DBDIR, Db.DB_FORCE);
}
catch (DbException dbe) {
System.err.println("error during remove: " + dbe);
}
catch (FileNotFoundException fnfe) {
//expected error:
// System.err.println("error during remove: " + fnfe);
}
}
}
check_file_removed(CONSTRUCT01_DBFULLPATH, true, !use_db);
for (int i=0; i<8; i++) {
String fname = "__db.00" + i;
check_file_removed(fname, true, !use_db);
}
}
boolean doall(TestOptions options)
{
itemcount = 0;
try {
removeall((options.testmask & 1) != 0);
for (int item=1; item<32; item++) {
if ((options.testmask & (1 << item)) != 0) {
VERBOSEOUT(" Running test " + item + ":");
switch (item) {
case 1:
t1(options);
break;
case 2:
t2(options);
break;
case 3:
t3(options);
break;
case 4:
t4(options);
break;
case 5:
t5(options);
break;
case 6:
t6(options);
break;
case 7:
t7(options);
break;
default:
ERR("unknown test case: " + item);
break;
}
VERBOSEOUT(" finished.\n");
}
}
removeall((options.testmask & 1) != 0);
options.successcounter++;
return true;
}
catch (DbException dbe) {
ERR("EXCEPTION RECEIVED: " + dbe);
}
catch (FileNotFoundException fnfe) {
ERR("EXCEPTION RECEIVED: " + fnfe);
}
return false;
}
public static void main(String args[])
{
int iterations = 200;
int mask = 0x7f;
// Make sure the database file is removed before we start.
check_file_removed(CONSTRUCT01_DBFULLPATH, true, true);
for (int argcnt=0; argcnt<args.length; argcnt++) {
String arg = args[argcnt];
if (arg.charAt(0) == '-') {
// keep on lower bit, which means to remove db between tests.
mask = 1;
for (int pos=1; pos<arg.length(); pos++) {
char ch = arg.charAt(pos);
if (ch >= '0' && ch <= '9') {
mask |= (1 << (ch - '0'));
}
else if (ch == 'v') {
verbose_flag = true;
}
else {
ERR("Usage: construct01 [-testdigits] count");
}
}
VERBOSEOUT("mask = " + mask);
}
else {
try {
iterations = Integer.parseInt(arg);
if (iterations < 0) {
ERR("Usage: construct01 [-testdigits] count");
}
}
catch (NumberFormatException nfe) {
ERR("EXCEPTION RECEIVED: " + nfe);
}
}
}
// Run GC before and after the test to give
// a baseline for any Java memory used.
//
System.gc();
System.runFinalization();
VERBOSEOUT("gc complete");
long starttotal = Runtime.getRuntime().totalMemory();
long startfree = Runtime.getRuntime().freeMemory();
TestConstruct01 con = new TestConstruct01();
int[] dbt_flags = { 0, Db.DB_DBT_MALLOC, Db.DB_DBT_REALLOC };
String[] dbt_flags_name = { "default", "malloc", "realloc" };
TestOptions options = new TestOptions();
options.testmask = mask;
for (int flagiter = 0; flagiter < dbt_flags.length; flagiter++) {
options.dbt_alloc_flags = dbt_flags[flagiter];
VERBOSEOUT("Running with DBT alloc flags: " +
dbt_flags_name[flagiter]);
for (int i=0; i<iterations; i++) {
if (iterations != 0) {
VERBOSEOUT("(" + i + "/" + iterations + ") ");
}
VERBOSEOUT("construct01 running:");
if (!con.doall(options)) {
ERR("SOME TEST FAILED");
}
else {
VERBOSEOUT("\nTESTS SUCCESSFUL");
}
// We continually run GC during the test to keep
// the Java memory usage low. That way we can
// monitor the total memory usage externally
// (e.g. via ps) and verify that we aren't leaking
// memory in the JNI or DB layer.
//
System.gc();
System.runFinalization();
VERBOSEOUT("gc complete");
}
}
if (options.successcounter == 600) {
System.out.println("ALL TESTS SUCCESSFUL");
}
else {
System.out.println("***FAIL: " + (600 - options.successcounter) +
" tests did not complete");
}
long endtotal = Runtime.getRuntime().totalMemory();
long endfree = Runtime.getRuntime().freeMemory();
System.out.println("delta for total mem: " + magnitude(endtotal - starttotal));
System.out.println("delta for free mem: " + magnitude(endfree - startfree));
return;
}
static String magnitude(long value)
{
final long max = 10000000;
for (long scale = 10; scale <= max; scale *= 10) {
if (value < scale && value > -scale)
return "<" + scale;
}
return ">" + max;
}
}
class TestOptions
{
int testmask = 0; // which tests to run
int dbt_alloc_flags = 0; // DB_DBT_* flags to use
int successcounter =0;
}
|