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 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002,2010 Oracle. All rights reserved.
*
* $Id: EnvironmentTest.java,v 1.213.2.33 2010/03/23 15:02:23 cwl Exp $
*/
package com.sleepycat.je;
import java.io.File;
import java.io.IOException;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import junit.framework.TestCase;
import com.sleepycat.je.config.ConfigParam;
import com.sleepycat.je.config.EnvironmentParams;
import com.sleepycat.je.dbi.DatabaseImpl;
import com.sleepycat.je.dbi.DbConfigManager;
import com.sleepycat.je.dbi.DbTree;
import com.sleepycat.je.dbi.EnvConfigObserver;
import com.sleepycat.je.dbi.EnvironmentImpl;
import com.sleepycat.je.dbi.MemoryBudget;
import com.sleepycat.je.txn.LockInfo;
import com.sleepycat.je.util.StringDbt;
import com.sleepycat.je.util.TestUtils;
import com.sleepycat.je.utilint.DaemonRunner;
public class EnvironmentTest extends TestCase {
private Environment env1;
private Environment env2;
private Environment env3;
private File envHome;
public EnvironmentTest() {
envHome = new File(System.getProperty(TestUtils.DEST_DIR));
}
public void setUp()
throws IOException {
TestUtils.removeLogFiles("Setup", envHome, false);
}
public void tearDown()
throws Exception {
/*
* Close down environments in case the unit test failed so that the log
* files can be removed.
*/
try {
if (env1 != null) {
env1.close();
env1 = null;
}
} catch (DatabaseException e) {
/* ok, the test closed it */
}
try {
if (env2 != null) {
env2.close();
env2 = null;
}
} catch (DatabaseException e) {
/* ok, the test closed it */
}
try {
if (env3 != null) {
env3.close();
env3 = null;
}
} catch (DatabaseException e) {
/* ok, the test closed it */
}
TestUtils.removeLogFiles("TearDown", envHome, false);
}
/**
* Test open and close of an environment.
*/
public void testBasic()
throws Throwable {
try {
assertEquals("Checking version", "3.3.98",
JEVersion.CURRENT_VERSION.getVersionString());
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
envConfig.setCacheSize(MemoryBudget.MIN_MAX_MEMORY_SIZE);
/* Don't track detail with a tiny cache size. */
envConfig.setConfigParam
(EnvironmentParams.CLEANER_TRACK_DETAIL.getName(), "false");
envConfig.setConfigParam
(EnvironmentParams.NODE_MAX.getName(), "6");
envConfig.setConfigParam
(EnvironmentParams.LOG_MEM_SIZE.getName(),
EnvironmentParams.LOG_MEM_SIZE_MIN_STRING);
envConfig.setConfigParam
(EnvironmentParams.NUM_LOG_BUFFERS.getName(), "2");
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
env1.close();
/* Try to open and close again, now that the environment exists. */
envConfig.setAllowCreate(false);
env1 = new Environment(envHome, envConfig);
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
/**
* Test creation of a reserved name fails.
*/
public void testNoCreateReservedNameDB()
throws Throwable {
try {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setAllowCreate(true);
dbConfig.setTransactional(true);
try {
env1.openDatabase(null, DbTree.VLSN_MAP_DB_NAME, dbConfig);
fail("expected DatabaseException since Environment not " +
"transactional");
} catch (IllegalArgumentException IAE) {
}
env1.close();
/* Try to open and close again, now that the environment exists. */
envConfig.setAllowCreate(false);
env1 = new Environment(envHome, envConfig);
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
/**
* Test environment reference counting.
*/
public void testReferenceCounting()
throws Throwable {
try {
/* Create two environment handles on the same environment. */
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
envConfig.setCacheSize(MemoryBudget.MIN_MAX_MEMORY_SIZE);
/* Don't track detail with a tiny cache size. */
envConfig.setConfigParam
(EnvironmentParams.CLEANER_TRACK_DETAIL.getName(), "false");
envConfig.setConfigParam(EnvironmentParams.NODE_MAX.getName(),
"6");
envConfig.setConfigParam
(EnvironmentParams.LOG_MEM_SIZE.getName(),
EnvironmentParams.LOG_MEM_SIZE_MIN_STRING);
envConfig.setConfigParam
(EnvironmentParams.NUM_LOG_BUFFERS.getName(), "2");
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
envConfig.setAllowCreate(false);
env2 = new Environment(envHome, envConfig);
assertEquals("DbEnvironments should be equal",
env1.getEnvironmentImpl(),
env2.getEnvironmentImpl());
/* Try to close one of them twice */
env1.close();
try {
env1.close();
fail("Didn't catch DatabaseException");
} catch (DatabaseException DENOE) {
}
/*
* Close both, open a third handle, should get a new
* EnvironmentImpl.
*/
EnvironmentImpl dbenv1 = env1.getEnvironmentImpl();
env2.close();
env1 = new Environment(envHome, envConfig);
assertTrue("EnvironmentImpl did not change",
dbenv1 != env1.getEnvironmentImpl());
try {
env2.close();
fail("Didn't catch DatabaseException");
} catch (DatabaseException DENOE) {
}
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
public void testTransactional()
throws Throwable {
try {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
try {
env1.beginTransaction(null, null);
fail("should have thrown exception for non transactional "+
" environment");
} catch (UnsupportedOperationException expected) {
}
String databaseName = "simpleDb";
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setAllowCreate(true);
dbConfig.setTransactional(true);
try {
env1.openDatabase(null, databaseName, dbConfig);
fail("expected IllegalArgumentException since Environment " +
" not transactional");
} catch (IllegalArgumentException expected) {
}
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
public void testReadOnly()
throws Throwable {
try {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setReadOnly(true);
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setAllowCreate(true);
dbConfig.setTransactional(true);
String databaseName = "simpleDb";
try {
env1.openDatabase(null, databaseName, dbConfig);
fail("expected DatabaseException since Environment is " +
"readonly");
} catch (IllegalArgumentException expected) {
}
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
/*
* Tests memOnly mode with a home dir that does not exist. [#15255]
*/
public void testMemOnly()
throws Throwable {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setAllowCreate(true);
envConfig.setTransactional(true);
envConfig.setConfigParam
(EnvironmentParams.LOG_MEMORY_ONLY.getName(), "true");
File noHome = new File("fileDoesNotExist");
assertTrue(!noHome.exists());
env1 = new Environment(noHome, envConfig);
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setAllowCreate(true);
dbConfig.setTransactional(true);
Database db = env1.openDatabase(null, "foo", dbConfig);
Transaction txn = env1.beginTransaction(null, null);
Cursor cursor = db.openCursor(txn, null);
doSimpleCursorPutAndDelete(cursor, false);
cursor.close();
txn.commit();
db.close();
env1.close();
assertTrue(!noHome.exists());
}
/**
* Tests that opening an environment after a clean close does not add to
* the log.
*/
public void testOpenWithoutCheckpoint()
throws Throwable {
/* Open, close, open. */
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
env1.close();
env1 = new Environment(envHome, null);
/* Check that no checkpoint was performed. */
EnvironmentStats stats = env1.getStats(null);
assertEquals(0, stats.getNCheckpoints());
env1.close();
env1 = null;
}
/**
* Test environment configuration.
*/
public void testConfig()
throws Throwable {
/* This tests assumes these props are immutable. */
assertTrue(!isMutableConfig("je.lock.timeout"));
assertTrue(!isMutableConfig("je.env.isReadOnly"));
try {
/*
* Make sure that the environment keeps its own copy of the
* configuration object.
*/
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setReadOnly(true);
envConfig.setAllowCreate(true);
envConfig.setLockTimeout(7777);
env1 = new Environment(envHome, envConfig);
/*
* Change the environment config object, make sure the
* environment cloned a copy when it was opened.
*/
envConfig.setReadOnly(false);
EnvironmentConfig retrievedConfig1 = env1.getConfig();
assertTrue(envConfig != retrievedConfig1);
assertEquals(true, retrievedConfig1.getReadOnly());
assertEquals(true, retrievedConfig1.getAllowCreate());
assertEquals(7777, retrievedConfig1.getLockTimeout());
/*
* Make sure that the environment returns a cloned config
* object when you call Environment.getConfig.
*/
retrievedConfig1.setReadOnly(false);
EnvironmentConfig retrievedConfig2 = env1.getConfig();
assertEquals(true, retrievedConfig2.getReadOnly());
assertTrue(retrievedConfig1 != retrievedConfig2);
/*
* Open a second environment handle, check that it's attributes
* are available.
*/
env2 = new Environment(envHome, null);
EnvironmentConfig retrievedConfig3 = env2.getConfig();
assertEquals(true, retrievedConfig3.getReadOnly());
assertEquals(7777, retrievedConfig3.getLockTimeout());
/*
* Open an environment handle on an existing environment with
* mismatching config params.
*/
try {
new Environment(envHome, TestUtils.initEnvConfig());
fail("Shouldn't open, config param has wrong number of params");
} catch (IllegalArgumentException e) {
/* expected */
}
try {
envConfig.setLockTimeout(8888);
new Environment(envHome, envConfig);
fail("Shouldn't open, cache size doesn't match");
} catch (IllegalArgumentException e) {
/* expected */
}
/*
* Ditto for the mutable attributes.
*/
EnvironmentMutableConfig mutableConfig =
new EnvironmentMutableConfig();
mutableConfig.setTxnNoSync(true);
env1.setMutableConfig(mutableConfig);
EnvironmentMutableConfig retrievedMutableConfig1 =
env1.getMutableConfig();
assertTrue(mutableConfig != retrievedMutableConfig1);
retrievedMutableConfig1.setTxnNoSync(false);
EnvironmentMutableConfig retrievedMutableConfig2 =
env1.getMutableConfig();
assertEquals(true, retrievedMutableConfig2.getTxnNoSync());
assertTrue(retrievedMutableConfig1 != retrievedMutableConfig2);
/*
* Plus check that mutables can be retrieved via the main config.
*/
EnvironmentConfig retrievedConfig4 = env1.getConfig();
assertEquals(true, retrievedConfig4.getTxnNoSync());
retrievedConfig4 = env2.getConfig();
assertEquals(false, retrievedConfig4.getTxnNoSync());
/*
* Check that mutables can be passed to the ctor.
*/
EnvironmentConfig envConfig3 = env2.getConfig();
assertEquals(false, envConfig3.getTxnNoSync());
envConfig3.setTxnNoSync(true);
env3 = new Environment(envHome, envConfig3);
EnvironmentMutableConfig retrievedMutableConfig3 =
env3.getMutableConfig();
assertNotSame(envConfig3, retrievedMutableConfig3);
assertEquals(true, retrievedMutableConfig3.getTxnNoSync());
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
/**
* Test the semantics of env-wide mutable config properties.
*/
public void testMutableConfig()
throws DatabaseException {
/*
* Note that during unit testing the shared je.properties is expected
* to be empty, so we don't test the application of je.properties here.
*/
final String P1 = EnvironmentParams.ENV_RUN_INCOMPRESSOR.getName();
final String P2 = EnvironmentParams.ENV_RUN_CLEANER.getName();
final String P3 = EnvironmentParams.ENV_RUN_CHECKPOINTER.getName();
assertTrue(isMutableConfig(P1));
assertTrue(isMutableConfig(P2));
assertTrue(isMutableConfig(P3));
EnvironmentConfig config;
EnvironmentMutableConfig mconfig;
/*
* Create env1, first handle.
* P1 defaults to true.
* P2 is set to true (the default).
* P3 is set to false (not the default).
*/
config = TestUtils.initEnvConfig();
config.setAllowCreate(true);
config.setConfigParam(P2, "true");
config.setConfigParam(P3, "false");
env1 = new Environment(envHome, config);
check3Params(env1, P1, "true", P2, "true", P3, "false");
MyObserver observer = new MyObserver();
env1.getEnvironmentImpl().addConfigObserver(observer);
assertEquals(0, observer.testAndReset());
/*
* Open env2, second handle, test that no mutable params can be
* overridden.
* P1 is set to false.
* P2 is set to false.
* P3 is set to true.
*/
config = TestUtils.initEnvConfig();
config.setConfigParam(P1, "false");
config.setConfigParam(P2, "false");
config.setConfigParam(P3, "true");
env2 = new Environment(envHome, config);
assertEquals(0, observer.testAndReset());
check3Params(env1, P1, "true", P2, "true", P3, "false");
/*
* Set mutable config explicitly.
*/
mconfig = env2.getMutableConfig();
mconfig.setConfigParam(P1, "false");
mconfig.setConfigParam(P2, "false");
mconfig.setConfigParam(P3, "true");
env2.setMutableConfig(mconfig);
assertEquals(1, observer.testAndReset());
check3Params(env2, P1, "false", P2, "false", P3, "true");
env1.close();
env1 = null;
env2.close();
env2 = null;
}
/**
* Checks that je.txn.deadlockStackTrace is mutable and takes effect.
*/
public void testTxnDeadlockStackTrace()
throws DatabaseException {
String name = EnvironmentParams.TXN_DEADLOCK_STACK_TRACE.getName();
assertTrue(isMutableConfig(name));
EnvironmentConfig config = TestUtils.initEnvConfig();
config.setAllowCreate(true);
config.setConfigParam(name, "true");
env1 = new Environment(envHome, config);
assertTrue(LockInfo.getDeadlockStackTrace());
EnvironmentMutableConfig mconfig = env1.getMutableConfig();
mconfig.setConfigParam(name, "false");
env1.setMutableConfig(mconfig);
assertTrue(!LockInfo.getDeadlockStackTrace());
mconfig = env1.getMutableConfig();
mconfig.setConfigParam(name, "true");
env1.setMutableConfig(mconfig);
assertTrue(LockInfo.getDeadlockStackTrace());
env1.close();
env1 = null;
}
/**
* Checks three config parameter values.
*/
private void check3Params(Environment env,
String p1, String v1,
String p2, String v2,
String p3, String v3)
throws DatabaseException {
EnvironmentConfig config = env.getConfig();
assertEquals(v1, config.getConfigParam(p1));
assertEquals(v2, config.getConfigParam(p2));
assertEquals(v3, config.getConfigParam(p3));
EnvironmentMutableConfig mconfig = env.getMutableConfig();
assertEquals(v1, mconfig.getConfigParam(p1));
assertEquals(v2, mconfig.getConfigParam(p2));
assertEquals(v3, mconfig.getConfigParam(p3));
}
/**
* Returns whether a config parameter is mutable.
*/
private boolean isMutableConfig(String name) {
ConfigParam param = (ConfigParam)
EnvironmentParams.SUPPORTED_PARAMS.get(name);
assert param != null;
return param.isMutable();
}
/**
* Observes config changes and remembers how many times it was called.
*/
private static class MyObserver implements EnvConfigObserver {
private int count = 0;
public void envConfigUpdate(DbConfigManager mgr,
EnvironmentMutableConfig ignore) {
count += 1;
}
int testAndReset() {
int result = count;
count = 0;
return result;
}
}
/**
* Make sure that config param loading follows the right precedence.
*/
public void testParamLoading()
throws Throwable {
File testEnvHome = null;
try {
/*
* A je.properties file has been put into
* <testdestdir>/propTest/je.properties
*/
StringBuffer testPropsEnv = new StringBuffer();
testPropsEnv.append(System.getProperty(TestUtils.DEST_DIR));
testPropsEnv.append(File.separatorChar);
testPropsEnv.append("propTest");
testEnvHome = new File(testPropsEnv.toString());
TestUtils.removeLogFiles("testParamLoading start",
testEnvHome, false);
/*
* Set some configuration params programatically. Do not use
* TestUtils.initEnvConfig since we're counting properties.
*/
EnvironmentConfig appConfig = new EnvironmentConfig();
appConfig.setConfigParam("je.log.numBuffers", "88");
appConfig.setConfigParam
("je.log.totalBufferBytes",
EnvironmentParams.LOG_MEM_SIZE_MIN_STRING + 10);
appConfig.setAllowCreate(true);
Environment appEnv = new Environment(testEnvHome, appConfig);
EnvironmentConfig envConfig = appEnv.getConfig();
assertEquals(3, envConfig.getNumExplicitlySetParams());
assertEquals("false",
envConfig.getConfigParam("je.env.recovery"));
assertEquals("7001",
envConfig.getConfigParam("je.log.totalBufferBytes"));
assertEquals("200",
envConfig.getConfigParam("je.log.numBuffers"));
appEnv.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
finally {
TestUtils.removeLogFiles("testParamLoadingEnd",
testEnvHome, false);
}
}
public void testDbRename()
throws Throwable {
try {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
String databaseName = "simpleDb";
String newDatabaseName = "newSimpleDb";
/* Try to rename a non-existent db. */
try {
env1.renameDatabase(null, databaseName, newDatabaseName);
fail("Rename on non-existent db should fail");
} catch (DatabaseException e) {
/* expect exception */
}
/* Now create a test db. */
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setAllowCreate(true);
dbConfig.setTransactional(true);
Database exampleDb = env1.openDatabase(null, databaseName,
dbConfig);
Transaction txn = env1.beginTransaction(null, null);
Cursor cursor = exampleDb.openCursor(txn, null);
doSimpleCursorPutAndDelete(cursor, false);
cursor.close();
txn.commit();
exampleDb.close();
dbConfig.setAllowCreate(false);
env1.renameDatabase(null, databaseName, newDatabaseName);
exampleDb = env1.openDatabase(null, newDatabaseName, dbConfig);
cursor = exampleDb.openCursor(null, null);
// XXX doSimpleVerification(cursor);
cursor.close();
/* Check debug name. */
DatabaseImpl dbImpl = DbInternal.dbGetDatabaseImpl(exampleDb);
assertEquals(newDatabaseName, dbImpl.getDebugName());
exampleDb.close();
try {
exampleDb = env1.openDatabase(null, databaseName, dbConfig);
fail("didn't get db not found exception");
} catch (DatabaseNotFoundException expected) {
}
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
public void testDbRenameCommit()
throws Throwable {
try {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
String databaseName = "simpleRenameCommitDb";
String newDatabaseName = "newSimpleRenameCommitDb";
Transaction txn = env1.beginTransaction(null, null);
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setTransactional(true);
dbConfig.setAllowCreate(true);
Database exampleDb = env1.openDatabase(txn, databaseName,
dbConfig);
Cursor cursor = exampleDb.openCursor(txn, null);
doSimpleCursorPutAndDelete(cursor, false);
cursor.close();
exampleDb.close();
dbConfig.setAllowCreate(false);
env1.renameDatabase(txn, databaseName, newDatabaseName);
exampleDb = env1.openDatabase(txn, newDatabaseName, dbConfig);
cursor = exampleDb.openCursor(txn, null);
cursor.close();
exampleDb.close();
try {
exampleDb = env1.openDatabase(txn, databaseName, dbConfig);
fail("didn't get db not found exception");
} catch (DatabaseNotFoundException expected) {
}
txn.commit();
try {
exampleDb = env1.openDatabase(null, databaseName, null);
fail("didn't catch DatabaseException opening old name");
} catch (DatabaseNotFoundException expected) {
}
try {
exampleDb = env1.openDatabase(null, newDatabaseName, null);
exampleDb.close();
} catch (DatabaseException DBE) {
fail("caught unexpected exception");
}
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
public void testDbRenameAbort()
throws Throwable {
try {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
/* Create a database. */
String databaseName = "simpleRenameAbortDb";
String newDatabaseName = "newSimpleRenameAbortDb";
Transaction txn = env1.beginTransaction(null, null);
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setTransactional(true);
dbConfig.setAllowCreate(true);
Database exampleDb =
env1.openDatabase(txn, databaseName, dbConfig);
/* Put some data in, close the database, commit. */
Cursor cursor = exampleDb.openCursor(txn, null);
doSimpleCursorPutAndDelete(cursor, false);
cursor.close();
exampleDb.close();
txn.commit();
/*
* Rename under another txn, shouldn't be able to open under the
* old name.
*/
txn = env1.beginTransaction(null, null);
env1.renameDatabase(txn, databaseName, newDatabaseName);
dbConfig.setAllowCreate(false);
exampleDb = env1.openDatabase(txn, newDatabaseName, dbConfig);
cursor = exampleDb.openCursor(txn, null);
// XXX doSimpleVerification(cursor);
cursor.close();
exampleDb.close();
try {
exampleDb = env1.openDatabase(txn, databaseName, dbConfig);
fail("didn't get db not found exception");
} catch (DatabaseNotFoundException expected) {
}
/*
* Abort the rename, should be able to open under the old name with
* empty props (DB_CREATE not set)
*/
txn.abort();
exampleDb = new Database(env1);
try {
exampleDb = env1.openDatabase(null, databaseName, null);
exampleDb.close();
} catch (DatabaseException dbe) {
fail("caught DatabaseException opening old name:" +
dbe.getMessage());
}
/* Shouldn't be able to open under the new name. */
try {
exampleDb = env1.openDatabase(null, newDatabaseName, null);
fail("didn't catch DatabaseException opening new name");
} catch (DatabaseNotFoundException expected) {
}
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
public void testDbRemove()
throws Throwable {
try {
/* Set up an environment. */
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
String databaseName = "simpleDb";
/* Try to remove a non-existent db */
try {
env1.removeDatabase(null, databaseName);
fail("Remove of non-existent db should fail");
} catch (DatabaseNotFoundException expected) {
}
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setTransactional(true);
dbConfig.setAllowCreate(true);
Database exampleDb =
env1.openDatabase(null, databaseName, dbConfig);
Transaction txn = env1.beginTransaction(null, null);
Cursor cursor = exampleDb.openCursor(txn, null);
doSimpleCursorPutAndDelete(cursor, false);
cursor.close();
txn.commit();
/* Remove should fail because database is open. */
try {
env1.removeDatabase(null, databaseName);
fail("didn't get db open exception");
} catch (DatabaseException DBE) {
}
exampleDb.close();
env1.removeDatabase(null, databaseName);
/* Remove should fail because database does not exist. */
try {
exampleDb = env1.openDatabase(null, databaseName, null);
fail("did not catch db does not exist exception");
} catch (DatabaseNotFoundException expected) {
}
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
public void testDbRemoveCommit()
throws Throwable {
try {
/* Set up an environment. */
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
/* Make a database. */
String databaseName = "simpleDb";
Transaction txn = env1.beginTransaction(null, null);
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setTransactional(true);
dbConfig.setAllowCreate(true);
Database exampleDb =
env1.openDatabase(txn, databaseName, dbConfig);
/* Insert and delete data in it. */
Cursor cursor = exampleDb.openCursor(txn, null);
doSimpleCursorPutAndDelete(cursor, false);
cursor.close();
/*
* Try a remove without closing the open Database handle. Should
* get an exception.
*/
try {
env1.removeDatabase(txn, databaseName);
fail("didn't get db open exception");
} catch (DatabaseException DBE) {
}
exampleDb.close();
/* Do a remove, try to open again. */
env1.removeDatabase(txn, databaseName);
try {
dbConfig.setAllowCreate(false);
exampleDb = env1.openDatabase(txn, databaseName, dbConfig);
fail("did not catch db does not exist exception");
} catch (DatabaseNotFoundException expected) {
}
txn.commit();
/* Try to open, the db should have been removed. */
try {
exampleDb = env1.openDatabase(null, databaseName, null);
fail("did not catch db does not exist exception");
} catch (DatabaseNotFoundException expected) {
}
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
public void testDbRemoveAbort()
throws Throwable {
try {
/* Set up an environment. */
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
/* Create a database, commit. */
String databaseName = "simpleDb";
Transaction txn = env1.beginTransaction(null, null);
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setTransactional(true);
dbConfig.setAllowCreate(true);
Database exampleDb =
env1.openDatabase(txn, databaseName, dbConfig);
txn.commit();
/* Start a new txn and put some data in the created db. */
txn = env1.beginTransaction(null, null);
Cursor cursor = exampleDb.openCursor(txn, null);
doSimpleCursorPutAndDelete(cursor, false);
cursor.close();
/*
* Try to remove, we should get an exception because the db is
* open.
*/
try {
env1.removeDatabase(txn, databaseName);
fail("didn't get db open exception");
} catch (DatabaseException DBE) {
}
exampleDb.close();
/*
* txn can only be aborted at this point since the removeDatabase()
* timed out.
*/
txn.abort();
txn = env1.beginTransaction(null, null);
env1.removeDatabase(txn, databaseName);
try {
dbConfig.setAllowCreate(false);
exampleDb = env1.openDatabase(txn, databaseName, dbConfig);
fail("did not catch db does not exist exception");
} catch (DatabaseNotFoundException expected) {
}
/* Abort, should rollback the db remove. */
txn.abort();
try {
DatabaseConfig dbConfig2 = new DatabaseConfig();
dbConfig2.setTransactional(true);
exampleDb = env1.openDatabase(null, databaseName, dbConfig2);
} catch (DatabaseException DBE) {
fail("db does not exist anymore after delete/abort");
}
exampleDb.close();
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
/**
* Provides general testing of getDatabaseNames. Additionally verifies a
* fix for a bug that occurred when the first DB (lowest valued name) was
* removed or renamed prior to calling getDatabaseNames. A NPE occurred
* in this case if the compressor had not yet deleted the BIN entry for
* the removed/renamed name. [#13377]
*/
public void testGetDatabaseNames()
throws DatabaseException {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setAllowCreate(true);
envConfig.setConfigParam
(EnvironmentParams.ENV_RUN_INCOMPRESSOR.getName(), "false");
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setAllowCreate(true);
/* Start with no databases. */
Set<String> dbNames = new HashSet<String>();
env1 = new Environment(envHome, envConfig);
checkDbNames(dbNames, env1.getDatabaseNames());
/* Add DB1. */
dbNames.add("DB1");
Database db = env1.openDatabase(null, "DB1", dbConfig);
db.close();
checkDbNames(dbNames, env1.getDatabaseNames());
/* Add DB2. */
dbNames.add("DB2");
db = env1.openDatabase(null, "DB2", dbConfig);
db.close();
checkDbNames(dbNames, env1.getDatabaseNames());
/* Rename DB2 to DB3 (this caused NPE). */
dbNames.remove("DB2");
dbNames.add("DB3");
env1.renameDatabase(null, "DB2", "DB3");
checkDbNames(dbNames, env1.getDatabaseNames());
/* Remove DB1. */
dbNames.remove("DB1");
dbNames.add("DB4");
env1.renameDatabase(null, "DB1", "DB4");
checkDbNames(dbNames, env1.getDatabaseNames());
/* Add DB0. */
dbNames.add("DB0");
db = env1.openDatabase(null, "DB0", dbConfig);
db.close();
checkDbNames(dbNames, env1.getDatabaseNames());
/* Remove DB0 (this caused NPE). */
dbNames.remove("DB0");
env1.removeDatabase(null, "DB0");
checkDbNames(dbNames, env1.getDatabaseNames());
env1.close();
env1 = null;
}
/**
* Checks that the expected set of names equals the list of names returned
* from getDatabaseNames. A list can't be directly compared to a set using
* equals().
*/
private void checkDbNames(Set<String> expected, List<String> actual) {
assertEquals(expected.size(), actual.size());
assertEquals(expected, new HashSet<String>(actual));
}
/*
* This little test case can only invoke the compressor, since the evictor,
* cleaner and checkpointer are all governed by utilization metrics and are
* tested elsewhere.
*/
public void testDaemonManualInvocation()
throws Throwable {
try {
/* Set up an environment. */
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
String testPropVal = "120000000";
envConfig.setConfigParam
(EnvironmentParams.COMPRESSOR_WAKEUP_INTERVAL.getName(),
testPropVal);
envConfig.setConfigParam
(EnvironmentParams.ENV_RUN_INCOMPRESSOR.getName(), "false");
envConfig.setAllowCreate(true);
envConfig.setConfigParam
(EnvironmentParams.LOG_MEM_SIZE.getName(), "20000");
envConfig.setConfigParam
(EnvironmentParams.NUM_LOG_BUFFERS.getName(), "2");
env1 = new Environment(envHome, envConfig);
String databaseName = "simpleDb";
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setTransactional(true);
dbConfig.setAllowCreate(true);
Database exampleDb =
env1.openDatabase(null, databaseName, dbConfig);
Transaction txn = env1.beginTransaction(null, null);
Cursor cursor = exampleDb.openCursor(txn, null);
doSimpleCursorPutAndDelete(cursor, false);
cursor.close();
txn.commit();
exampleDb.close();
EnvironmentStats envStats = env1.getStats(TestUtils.FAST_STATS);
env1.compress();
envStats = env1.getStats(TestUtils.FAST_STATS);
long compressorTotal =
envStats.getSplitBins() +
envStats.getDbClosedBins() +
envStats.getCursorsBins() +
envStats.getNonEmptyBins() +
envStats.getProcessedBins() +
envStats.getInCompQueueSize();
assertTrue(compressorTotal > 0);
env1.close();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
/**
* Tests that each daemon can be turned on and off dynamically.
*/
public void testDaemonRunPause()
throws DatabaseException, InterruptedException {
final boolean isDalvik = EnvironmentImpl.IS_DALVIK;
final String[] runProps = {
EnvironmentParams.ENV_RUN_EVICTOR.getName(),
EnvironmentParams.ENV_RUN_CLEANER.getName(),
EnvironmentParams.ENV_RUN_CHECKPOINTER.getName(),
EnvironmentParams.ENV_RUN_INCOMPRESSOR.getName(),
};
EnvironmentConfig config = TestUtils.initEnvConfig();
config.setAllowCreate(true);
if (!isDalvik) {
config.setConfigParam
(EnvironmentParams.MAX_MEMORY.getName(),
MemoryBudget.MIN_MAX_MEMORY_SIZE_STRING);
}
/* Don't track detail with a tiny cache size. */
config.setConfigParam
(EnvironmentParams.CLEANER_TRACK_DETAIL.getName(), "false");
config.setConfigParam
(EnvironmentParams.CLEANER_BYTES_INTERVAL.getName(),
"100");
config.setConfigParam
(EnvironmentParams.CHECKPOINTER_BYTES_INTERVAL.getName(),
"100");
config.setConfigParam
(EnvironmentParams.COMPRESSOR_WAKEUP_INTERVAL.getName(),
"1000000");
if (!isDalvik) {
config.setConfigParam(EnvironmentParams.LOG_MEM_SIZE.getName(),
EnvironmentParams.LOG_MEM_SIZE_MIN_STRING);
}
config.setConfigParam
(EnvironmentParams.NUM_LOG_BUFFERS.getName(), "2");
setBoolConfigParams(config, runProps,
new boolean[] { false, false, false, false });
env1 = new Environment(envHome, config);
EnvironmentImpl envImpl = env1.getEnvironmentImpl();
final DaemonRunner[] daemons = {
envImpl.getEvictor(),
envImpl.getCleaner(),
envImpl.getCheckpointer(),
envImpl.getINCompressor(),
};
doTestDaemonRunPause(env1, daemons, runProps,
new boolean[] { false, false, false, false });
doTestDaemonRunPause(env1, daemons, runProps,
new boolean[] { true, false, false, false });
if (!envImpl.isNoLocking()) {
doTestDaemonRunPause(env1, daemons, runProps,
new boolean[] { false, true, false, false });
}
doTestDaemonRunPause(env1, daemons, runProps,
new boolean[] { false, false, true, false });
doTestDaemonRunPause(env1, daemons, runProps,
new boolean[] { false, false, false, true });
doTestDaemonRunPause(env1, daemons, runProps,
new boolean[] { false, false, false, false });
env1.close();
env1 = null;
}
/**
* Tests a set of daemon on/off settings.
*/
private void doTestDaemonRunPause(Environment env,
DaemonRunner[] daemons,
String[] runProps,
boolean[] runValues)
throws DatabaseException, InterruptedException {
/* Set daemon run properties. */
EnvironmentMutableConfig config = env.getMutableConfig();
setBoolConfigParams(config, runProps, runValues);
env.setMutableConfig(config);
/* Allow previously running daemons to come to a stop. */
for (int i = 0; i < 10; i += 1) {
Thread.yield();
Thread.sleep(10);
}
/* Get current wakeup counts. */
int[] prevCounts = new int[daemons.length];
for (int i = 0; i < prevCounts.length; i += 1) {
prevCounts[i] = daemons[i].getNWakeupRequests();
}
/* Write some data to wakeup the checkpointer, cleaner and evictor. */
String dbName = "testDaemonRunPause";
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setAllowCreate(true);
dbConfig.setSortedDuplicates(true);
Database db = env1.openDatabase(null, dbName, dbConfig);
Cursor cursor = db.openCursor(null, null);
doSimpleCursorPutAndDelete(cursor, !EnvironmentImpl.IS_DALVIK);
cursor.close();
db.close();
/* Sleep for a while to wakeup the compressor. */
Thread.sleep(1000);
/* Check that the expected daemons were woken. */
for (int i = 0; i < prevCounts.length; i += 1) {
int currNWakeups = daemons[i].getNWakeupRequests();
boolean woken = prevCounts[i] < currNWakeups;
assertEquals(daemons[i].getClass().getName() +
" prevNWakeups=" + prevCounts[i] +
" currNWakeups=" + currNWakeups,
runValues[i], woken);
}
}
private void setBoolConfigParams(EnvironmentMutableConfig config,
String[] names,
boolean[] values) {
for (int i = 0; i < names.length; i += 1) {
config.setConfigParam(names[i],
Boolean.valueOf(values[i]).toString());
}
}
public void testExceptions()
throws Throwable {
try {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
env1.close();
/* Test for exceptions on closed environments via public APIs */
try {
env1.close();
fail("Didn't catch DatabaseException");
} catch (DatabaseException expected) {
}
try {
env1.openDatabase(null, null, null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.openSecondaryDatabase(null, null, null, null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.removeDatabase(null, null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.renameDatabase(null, "old", "new");
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.truncateDatabase(null, null, false);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.removeDatabase(null, null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.getHome();
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.beginTransaction(null, null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.checkpoint(null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.sync();
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.cleanLog();
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.evictMemory();
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.compress();
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.getConfig();
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.setMutableConfig(null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.getMutableConfig();
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.getStats(null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.getLockStats(null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.getTransactionStats(null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.getDatabaseNames();
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.scanLog(0,0,null,null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.verify(null,null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.getThreadTransaction();
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
try {
env1.setThreadTransaction(null);
fail("Didn't catch DatabaseException for op on closed env");
} catch (IllegalStateException expected) {
}
try {
env1.checkHandleIsValid();
fail("Didn't catch DatabaseException for op on closed env");
} catch (DatabaseException expected) {
}
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
public void testClose()
throws Throwable {
try {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setTransactional(true);
envConfig.setAllowCreate(true);
env1 = new Environment(envHome, envConfig);
env1.close();
envConfig.setAllowCreate(false);
env1 = new Environment(envHome, envConfig);
/* Create a transaction to prevent the close from succeeding */
env1.beginTransaction(null, null);
try {
env1.close();
fail("Didn't catch DatabaseException for open transactions");
} catch (DatabaseException expected) {
}
try {
env1.close();
fail("Didn't catch DatabaseException already closed env");
} catch (DatabaseException expected) {
}
env1 = new Environment(envHome, envConfig);
String databaseName = "simpleDb";
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setTransactional(true);
dbConfig.setAllowCreate(true);
env1.openDatabase(null, databaseName, dbConfig);
env1.openDatabase(null, databaseName + "2", dbConfig);
try {
env1.close();
fail("Didn't catch DatabaseException for open dbs");
} catch (DatabaseException expected) {
}
try {
env1.close();
fail("Didn't catch DatabaseException already closed env");
} catch (DatabaseException expected) {
}
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
protected String[] simpleKeyStrings = {
"foo", "bar", "baz", "aaa", "fubar",
"foobar", "quux", "mumble", "froboy" };
protected String[] simpleDataStrings = {
"one", "two", "three", "four", "five",
"six", "seven", "eight", "nine" };
protected void doSimpleCursorPutAndDelete(Cursor cursor, boolean extras)
throws DatabaseException {
StringDbt foundKey = new StringDbt();
StringDbt foundData = new StringDbt();
for (int i = 0; i < simpleKeyStrings.length; i++) {
foundKey.setString(simpleKeyStrings[i]);
foundData.setString(simpleDataStrings[i]);
if (cursor.putNoOverwrite(foundKey, foundData) !=
OperationStatus.SUCCESS) {
throw new DatabaseException("non-0 return");
}
/* Need to write some extra out to force eviction to run. */
if (extras) {
for (int j = 0; j < 500; j++) {
foundData.setString(Integer.toString(j));
OperationStatus status =
cursor.put(foundKey, foundData);
if (status != OperationStatus.SUCCESS) {
throw new DatabaseException("non-0 return " + status);
}
}
}
}
OperationStatus status =
cursor.getFirst(foundKey, foundData, LockMode.DEFAULT);
while (status == OperationStatus.SUCCESS) {
cursor.delete();
status = cursor.getNext(foundKey, foundData, LockMode.DEFAULT);
}
}
protected void doSimpleVerification(Cursor cursor)
throws DatabaseException {
StringDbt foundKey = new StringDbt();
StringDbt foundData = new StringDbt();
int count = 0;
OperationStatus status = cursor.getFirst(foundKey, foundData,
LockMode.DEFAULT);
while (status == OperationStatus.SUCCESS) {
count++;
status = cursor.getNext(foundKey, foundData, LockMode.DEFAULT);
}
assertEquals(simpleKeyStrings.length, count);
}
}
|