2015-05-01 08:28:01 +02:00
|
|
|
// Copyright (c) 2013-2015 The btcsuite developers
|
2015-01-08 12:08:11 +01:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-01-30 21:54:30 +01:00
|
|
|
package blockchain_test
|
2015-01-08 12:08:11 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"runtime"
|
|
|
|
"testing"
|
|
|
|
|
2015-01-30 21:54:30 +01:00
|
|
|
"github.com/btcsuite/btcd/blockchain"
|
2015-02-25 21:31:46 +01:00
|
|
|
"github.com/btcsuite/btcd/txscript"
|
2015-01-08 12:08:11 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// TestCheckBlockScripts ensures that validating the all of the scripts in a
|
|
|
|
// known-good block doesn't return an error.
|
|
|
|
func TestCheckBlockScripts(t *testing.T) {
|
|
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
|
|
|
|
|
|
|
testBlockNum := 277647
|
|
|
|
blockDataFile := fmt.Sprintf("%d.dat.bz2", testBlockNum)
|
|
|
|
blocks, err := loadBlocks(blockDataFile)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error loading file: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(blocks) > 1 {
|
|
|
|
t.Errorf("The test block file must only have one block in it")
|
|
|
|
}
|
|
|
|
|
|
|
|
txStoreDataFile := fmt.Sprintf("%d.txstore.bz2", testBlockNum)
|
|
|
|
txStore, err := loadTxStore(txStoreDataFile)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error loading txstore: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-02-25 21:31:46 +01:00
|
|
|
scriptFlags := txscript.ScriptBip16
|
2015-09-25 01:22:00 +02:00
|
|
|
err = blockchain.TstCheckBlockScripts(blocks[0], txStore, scriptFlags, nil)
|
2015-02-25 21:31:46 +01:00
|
|
|
if err != nil {
|
2015-01-08 12:08:11 +01:00
|
|
|
t.Errorf("Transaction script validation failed: %v\n",
|
|
|
|
err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|