use of org.apache.qpid.server.store.berkeleydb.upgrade.UpgradeFrom5To6.NewDataBinding in project qpid-broker-j by apache.
the class UpgradeFrom5To6Test method assertContent.
private void assertContent() {
final NewDataBinding contentBinding = new NewDataBinding();
CursorOperation contentCursorOperation = new CursorOperation() {
@Override
public void processEntry(Database sourceDatabase, Database targetDatabase, Transaction transaction, DatabaseEntry key, DatabaseEntry value) {
long id = LongBinding.entryToLong(key);
assertTrue("Unexpected id", id > 0);
byte[] content = contentBinding.entryToObject(value);
assertNotNull("Unexpected content", content);
}
};
new DatabaseTemplate(_environment, NEW_CONTENT_DB_NAME, null).run(contentCursorOperation);
}
Aggregations