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
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002,2010 Oracle. All rights reserved.
*
* $Id: EmptyBINTest.java,v 1.11.2.2 2010/01/04 15:30:43 cwl Exp $
*/
package com.sleepycat.je.incomp;
import java.io.File;
import java.io.IOException;
import java.util.Enumeration;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import com.sleepycat.je.CheckpointConfig;
import com.sleepycat.je.Cursor;
import com.sleepycat.je.Database;
import com.sleepycat.je.DatabaseConfig;
import com.sleepycat.je.DatabaseEntry;
import com.sleepycat.je.DatabaseException;
import com.sleepycat.je.DbInternal;
import com.sleepycat.je.Environment;
import com.sleepycat.je.EnvironmentConfig;
import com.sleepycat.je.LockMode;
import com.sleepycat.je.OperationStatus;
import com.sleepycat.je.config.EnvironmentParams;
import com.sleepycat.je.dbi.CursorImpl;
import com.sleepycat.je.util.TestUtils;
import com.sleepycat.je.utilint.TestHook;
/**
* Test that searches and cursor traversals execute correctly in the face of
* a BIN with 0 entries, and with tree pruning at key points.
*/
public class EmptyBINTest extends TestCase {
private static final boolean DEBUG = false;
private static final byte DEFAULT_VAL = 100;
private File envHome;
private Environment env;
private Database db;
private boolean useDups;
private boolean doPruningAtCursorLevel;
private boolean doPruningAtTreeLevel;
public EmptyBINTest() {
envHome = new File(System.getProperty(TestUtils.DEST_DIR));
}
public void setUp()
throws IOException {
TestUtils.removeLogFiles("Setup", envHome, false);
}
public void tearDown()
throws Exception {
if (db != null) {
try {
db.close();
} catch (DatabaseException ignore) {
}
}
if (env != null) {
try {
env.close();
} catch (DatabaseException ignore) {
}
}
env = null;
db = null;
setName(getName() + "-" +
(useDups ? "DUPS" : "!DUPS") +
"/" +
(doPruningAtCursorLevel ? "CURSORPRUNE" : "!CURSORPRUNE") +
"/" +
(doPruningAtTreeLevel ? "TREEPRUNE" : "!TREEPRUNE"));
super.tearDown();
TestUtils.removeLogFiles("TearDown", envHome, false);
}
/*
* Run all tests in four combinations, using dups, and invoking bin
* pruning.
*/
public static Test suite() {
TestSuite allTests = new TestSuite();
boolean[] dupCombo = new boolean[] {true, false};
boolean[] pruneCombo = new boolean[] {true, false};
for (int dup = 0; dup < dupCombo.length; dup++) {
for (int pruneCursor = 0;
pruneCursor < pruneCombo.length;
pruneCursor++) {
for (int pruneTree = 0;
pruneTree < pruneCombo.length;
pruneTree++) {
TestSuite suite = new TestSuite(EmptyBINTest.class);
Enumeration e = suite.tests();
while (e.hasMoreElements()) {
EmptyBINTest test = (EmptyBINTest) e.nextElement();
boolean pruneC = pruneCombo[pruneCursor];
boolean pruneT = pruneCombo[pruneTree];
if (pruneC && pruneT) {
/* Only do one hook at a time. */
break;
}
test.init(dupCombo[dup], pruneC, pruneT);
allTests.addTest(test);
}
}
}
}
return allTests;
}
private void init(boolean useDups,
boolean doPruningAtCursorLevel,
boolean doPruningAtTreeLevel) {
this.useDups = useDups;
this.doPruningAtCursorLevel = doPruningAtCursorLevel;
this.doPruningAtTreeLevel = doPruningAtTreeLevel;
if (DEBUG) {
System.out.println("useDups=" + useDups +
" doPruningAtCursorLevel=" +
doPruningAtCursorLevel +
" doPruningAtTreeLevel=" +
doPruningAtTreeLevel);
}
}
/* Non-dupes scans across an empty BIN. */
public void testScanFromEndOfFirstBin()
throws DatabaseException {
/*
* Tree holds <0,1> <2,3,4> <empty> <8,9,10>.
* |
* fwd scan starts --- -+
* Fwd scan starting at 4. Expect 4, 8, 9, 10
*/
doScanAcrossEmptyBin(true, // forward
(byte) 4, // start
new byte[] {4,8,9,10}); // expected
}
public void testScanFromLeftSideOfEmptyBin()
throws DatabaseException {
/*
* Tree holds <0,1> <2,3,4> <empty> <8,9,10>.
* |
* scan starts -------------+
* Fwd scan starting at 5 (deleted). Expect 8, 9, 10
*/
doScanAcrossEmptyBin(true, // forward
(byte) 5, // start
new byte[] {8,9,10}); // expected
}
public void testScanFromRightSideOfEmptyBin()
throws DatabaseException {
/*
* Tree holds <0,1> <2,3,4> <empty> <8,9,10>.
* |
* backwards scan starts ------+
* Backwards scan starting at 7 (deleted). Expect 8,4,3,2,1,0
*/
doScanAcrossEmptyBin(false, // backwards
(byte) 7, // start
new byte[] {8,4,3,2,1,0}); // expected
}
public void testScanFromBeginningOfLastBin()
throws DatabaseException {
/*
* Tree holds <0,1> <2,3,4> <empty> <8,9,10>.
* |
* backwards scan starts -----------+
*/
doScanAcrossEmptyBin(false, // backwards
(byte) 8, // start
new byte[] {8,4,3,2,1,0}); // expected vals
}
public void testScanForward()
throws DatabaseException {
/*
* Tree holds <0,1> <2,3,4> <empty> <8,9,10>.
* Fwd scan starting with first. Expect 0, 1, 2, 4, 8, 9, 10.
*/
doScanAcrossEmptyBin(true, // forward
(byte) -1,
new byte[] {0,1,2,3,4,8,9,10});
}
public void testScanBackwards()
throws DatabaseException {
/*
* Tree holds <0,1> <2,3,4> <empty> <8,9,10>.
* Bwd scan starting with last. 10 -> 0
*/
doScanAcrossEmptyBin(false, // backwards
(byte) -1,
new byte[] {10,9,8,4,3,2,1,0});
}
/**
* Scan over an empty BIN that is in the middle of the tree. [#11778]
* The tree holds values from 0 - 10. Values 5, 6, 7 have been deleted.
* @param forward indicates use getNext().
* @param startKey >= 0 indicates do getSearchKeyRange to init cursor.
* @param expectVals are the elements to expect find
*/
private void doScanAcrossEmptyBin(boolean forward,
byte startKey,
byte[] expectVals)
throws DatabaseException {
int deleteStartVal = 5;
int deleteEndVal = 7;
openAndInitEmptyMiddleBIN(deleteStartVal, deleteEndVal);
if (DEBUG) {
DbInternal.dbGetDatabaseImpl(db).getTree().dump();
}
DatabaseEntry key = new DatabaseEntry();
DatabaseEntry data = new DatabaseEntry();
/*
* Position a cursor and check that we get the expected values.
*/
int cnt = 0;
Cursor cursor = db.openCursor(null, null);
CursorImpl cursorImpl = DbInternal.getCursorImpl(cursor);
if (doPruningAtCursorLevel) {
cursorImpl.setTestHook(new PruningHook(env));
}
if (doPruningAtTreeLevel) {
DbInternal.dbGetDatabaseImpl(db).getTree().
setSearchHook(new PruningHook(env));
}
int expectIndex = 0;
if (startKey < 0) {
if (forward) {
assertEquals(OperationStatus.SUCCESS,
cursor.getFirst(key, data, null));
} else {
assertEquals(OperationStatus.SUCCESS,
cursor.getLast(key, data, null));
}
} else {
if (useDups) {
key.setData(new byte[] {DEFAULT_VAL});
data.setData(new byte[] {startKey});
} else {
key.setData(new byte[] { startKey });
}
if ((startKey >= deleteStartVal) &&
(startKey <= deleteEndVal)) {
/* Test range query. */
if (useDups) {
assertEquals(OperationStatus.SUCCESS,
cursor.getSearchBothRange(key, data, null));
} else {
assertEquals(OperationStatus.SUCCESS,
cursor.getSearchKeyRange(key, data, null));
}
} else {
/* Test from getSearchKey(). */
if (useDups) {
assertEquals(OperationStatus.SUCCESS,
cursor.getSearchBoth(key, data, null));
} else {
assertEquals(OperationStatus.SUCCESS,
cursor.getSearchKey(key, data, null));
}
}
}
OperationStatus status;
do {
cnt++;
/* check value. */
if (DEBUG) {
System.out.println("=>key=" + key.getData()[0] +
" data=" + data.getData()[0]);
}
if (useDups) {
assertEquals(expectVals[expectIndex++], data.getData()[0]);
} else {
assertEquals(expectVals[expectIndex++], key.getData()[0]);
}
if (forward) {
status = cursor.getNext(key, data, null);
} else {
status = cursor.getPrev(key, data, null);
}
} while (status == OperationStatus.SUCCESS);
assertEquals(expectVals.length, cnt);
cursor.close();
closeEnv();
}
/**
* Create a tree with:
* IN
* / \
* IN IN
* / \ / \
* BIN1 BIN2 BIN3 BIN4
*
* where BIN1 has values 0,1
* BIN2 has valus 2,3,4
* BIN3 has valus 5,6,7
* BIN4 has valus 8,9,10
* Depending on configuration, the entries in BIN2 or BIN3
*/
private void openAndInitEmptyMiddleBIN(int deleteStartVal,
int deleteEndVal)
throws DatabaseException {
openEnv(false, "4");
DatabaseEntry data = new DatabaseEntry();
data.setData(new byte[] {DEFAULT_VAL});
DatabaseEntry key = new DatabaseEntry();
key.setData(new byte[] {DEFAULT_VAL});
/* Create four BINs */
OperationStatus status;
for (int i = 0; i < 11; i++) {
if (useDups) {
data = new DatabaseEntry(new byte[] { (byte) i });
} else {
key = new DatabaseEntry(new byte[] { (byte) i });
}
status = db.put(null, key, data);
assertEquals(OperationStatus.SUCCESS, status);
}
/* Empty out one of the middle ones. */
if (useDups) {
Cursor cursor = db.openCursor(null, null);
data = new DatabaseEntry(new byte[] { (byte) deleteStartVal });
assertEquals(OperationStatus.SUCCESS,
cursor.getSearchBoth(key, data, LockMode.DEFAULT));
for (int i = deleteStartVal; i <= deleteEndVal; i++) {
assertEquals(OperationStatus.SUCCESS,
cursor.delete());
assertEquals(OperationStatus.SUCCESS,
cursor.getNext(key, data, LockMode.DEFAULT));
}
cursor.close();
} else {
for (int i = deleteStartVal; i <= deleteEndVal; i++) {
key = new DatabaseEntry(new byte[] { (byte) i });
status = db.delete(null, key);
assertEquals(OperationStatus.SUCCESS, status);
}
}
CheckpointConfig config = new CheckpointConfig();
config.setForce(true);
env.checkpoint(config);
}
/**
* Opens the environment and db.
*/
private void openEnv(boolean transactional, String nodeMax)
throws DatabaseException {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(transactional);
envConfig.setConfigParam
(EnvironmentParams.ENV_RUN_INCOMPRESSOR.getName(), "true");
if (nodeMax != null) {
envConfig.setConfigParam
(EnvironmentParams.NODE_MAX.getName(), nodeMax);
envConfig.setConfigParam
(EnvironmentParams.NODE_MAX_DUPTREE.getName(), nodeMax);
}
envConfig.setAllowCreate(true);
env = new Environment(envHome, envConfig);
/* Make a db and open it. */
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setTransactional(transactional);
dbConfig.setSortedDuplicates(useDups);
dbConfig.setAllowCreate(true);
db = env.openDatabase(null, "testDB", dbConfig);
}
/**
* Closes the db and environment.
*/
private void closeEnv()
throws DatabaseException {
db.close();
db = null;
env.close();
env = null;
}
private static class PruningHook implements TestHook {
Environment env;
PruningHook(Environment env) {
this.env = env;
}
public void doHook() {
DbInternal.envGetEnvironmentImpl(env).getINCompressor().
wakeup();
Thread.yield();
try {
Thread.sleep(100);
} catch (Throwable T) {
}
}
public Object getHookValue() {
throw new UnsupportedOperationException();
}
public void doIOHook() throws IOException {
throw new UnsupportedOperationException();
}
public void hookSetup() {
throw new UnsupportedOperationException();
}
}
}
|