2013-10-14 01:16:11 +02:00
|
|
|
// Copyright (c) 2013 Conformal Systems LLC.
|
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package btcdb_test
|
|
|
|
|
|
|
|
import (
|
2013-10-14 05:13:47 +02:00
|
|
|
"github.com/conformal/btcdb"
|
2013-10-14 17:21:17 +02:00
|
|
|
"github.com/conformal/btcutil"
|
|
|
|
"github.com/conformal/btcwire"
|
2013-10-14 04:30:19 +02:00
|
|
|
"github.com/davecgh/go-spew/spew"
|
|
|
|
"reflect"
|
2013-10-14 01:16:11 +02:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2013-10-14 17:21:17 +02:00
|
|
|
// testContext is used to store context information about a running test which
|
2013-10-15 03:37:58 +02:00
|
|
|
// is passed into helper functions. The useSpends field indicates whether or
|
|
|
|
// not the spend data should be empty or figure it out based on the specific
|
|
|
|
// test blocks provided. This is needed because the first loop where the blocks
|
|
|
|
// are inserted, the tests are running against the latest block and therefore
|
|
|
|
// none of the outputs can be spent yet. However, on subsequent runs, all
|
|
|
|
// blocks have been inserted and therefore some of the transaction outputs are
|
|
|
|
// spent.
|
2013-10-14 17:21:17 +02:00
|
|
|
type testContext struct {
|
|
|
|
t *testing.T
|
|
|
|
dbType string
|
|
|
|
db btcdb.Db
|
|
|
|
blockHeight int64
|
|
|
|
blockHash *btcwire.ShaHash
|
|
|
|
block *btcutil.Block
|
2013-10-15 03:37:58 +02:00
|
|
|
useSpends bool
|
2013-10-14 17:21:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// testInsertBlock ensures InsertBlock conforms to the interface contract.
|
|
|
|
func testInsertBlock(tc *testContext) bool {
|
|
|
|
// The block must insert without any errors.
|
|
|
|
newHeight, err := tc.db.InsertBlock(tc.block)
|
|
|
|
if err != nil {
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.t.Errorf("InsertBlock (%s): failed to insert block #%d (%s) "+
|
|
|
|
"err %v", tc.dbType, tc.blockHeight, tc.blockHash, err)
|
2013-10-14 17:21:17 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The returned height must be the expected value.
|
|
|
|
if newHeight != tc.blockHeight {
|
|
|
|
tc.t.Errorf("InsertBlock (%s): height mismatch got: %v, "+
|
|
|
|
"want: %v", tc.dbType, newHeight, tc.blockHeight)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// testExistsSha ensures ExistsSha conforms to the interface contract.
|
|
|
|
func testExistsSha(tc *testContext) bool {
|
|
|
|
// The block must exist in the database.
|
|
|
|
if exists := tc.db.ExistsSha(tc.blockHash); !exists {
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.t.Errorf("ExistsSha (%s): block #%d (%s) does not exist",
|
|
|
|
tc.dbType, tc.blockHeight, tc.blockHash)
|
2013-10-14 17:21:17 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// testFetchBlockBySha ensures FetchBlockBySha conforms to the interface
|
|
|
|
// contract.
|
|
|
|
func testFetchBlockBySha(tc *testContext) bool {
|
|
|
|
// The block must be fetchable by its hash without any errors.
|
|
|
|
blockFromDb, err := tc.db.FetchBlockBySha(tc.blockHash)
|
|
|
|
if err != nil {
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.t.Errorf("FetchBlockBySha (%s): block #%d (%s) err: %v",
|
|
|
|
tc.dbType, tc.blockHeight, tc.blockHash, err)
|
2013-10-14 17:21:17 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The block fetched from the database must give back the same MsgBlock
|
|
|
|
// and raw bytes that were stored.
|
|
|
|
if !reflect.DeepEqual(tc.block.MsgBlock(), blockFromDb.MsgBlock()) {
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.t.Errorf("FetchBlockBySha (%s): block #%d (%s) does not "+
|
|
|
|
"match stored block\ngot: %v\nwant: %v", tc.dbType,
|
|
|
|
tc.blockHeight, tc.blockHash,
|
2013-10-14 17:21:17 +02:00
|
|
|
spew.Sdump(blockFromDb.MsgBlock()),
|
|
|
|
spew.Sdump(tc.block.MsgBlock()))
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
blockBytes, err := tc.block.Bytes()
|
|
|
|
if err != nil {
|
|
|
|
tc.t.Errorf("block.Bytes: %v", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
blockFromDbBytes, err := blockFromDb.Bytes()
|
|
|
|
if err != nil {
|
|
|
|
tc.t.Errorf("blockFromDb.Bytes: %v", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(blockBytes, blockFromDbBytes) {
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.t.Errorf("FetchBlockBySha (%s): block #%d (%s) bytes do "+
|
|
|
|
"not match stored bytes\ngot: %v\nwant: %v", tc.dbType,
|
|
|
|
tc.blockHeight, tc.blockHash,
|
2013-10-14 17:21:17 +02:00
|
|
|
spew.Sdump(blockFromDbBytes), spew.Sdump(blockBytes))
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// testFetchBlockShaByHeight ensures FetchBlockShaByHeight conforms to the
|
|
|
|
// interface contract.
|
|
|
|
func testFetchBlockShaByHeight(tc *testContext) bool {
|
|
|
|
// The hash returned for the block by its height must be the expected
|
|
|
|
// value.
|
|
|
|
hashFromDb, err := tc.db.FetchBlockShaByHeight(tc.blockHeight)
|
|
|
|
if err != nil {
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.t.Errorf("FetchBlockShaByHeight (%s): block #%d (%s) err: %v",
|
|
|
|
tc.dbType, tc.blockHeight, tc.blockHash, err)
|
2013-10-14 17:21:17 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !hashFromDb.IsEqual(tc.blockHash) {
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.t.Errorf("FetchBlockShaByHeight (%s): block #%d (%s) hash "+
|
|
|
|
"does not match expected value - got: %v", tc.dbType,
|
|
|
|
tc.blockHeight, tc.blockHash, hashFromDb)
|
2013-10-14 17:21:17 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2013-10-15 01:29:50 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func testFetchBlockShaByHeightErrors(tc *testContext) bool {
|
2013-10-14 17:21:17 +02:00
|
|
|
// Invalid heights must error and return a nil hash.
|
|
|
|
tests := []int64{-1, tc.blockHeight + 1, tc.blockHeight + 2}
|
2013-10-14 05:13:47 +02:00
|
|
|
for i, wantHeight := range tests {
|
2013-10-14 17:21:17 +02:00
|
|
|
hashFromDb, err := tc.db.FetchBlockShaByHeight(wantHeight)
|
2013-10-14 05:13:47 +02:00
|
|
|
if err == nil {
|
2013-10-14 17:21:17 +02:00
|
|
|
tc.t.Errorf("FetchBlockShaByHeight #%d (%s): did not "+
|
2013-10-14 05:13:47 +02:00
|
|
|
"return error on invalid index: %d - got: %v, "+
|
2013-10-14 17:21:17 +02:00
|
|
|
"want: non-nil", i, tc.dbType, wantHeight, err)
|
2013-10-14 05:13:47 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
if hashFromDb != nil {
|
2013-10-14 17:21:17 +02:00
|
|
|
tc.t.Errorf("FetchBlockShaByHeight #%d (%s): returned "+
|
2013-10-14 05:13:47 +02:00
|
|
|
"hash is not nil on invalid index: %d - got: "+
|
2013-10-14 17:21:17 +02:00
|
|
|
"%v, want: nil", i, tc.dbType, wantHeight, err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// testExistsTxSha ensures ExistsTxSha conforms to the interface contract.
|
|
|
|
func testExistsTxSha(tc *testContext) bool {
|
|
|
|
txHashes, err := tc.block.TxShas()
|
|
|
|
if err != nil {
|
|
|
|
tc.t.Errorf("block.TxShas: %v", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := range txHashes {
|
|
|
|
// The transaction must exist in the database.
|
|
|
|
txHash := txHashes[i]
|
|
|
|
if exists := tc.db.ExistsTxSha(txHash); !exists {
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.t.Errorf("ExistsTxSha (%s): block #%d (%s) "+
|
|
|
|
"tx #%d (%s) does not exist", tc.dbType,
|
|
|
|
tc.blockHeight, tc.blockHash, i, txHash)
|
2013-10-14 17:21:17 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// testFetchTxBySha ensures FetchTxBySha conforms to the interface contract.
|
|
|
|
func testFetchTxBySha(tc *testContext) bool {
|
|
|
|
txHashes, err := tc.block.TxShas()
|
|
|
|
if err != nil {
|
|
|
|
tc.t.Errorf("block.TxShas: %v", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tx := range tc.block.MsgBlock().Transactions {
|
|
|
|
txHash := txHashes[i]
|
|
|
|
txReplyList, err := tc.db.FetchTxBySha(txHash)
|
|
|
|
if err != nil {
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.t.Errorf("FetchTxBySha (%s): block #%d (%s) "+
|
|
|
|
"tx #%d (%s) err: %v", tc.dbType, tc.blockHeight,
|
|
|
|
tc.blockHash, i, txHash, err)
|
2013-10-14 17:21:17 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
if len(txReplyList) == 0 {
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.t.Errorf("FetchTxBySha (%s): block #%d (%s) "+
|
|
|
|
"tx #%d (%s) did not return reply data",
|
|
|
|
tc.dbType, tc.blockHeight, tc.blockHash, i,
|
|
|
|
txHash)
|
2013-10-14 17:21:17 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
txFromDb := txReplyList[len(txReplyList)-1].Tx
|
|
|
|
if !reflect.DeepEqual(tx, txFromDb) {
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.t.Errorf("FetchTxBySha (%s): block #%d (%s) "+
|
|
|
|
"tx #%d (%s) does not match stored tx\n"+
|
|
|
|
"got: %v\nwant: %v", tc.dbType, tc.blockHeight,
|
|
|
|
tc.blockHash, i, txHash, spew.Sdump(txFromDb),
|
|
|
|
spew.Sdump(tx))
|
2013-10-14 05:13:47 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-14 17:21:17 +02:00
|
|
|
return true
|
2013-10-14 05:13:47 +02:00
|
|
|
}
|
|
|
|
|
2013-10-15 03:37:58 +02:00
|
|
|
// expectedSpentBuf returns the expected transaction spend information depending
|
|
|
|
// on the block height and and transaction number. NOTE: These figures are
|
|
|
|
// only valid for the specific set of test data provided at the time these tests
|
|
|
|
// were written. In particular, this means the first 256 blocks of the mainnet
|
|
|
|
// block chain.
|
|
|
|
//
|
|
|
|
// The first run through while the blocks are still being inserted, the tests
|
|
|
|
// are running against the latest block and therefore none of the outputs can
|
|
|
|
// be spent yet. However, on subsequent runs, all blocks have been inserted and
|
|
|
|
// therefore some of the transaction outputs are spent.
|
|
|
|
func expectedSpentBuf(tc *testContext, txNum int) []bool {
|
|
|
|
numTxOut := len(tc.block.MsgBlock().Transactions[txNum].TxOut)
|
|
|
|
spentBuf := make([]bool, numTxOut)
|
|
|
|
if tc.useSpends {
|
|
|
|
if tc.blockHeight == 9 && txNum == 0 {
|
|
|
|
spentBuf[0] = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if tc.blockHeight == 170 && txNum == 1 {
|
|
|
|
spentBuf[1] = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if tc.blockHeight == 181 && txNum == 1 {
|
|
|
|
spentBuf[1] = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if tc.blockHeight == 182 && txNum == 1 {
|
|
|
|
spentBuf[0] = true
|
|
|
|
spentBuf[1] = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if tc.blockHeight == 183 && txNum == 1 {
|
|
|
|
spentBuf[0] = true
|
|
|
|
spentBuf[1] = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return spentBuf
|
|
|
|
}
|
|
|
|
|
2013-10-15 02:24:08 +02:00
|
|
|
func testFetchTxByShaListCommon(tc *testContext, includeSpent bool) bool {
|
|
|
|
fetchFunc := tc.db.FetchUnSpentTxByShaList
|
|
|
|
funcName := "FetchUnSpentTxByShaList"
|
|
|
|
if includeSpent {
|
|
|
|
fetchFunc = tc.db.FetchTxByShaList
|
|
|
|
funcName = "FetchTxByShaList"
|
|
|
|
}
|
|
|
|
|
2013-10-14 20:49:10 +02:00
|
|
|
txHashes, err := tc.block.TxShas()
|
|
|
|
if err != nil {
|
|
|
|
tc.t.Errorf("block.TxShas: %v", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2013-10-15 02:24:08 +02:00
|
|
|
txReplyList := fetchFunc(txHashes)
|
2013-10-14 20:49:10 +02:00
|
|
|
if len(txReplyList) != len(txHashes) {
|
2013-10-15 02:24:08 +02:00
|
|
|
tc.t.Errorf("%s (%s): block #%d (%s) tx reply list does not "+
|
|
|
|
" match expected length - got: %v, want: %v", funcName,
|
|
|
|
tc.dbType, tc.blockHeight, tc.blockHash,
|
|
|
|
len(txReplyList), len(txHashes))
|
2013-10-14 20:49:10 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
for i, tx := range tc.block.MsgBlock().Transactions {
|
|
|
|
txHash := txHashes[i]
|
|
|
|
txD := txReplyList[i]
|
|
|
|
|
|
|
|
// The transaction hash in the reply must be the expected value.
|
|
|
|
if !txD.Sha.IsEqual(txHash) {
|
2013-10-15 02:24:08 +02:00
|
|
|
tc.t.Errorf("%s (%s): block #%d (%s) tx #%d (%s) "+
|
|
|
|
"hash does not match expected value - got %v",
|
|
|
|
funcName, tc.dbType, tc.blockHeight,
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.blockHash, i, txHash, txD.Sha)
|
2013-10-14 20:49:10 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The reply must not indicate any errors.
|
|
|
|
if txD.Err != nil {
|
2013-10-15 02:24:08 +02:00
|
|
|
tc.t.Errorf("%s (%s): block #%d (%s) tx #%d (%s) "+
|
|
|
|
"returned unexpected error - got %v, want nil",
|
|
|
|
funcName, tc.dbType, tc.blockHeight,
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.blockHash, i, txHash, txD.Err)
|
2013-10-14 20:49:10 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The transaction in the reply fetched from the database must
|
|
|
|
// be the same MsgTx that was stored.
|
|
|
|
if !reflect.DeepEqual(tx, txD.Tx) {
|
2013-10-15 02:24:08 +02:00
|
|
|
tc.t.Errorf("%s (%s): block #%d (%s) tx #%d (%s) does "+
|
|
|
|
"not match stored tx\ngot: %v\nwant: %v",
|
|
|
|
funcName, tc.dbType, tc.blockHeight,
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.blockHash, i, txHash, spew.Sdump(txD.Tx),
|
|
|
|
spew.Sdump(tx))
|
2013-10-14 20:49:10 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The block hash in the reply from the database must be the
|
|
|
|
// expected value.
|
|
|
|
if txD.BlkSha == nil {
|
2013-10-15 02:24:08 +02:00
|
|
|
tc.t.Errorf("%s (%s): block #%d (%s) tx #%d (%s) "+
|
|
|
|
"returned nil block hash", funcName, tc.dbType,
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.blockHeight, tc.blockHash, i, txHash)
|
2013-10-14 20:49:10 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !txD.BlkSha.IsEqual(tc.blockHash) {
|
2013-10-15 02:24:08 +02:00
|
|
|
tc.t.Errorf("%s (%s): block #%d (%s) tx #%d (%s)"+
|
|
|
|
"returned unexpected block hash - got %v",
|
|
|
|
funcName, tc.dbType, tc.blockHeight,
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.blockHash, i, txHash, txD.BlkSha)
|
2013-10-14 20:49:10 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The block height in the reply from the database must be the
|
|
|
|
// expected value.
|
|
|
|
if txD.Height != tc.blockHeight {
|
2013-10-15 02:24:08 +02:00
|
|
|
tc.t.Errorf("%s (%s): block #%d (%s) tx #%d (%s) "+
|
|
|
|
"returned unexpected block height - got %v",
|
|
|
|
funcName, tc.dbType, tc.blockHeight,
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.blockHash, i, txHash, txD.Height)
|
2013-10-14 20:49:10 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The spend data in the reply from the database must not
|
|
|
|
// indicate any of the transactions that were just inserted are
|
|
|
|
// spent.
|
|
|
|
if txD.TxSpent == nil {
|
2013-10-15 02:24:08 +02:00
|
|
|
tc.t.Errorf("%s (%s): block #%d (%s) tx #%d (%s) "+
|
|
|
|
"returned nil spend data", funcName, tc.dbType,
|
2013-10-15 01:27:12 +02:00
|
|
|
tc.blockHeight, tc.blockHash, i, txHash)
|
2013-10-14 20:49:10 +02:00
|
|
|
return false
|
|
|
|
}
|
2013-10-15 03:37:58 +02:00
|
|
|
spentBuf := expectedSpentBuf(tc, i)
|
|
|
|
if !reflect.DeepEqual(txD.TxSpent, spentBuf) {
|
2013-10-15 02:24:08 +02:00
|
|
|
tc.t.Errorf("%s (%s): block #%d (%s) tx #%d (%s) "+
|
|
|
|
"returned unexpected spend data - got %v, "+
|
|
|
|
"want %v", funcName, tc.dbType, tc.blockHeight,
|
2013-10-15 03:37:58 +02:00
|
|
|
tc.blockHash, i, txHash, txD.TxSpent, spentBuf)
|
2013-10-14 20:49:10 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2013-10-15 02:24:08 +02:00
|
|
|
// testFetchTxByShaList ensures FetchTxByShaList conforms to the interface
|
|
|
|
// contract.
|
|
|
|
func testFetchTxByShaList(tc *testContext) bool {
|
|
|
|
return testFetchTxByShaListCommon(tc, true)
|
|
|
|
}
|
|
|
|
|
2013-10-14 20:56:21 +02:00
|
|
|
// testFetchUnSpentTxByShaList ensures FetchUnSpentTxByShaList conforms to the
|
|
|
|
// interface contract.
|
|
|
|
func testFetchUnSpentTxByShaList(tc *testContext) bool {
|
2013-10-15 02:24:08 +02:00
|
|
|
return testFetchTxByShaListCommon(tc, false)
|
2013-10-14 20:56:21 +02:00
|
|
|
}
|
|
|
|
|
2013-10-15 01:29:50 +02:00
|
|
|
// testIntegrity performs a series of tests against the interface functions
|
|
|
|
// which fetch and check for data existence.
|
|
|
|
func testIntegrity(tc *testContext) bool {
|
|
|
|
// The block must now exist in the database.
|
|
|
|
if !testExistsSha(tc) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loading the block back from the database must give back
|
|
|
|
// the same MsgBlock and raw bytes that were stored.
|
|
|
|
if !testFetchBlockBySha(tc) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The hash returned for the block by its height must be the
|
|
|
|
// expected value.
|
|
|
|
if !testFetchBlockShaByHeight(tc) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// All of the transactions in the block must now exist in the
|
|
|
|
// database.
|
|
|
|
if !testExistsTxSha(tc) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loading all of the transactions in the block back from the
|
|
|
|
// database must give back the same MsgTx that was stored.
|
|
|
|
if !testFetchTxBySha(tc) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// All of the transactions in the block must be fetchable via
|
|
|
|
// FetchTxByShaList and all of the list replies must have the
|
|
|
|
// expected values.
|
|
|
|
if !testFetchTxByShaList(tc) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// All of the transactions in the block must be fetchable via
|
|
|
|
// FetchUnSpentTxByShaList and all of the list replies must have
|
|
|
|
// the expected values.
|
|
|
|
if !testFetchUnSpentTxByShaList(tc) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2013-10-14 03:24:03 +02:00
|
|
|
// testInterface tests performs tests for the various interfaces of btcdb which
|
|
|
|
// require state in the database for the given database type.
|
|
|
|
func testInterface(t *testing.T, dbType string) {
|
|
|
|
db, teardown, err := setupDB(dbType, "interface")
|
|
|
|
if err != nil {
|
2013-10-14 05:11:12 +02:00
|
|
|
t.Errorf("Failed to create test database (%s) %v", dbType, err)
|
2013-10-14 03:24:03 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
defer teardown()
|
|
|
|
|
|
|
|
// Load up a bunch of test blocks.
|
|
|
|
blocks, err := loadBlocks(t)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to load blocks from test data %v: %v",
|
|
|
|
blockDataFile, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-10-14 17:21:17 +02:00
|
|
|
// Create a test context to pass around.
|
|
|
|
context := testContext{t: t, dbType: dbType, db: db}
|
|
|
|
|
2013-10-14 21:34:54 +02:00
|
|
|
t.Logf("Loaded %d blocks for testing %s", len(blocks), dbType)
|
2013-10-14 03:24:03 +02:00
|
|
|
for height := int64(1); height < int64(len(blocks)); height++ {
|
2013-10-14 17:21:17 +02:00
|
|
|
// Get the appropriate block and hash and update the test
|
|
|
|
// context accordingly.
|
2013-10-14 03:24:03 +02:00
|
|
|
block := blocks[height]
|
2013-10-14 17:21:17 +02:00
|
|
|
blockHash, err := block.Sha()
|
2013-10-14 04:30:19 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("block.Sha: %v", err)
|
|
|
|
return
|
|
|
|
}
|
2013-10-14 17:21:17 +02:00
|
|
|
context.blockHeight = height
|
|
|
|
context.blockHash = blockHash
|
|
|
|
context.block = block
|
2013-10-14 04:30:19 +02:00
|
|
|
|
2013-10-14 17:21:17 +02:00
|
|
|
// The block must insert without any errors and return the
|
|
|
|
// expected height.
|
|
|
|
if !testInsertBlock(&context) {
|
2013-10-14 04:30:19 +02:00
|
|
|
return
|
|
|
|
}
|
2013-10-14 17:21:17 +02:00
|
|
|
|
2013-10-15 01:29:50 +02:00
|
|
|
// The block must pass all data integrity tests which involve
|
|
|
|
// invoking all and testing the result of all interface
|
|
|
|
// functions which deal with fetch and checking for data
|
|
|
|
// existence.
|
|
|
|
if !testIntegrity(&context) {
|
2013-10-14 20:49:10 +02:00
|
|
|
return
|
|
|
|
}
|
2013-10-14 20:56:21 +02:00
|
|
|
|
2013-10-15 01:29:50 +02:00
|
|
|
if !testFetchBlockShaByHeightErrors(&context) {
|
2013-10-14 20:56:21 +02:00
|
|
|
return
|
|
|
|
}
|
2013-10-14 05:13:47 +02:00
|
|
|
}
|
|
|
|
|
2013-10-15 03:37:58 +02:00
|
|
|
// The data integrity tests must still pass after calling each of the
|
|
|
|
// invalidate cache functions. This intentionally uses a map since
|
|
|
|
// map iteration is not the same order every run. This helps catch
|
|
|
|
// issues that could be caused by calling one version before another.
|
|
|
|
context.useSpends = true
|
|
|
|
invalidateCacheFuncs := map[string]func(){
|
|
|
|
"InvalidateBlockCache": db.InvalidateBlockCache,
|
|
|
|
"InvalidateTxCache": db.InvalidateTxCache,
|
|
|
|
"InvalidateCache": db.InvalidateCache,
|
|
|
|
}
|
|
|
|
for funcName, invalidateCacheFunc := range invalidateCacheFuncs {
|
|
|
|
t.Logf("Running integrity tests after calling %s", funcName)
|
|
|
|
invalidateCacheFunc()
|
|
|
|
|
|
|
|
for height := int64(0); height < int64(len(blocks)); height++ {
|
|
|
|
// Get the appropriate block and hash and update the
|
|
|
|
// test context accordingly.
|
|
|
|
block := blocks[height]
|
|
|
|
blockHash, err := block.Sha()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("block.Sha: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
context.blockHeight = height
|
|
|
|
context.blockHash = blockHash
|
|
|
|
context.block = block
|
|
|
|
|
|
|
|
testIntegrity(&context)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-14 03:24:03 +02:00
|
|
|
// TODO(davec): Need to figure out how to handle the special checks
|
|
|
|
// required for the duplicate transactions allowed by blocks 91842 and
|
|
|
|
// 91880 on the main network due to the old miner + Satoshi client bug.
|
|
|
|
|
|
|
|
// TODO(davec): Add tests for the following functions:
|
|
|
|
/*
|
|
|
|
Close()
|
|
|
|
DropAfterBlockBySha(*btcwire.ShaHash) (err error)
|
2013-10-14 04:30:19 +02:00
|
|
|
- ExistsSha(sha *btcwire.ShaHash) (exists bool)
|
|
|
|
- FetchBlockBySha(sha *btcwire.ShaHash) (blk *btcutil.Block, err error)
|
2013-10-14 05:13:47 +02:00
|
|
|
- FetchBlockShaByHeight(height int64) (sha *btcwire.ShaHash, err error)
|
2013-10-14 03:24:03 +02:00
|
|
|
FetchHeightRange(startHeight, endHeight int64) (rshalist []btcwire.ShaHash, err error)
|
2013-10-14 07:27:11 +02:00
|
|
|
- ExistsTxSha(sha *btcwire.ShaHash) (exists bool)
|
2013-10-14 07:42:58 +02:00
|
|
|
- FetchTxBySha(txsha *btcwire.ShaHash) ([]*TxListReply, error)
|
2013-10-14 20:49:10 +02:00
|
|
|
- FetchTxByShaList(txShaList []*btcwire.ShaHash) []*TxListReply
|
2013-10-14 20:56:21 +02:00
|
|
|
- FetchUnSpentTxByShaList(txShaList []*btcwire.ShaHash) []*TxListReply
|
2013-10-14 03:24:03 +02:00
|
|
|
- InsertBlock(block *btcutil.Block) (height int64, err error)
|
|
|
|
InvalidateBlockCache()
|
|
|
|
InvalidateCache()
|
|
|
|
InvalidateTxCache()
|
|
|
|
NewIterateBlocks() (pbi BlockIterator, err error)
|
|
|
|
NewestSha() (sha *btcwire.ShaHash, height int64, err error)
|
|
|
|
RollbackClose()
|
|
|
|
SetDBInsertMode(InsertMode)
|
|
|
|
Sync()
|
|
|
|
*/
|
|
|
|
}
|