Skip to content

Commit

Permalink
SPVBlockStoreTest: Add tests for file locking.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Schildbach committed Mar 13, 2018
1 parent c35d892 commit dbc4c35
Showing 1 changed file with 29 additions and 10 deletions.
39 changes: 29 additions & 10 deletions core/src/test/java/org/bitcoinj/store/SPVBlockStoreTest.java
@@ -1,5 +1,6 @@
/*
* Copyright 2013 Google Inc.
* Copyright 2018 Andreas Schildbach
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -16,47 +17,65 @@

package org.bitcoinj.store;

import static org.junit.Assert.assertEquals;

import java.io.File;

import org.bitcoinj.core.Address;
import org.bitcoinj.core.ECKey;
import org.bitcoinj.core.LegacyAddress;
import org.bitcoinj.core.NetworkParameters;
import org.bitcoinj.core.StoredBlock;
import org.bitcoinj.params.UnitTestParams;
import org.junit.Before;
import org.junit.Test;

import java.io.File;

import static org.junit.Assert.assertEquals;

public class SPVBlockStoreTest {
private static final NetworkParameters UNITTEST = UnitTestParams.get();
private File blockStoreFile;

@Before
public void setup() throws Exception {
blockStoreFile = File.createTempFile("spvblockstore", null);
blockStoreFile.delete();
blockStoreFile.deleteOnExit();
}

@Test
public void basics() throws Exception {
File f = File.createTempFile("spvblockstore", null);
f.delete();
f.deleteOnExit();
SPVBlockStore store = new SPVBlockStore(UNITTEST, f);
SPVBlockStore store = new SPVBlockStore(UNITTEST, blockStoreFile);

Address to = LegacyAddress.fromKey(UNITTEST, new ECKey());
// Check the first block in a new store is the genesis block.
StoredBlock genesis = store.getChainHead();
assertEquals(UNITTEST.getGenesisBlock(), genesis.getHeader());
assertEquals(0, genesis.getHeight());


// Build a new block.
StoredBlock b1 = genesis.build(genesis.getHeader().createNextBlock(to).cloneAsHeader());
store.put(b1);
store.setChainHead(b1);
store.close();

// Check we can get it back out again if we rebuild the store object.
store = new SPVBlockStore(UNITTEST, f);
store = new SPVBlockStore(UNITTEST, blockStoreFile);
StoredBlock b2 = store.get(b1.getHeader().getHash());
assertEquals(b1, b2);
// Check the chain head was stored correctly also.
StoredBlock chainHead = store.getChainHead();
assertEquals(b1, chainHead);
}

@Test(expected = BlockStoreException.class)
public void twoStores_onSameFile() throws Exception {
new SPVBlockStore(UNITTEST, blockStoreFile);
new SPVBlockStore(UNITTEST, blockStoreFile);
}

@Test
public void twoStores_butSequentially() throws Exception {
SPVBlockStore store = new SPVBlockStore(UNITTEST, blockStoreFile);
store.close();
store = new SPVBlockStore(UNITTEST, blockStoreFile);
}
}

0 comments on commit dbc4c35

Please sign in to comment.