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
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002,2010 Oracle. All rights reserved.
*
* $Id: LogEntryVersionTest.java,v 1.24.2.2 2010/01/04 15:30:44 cwl Exp $
*/
package com.sleepycat.je.logversion;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.LineNumberReader;
import junit.framework.TestCase;
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.OperationStatus;
import com.sleepycat.je.VerifyConfig;
import com.sleepycat.je.dbi.EnvironmentImpl;
import com.sleepycat.je.log.FileManager;
import com.sleepycat.je.log.TestUtilLogReader;
import com.sleepycat.je.log.entry.LNLogEntry;
import com.sleepycat.je.log.entry.LogEntry;
import com.sleepycat.je.util.TestUtils;
/**
* Tests that prior versions of log entries can be read. This test is used in
* conjunction with MakeLogEntryVersionData, a main program that was used once
* to generate log files named je-x.y.z.jdb, where x.y.z is the version of JE
* used to create the log. When a new test log file is created with
* MakeLogEntryVersionData, add a new test_x_y_z() method to this class.
*
* @see MakeLogEntryVersionData
*/
public class LogEntryVersionTest extends TestCase {
private File envHome;
private Environment env;
private Database db1;
private Database db2;
public LogEntryVersionTest() {
envHome = new File(System.getProperty(TestUtils.DEST_DIR));
}
public void setUp()
throws IOException {
TestUtils.removeLogFiles("Setup", envHome, false);
TestUtils.removeFiles("Setup", envHome, FileManager.DEL_SUFFIX);
}
public void tearDown()
throws Exception {
try {
if (env != null) {
env.close();
}
} catch (Throwable e) {
System.out.println("tearDown: " + e);
}
try {
TestUtils.removeLogFiles("tearDown", envHome, true);
TestUtils.removeFiles("tearDown", envHome, FileManager.DEL_SUFFIX);
} catch (Throwable e) {
System.out.println("tearDown: " + e);
}
envHome = null;
env = null;
db1 = null;
db2 = null;
}
private void openEnv(String jeVersion, boolean readOnly)
throws DatabaseException, IOException {
/* Copy log file resource to log file zero. */
String resName = "je-" + jeVersion + ".jdb";
TestUtils.loadLog(getClass(), resName, envHome);
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setAllowCreate(false);
envConfig.setReadOnly(readOnly);
envConfig.setTransactional(true);
env = new Environment(envHome, envConfig);
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setAllowCreate(false);
dbConfig.setReadOnly(readOnly);
dbConfig.setSortedDuplicates(true);
db1 = env.openDatabase(null, Utils.DB1_NAME, dbConfig);
db2 = env.openDatabase(null, Utils.DB2_NAME, dbConfig);
}
private void closeEnv()
throws DatabaseException {
db1.close();
db1 = null;
db2.close();
db2 = null;
env.close();
env = null;
}
public void test_1_5_4()
throws DatabaseException, IOException {
doTest("1.5.4");
}
public void test_1_7_0()
throws DatabaseException, IOException {
doTest("1.7.0");
}
/**
* JE 2.0: FileHeader version 3.
*/
public void test_2_0_0()
throws DatabaseException, IOException {
doTest("2.0.0");
}
/**
* JE 3.0.12: FileHeader version 4.
*/
public void test_3_0_12()
throws DatabaseException, IOException {
/*
* The test was not run until JE 3.1.25, but no format changes were
* made between 3.0.12 and 3.1.25.
*/
doTest("3.1.25");
}
/**
* JE 3.2.79: FileHeader version 5. Version 5 was actually introduced in
* 3.2.22
*/
public void test_3_2_79()
throws DatabaseException, IOException {
doTest("3.2.79");
}
private void doTest(String jeVersion)
throws DatabaseException, IOException {
openEnv(jeVersion, true /*readOnly*/);
VerifyConfig verifyConfig = new VerifyConfig();
verifyConfig.setAggressive(true);
assertTrue(env.verify(verifyConfig, System.err));
DatabaseEntry key = new DatabaseEntry();
DatabaseEntry data = new DatabaseEntry();
OperationStatus status;
/* Database 1 is empty because the txn was aborted. */
Cursor cursor = db1.openCursor(null, null);
try {
status = cursor.getFirst(key, data, null);
assertEquals(OperationStatus.NOTFOUND, status);
} finally {
cursor.close();
}
/* Database 2 has one record: {3, 0} */
cursor = db2.openCursor(null, null);
try {
status = cursor.getFirst(key, data, null);
assertEquals(OperationStatus.SUCCESS, status);
assertEquals(3, Utils.value(key));
assertEquals(0, Utils.value(data));
status = cursor.getNext(key, data, null);
assertEquals(OperationStatus.NOTFOUND, status);
} finally {
cursor.close();
}
/*
* Database 3 should have one record (99,79) that was explicitly
* committed. We only added this commit record and test case when
* implementing JE 3.3, and only went to the trouble of backporting the
* MakeLogEntryVersionData to file version 5. (It's just an additional
* test, it should be fine for earlier versions.
*/
if (!((jeVersion.startsWith("1")) ||
(jeVersion.startsWith("2")) ||
(jeVersion.startsWith("3.1")))) {
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setReadOnly(true);
Database db3 = env.openDatabase(null, Utils.DB3_NAME, dbConfig);
cursor = db3.openCursor(null, null);
try {
status = cursor.getFirst(key, data, null);
assertEquals(OperationStatus.SUCCESS, status);
assertEquals(99, Utils.value(key));
assertEquals(79, Utils.value(data));
status = cursor.getNext(key, data, null);
assertEquals(OperationStatus.NOTFOUND, status);
} finally {
cursor.close();
db3.close();
}
}
/*
* Verify log entry types using a log reader. Read both full and
* partial items.
*/
String resName = "je-" + jeVersion + ".txt";
LineNumberReader textReader = new LineNumberReader
(new InputStreamReader(getClass().getResourceAsStream(resName)));
EnvironmentImpl envImpl = DbInternal.envGetEnvironmentImpl(env);
TestUtilLogReader fullLogReader =
new TestUtilLogReader(envImpl, true /* readFullItem */);
TestUtilLogReader partialLogReader =
new TestUtilLogReader(envImpl, false /* readFullItem */);
String expectedType = textReader.readLine();
while (expectedType != null) {
/* Read the full item. */
assertTrue(fullLogReader.readNextEntry());
String foundType = fullLogReader.getEntryType().toString();
assertEquals
("At line " + textReader.getLineNumber(),
expectedType.substring(0, expectedType.indexOf('/')),
foundType);
/*
* Read a partial item to mimic recovery. So far, partial reads are
* only used for LNLogEntries, and must provide the node id,
* database id (the database this node is a part of) and the txn id
*/
assertTrue(partialLogReader.readNextEntry());
foundType = partialLogReader.getEntryType().toString();
LogEntry entry = partialLogReader.getEntry();
if (entry instanceof LNLogEntry) {
assertTrue(((LNLogEntry) entry).getDbId() != null);
assertTrue(((LNLogEntry) entry).getNodeId() >= 0);
/*
* Sometimes the txnId is null -- just make sure we
* don't get NullPointerException.
*/
@SuppressWarnings("unused")
Long txnId = ((LNLogEntry) entry).getTxnId();
}
assertEquals
("At line " + textReader.getLineNumber(),
expectedType.substring(0, expectedType.indexOf('/')),
foundType);
expectedType = textReader.readLine();
}
assertTrue("This test should be sure to read some lines",
textReader.getLineNumber() > 0);
assertFalse("No more expected entries after line " +
textReader.getLineNumber() + " but found: " +
fullLogReader.getEntry(),
fullLogReader.readNextEntry());
assertTrue(env.verify(verifyConfig, System.err));
closeEnv();
/*
* Do enough inserts to cause a split and perform some other write
* operations for good measure.
*/
openEnv(jeVersion, false /*readOnly*/);
for (int i = -127; i < 127; i += 1) {
status = db2.put(null, Utils.entry(i), Utils.entry(0));
assertEquals(OperationStatus.SUCCESS, status);
}
/* Do updates. */
for (int i = -127; i < 127; i += 1) {
status = db2.put(null, Utils.entry(i), Utils.entry(1));
assertEquals(OperationStatus.SUCCESS, status);
}
/* Do deletes. */
for (int i = -127; i < 127; i += 1) {
status = db2.delete(null, Utils.entry(i));
assertEquals(OperationStatus.SUCCESS, status);
}
/* Same for duplicates. */
for (int i = -127; i < 127; i += 1) {
status = db2.put(null, Utils.entry(0), Utils.entry(i));
assertEquals(OperationStatus.SUCCESS, status);
}
for (int i = -127; i < 127; i += 1) {
status = db2.put(null, Utils.entry(0), Utils.entry(i));
assertEquals(OperationStatus.SUCCESS, status);
}
cursor = db2.openCursor(null, null);
try {
status = cursor.getFirst(key, data, null);
while (status == OperationStatus.SUCCESS) {
status = cursor.delete();
assertEquals(OperationStatus.SUCCESS, status);
status = cursor.getNext(key, data, null);
}
} finally {
cursor.close();
}
assertTrue(env.verify(verifyConfig, System.err));
closeEnv();
}
}
|