2011-12-13 18:56:52 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2011-12-13 20:04:04 +00:00
|
|
|
package com.google.bitcoin.store;
|
2011-12-13 18:56:52 +00:00
|
|
|
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
|
2011-12-13 20:04:04 +00:00
|
|
|
import com.google.bitcoin.core.Address;
|
|
|
|
import com.google.bitcoin.core.ECKey;
|
|
|
|
import com.google.bitcoin.core.NetworkParameters;
|
|
|
|
import com.google.bitcoin.core.StoredBlock;
|
|
|
|
|
2011-12-13 18:56:52 +00:00
|
|
|
import org.junit.Test;
|
|
|
|
|
2011-12-13 20:04:04 +00:00
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
import java.io.IOException;
|
|
|
|
|
2011-12-13 18:56:52 +00:00
|
|
|
public class DerbyBlockStoreTest {
|
|
|
|
/**
|
2011-12-13 20:04:04 +00:00
|
|
|
* This path will be deleted recursively!
|
2011-12-13 18:56:52 +00:00
|
|
|
*/
|
|
|
|
private static final String DB_NAME = ".bitcoinj.unittest.derby";
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testStorage() throws Exception {
|
2011-12-13 20:04:04 +00:00
|
|
|
deleteRecursively(new File(DB_NAME));
|
2011-12-13 18:56:52 +00:00
|
|
|
NetworkParameters params = NetworkParameters.unitTests();
|
|
|
|
Address to = new ECKey().toAddress(params);
|
|
|
|
DerbyBlockStore store = new DerbyBlockStore(params, DB_NAME);
|
|
|
|
store.resetStore();
|
|
|
|
store.dump();
|
|
|
|
// Check the first block in a new store is the genesis block.
|
|
|
|
StoredBlock genesis = store.getChainHead();
|
|
|
|
assertEquals(params.genesisBlock, genesis.getHeader());
|
|
|
|
|
|
|
|
// Build a new block.
|
|
|
|
StoredBlock b1 = genesis.build(genesis.getHeader().createNextBlock(to).cloneAsHeader());
|
|
|
|
store.put(b1);
|
|
|
|
store.setChainHead(b1);
|
|
|
|
store.dump();
|
|
|
|
// Check we can get it back out again if we rebuild the store object.
|
|
|
|
store = new DerbyBlockStore(params, DB_NAME);
|
|
|
|
StoredBlock b2 = store.get(b1.getHeader().getHash());
|
|
|
|
assertEquals(b1, b2);
|
|
|
|
// Check the chain head was stored correctly also.
|
|
|
|
assertEquals(b1, store.getChainHead());
|
2011-12-16 22:04:06 +00:00
|
|
|
|
|
|
|
StoredBlock g1 = store.get(params.genesisBlock.getHash());
|
|
|
|
assertEquals(params.genesisBlock, g1.getHeader());
|
2011-12-13 18:56:52 +00:00
|
|
|
store.dump();
|
|
|
|
}
|
2011-12-13 20:04:04 +00:00
|
|
|
|
|
|
|
void deleteRecursively(File f) throws IOException {
|
|
|
|
if (f.isDirectory()) {
|
|
|
|
for (File c : f.listFiles())
|
|
|
|
deleteRecursively(c);
|
|
|
|
}
|
2012-01-05 23:58:35 +00:00
|
|
|
|
|
|
|
if (f.exists() && !f.delete())
|
2011-12-13 20:04:04 +00:00
|
|
|
throw new FileNotFoundException("Failed to delete file: " + f);
|
|
|
|
}
|
2011-12-13 18:56:52 +00:00
|
|
|
}
|