Created
January 10, 2014 23:29
-
-
Save alanfranz/8364722 to your computer and use it in GitHub Desktop.
new mapdb test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.mycompany.mapdbtest; | |
import org.mapdb.DB; | |
import org.mapdb.DBMaker; | |
import org.mapdb.TxMaker; | |
import java.util.Map; | |
import org.junit.Test; | |
import org.mapdb.BTreeMap; | |
public class TestTransactions { | |
@Test | |
public void testSameCollectionInsertDifferentValuesInDifferentTransactions() throws Exception { | |
TxMaker txMaker = DBMaker | |
.newMemoryDB() | |
.makeTxMaker(); | |
DB txInit = txMaker.makeTx(); | |
Map<Object, Object> mapInit = txInit.getTreeMap("testMap"); | |
for (int i=0; i<1000000 ; i++ ) { | |
mapInit.put(i, String.format("%d", i)); | |
} | |
txInit.commit(); | |
DB tx1 = txMaker.makeTx(); | |
DB tx2 = txMaker.makeTx(); | |
Map map1 = tx1.getTreeMap("testMap"); | |
map1.put(1, "asd"); | |
tx1.commit(); | |
System.out.println("tx1 commit succeeded, map size after tx1 commits: " + txMaker.makeTx().getTreeMap("testMap").size()); | |
Map map2 = tx2.getTreeMap("testMap"); | |
map2.put(10001, "somevalue"); | |
// the following line throws a TxRollbackException | |
tx2.commit(); | |
txMaker.close(); | |
} | |
@Test | |
public void testDifferentCollectionsInDifferentTransactions() throws Exception { | |
TxMaker txMaker = DBMaker | |
.newMemoryDB() | |
.makeTxMaker(); | |
DB txInit = txMaker.makeTx(); | |
Map<Object, Object> mapInit = txInit.getTreeMap("testMap"); | |
Map<Object, Object> otherMapInit = txInit.getTreeMap("otherMap"); | |
for (int i=0; i<1000000 ; i++ ) { | |
mapInit.put(i, String.format("%d", i)); | |
otherMapInit.put(i, String.format("%d", i)); | |
} | |
txInit.commit(); | |
DB tx1 = txMaker.makeTx(); | |
DB tx2 = txMaker.makeTx(); | |
Map map1 = tx1.getTreeMap("testMap"); | |
map1.put(2, "asd"); | |
tx1.commit(); | |
Map map2 = tx2.getTreeMap("otherMap"); | |
map2.put(20, "somevalue"); | |
// the following line throws a TxRollbackException | |
tx2.commit(); | |
txMaker.close(); | |
} | |
@Test | |
public void testSameCollectionModifyDifferentValuesInDifferentTransactions() throws Exception { | |
TxMaker txMaker = DBMaker | |
.newMemoryDB() | |
.makeTxMaker(); | |
DB txInit = txMaker.makeTx(); | |
Map<Object, Object> mapInit = txInit.getTreeMap("testMap"); | |
for (int i=0; i<1000000 ; i++ ) { | |
mapInit.put(i, String.format("%d", i)); | |
} | |
txInit.commit(); | |
DB tx1 = txMaker.makeTx(); | |
DB tx2 = txMaker.makeTx(); | |
Map map1 = tx1.getTreeMap("testMap"); | |
map1.put(1, "asd"); | |
tx1.commit(); | |
System.out.println("tx1 commit succeeded, map size after tx1 commits: " + txMaker.makeTx().getTreeMap("testMap").size()); | |
Map map2 = tx2.getTreeMap("testMap"); | |
map2.put(100, "somevalue"); | |
// the following line throws a TxRollbackException | |
tx2.commit(); | |
txMaker.close(); | |
} | |
@Test | |
public void testTransactionsDoingNothing() throws Exception { | |
TxMaker txMaker = DBMaker | |
.newMemoryDB() | |
.makeTxMaker(); | |
DB txInit = txMaker.makeTx(); | |
Map<Object, Object> mapInit = txInit.getTreeMap("testMap"); | |
for (int i=0; i<1000000 ; i++ ) { | |
mapInit.put(i, String.format("%d", i)); | |
} | |
txInit.commit(); | |
DB tx1 = txMaker.makeTx(); | |
DB tx2 = txMaker.makeTx(); | |
Map map1 = tx1.getTreeMap("testMap"); | |
tx1.commit(); | |
Map map2 = tx2.getTreeMap("testMap"); | |
// the following line throws a TxRollbackException | |
tx2.commit(); | |
txMaker.close(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment