2015-04-20 16:14:57 +00:00
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TODO: refactor test setup & execution to better align with vm and tx tests
|
|
|
|
func TestBcValidBlockTests(t *testing.T) {
|
2015-06-09 13:53:31 +00:00
|
|
|
// SimpleTx3 genesis block does not validate against calculated state root
|
|
|
|
// as of 2015-06-09. unskip once working /Gustav
|
|
|
|
runBlockTestsInFile("files/BlockTests/bcValidBlockTest.json", []string{"SimpleTx3"}, t)
|
2015-04-20 16:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcUncleTests(t *testing.T) {
|
|
|
|
runBlockTestsInFile("files/BlockTests/bcUncleTest.json", []string{}, t)
|
2015-06-02 12:47:23 +00:00
|
|
|
runBlockTestsInFile("files/BlockTests/bcBruncleTest.json", []string{}, t)
|
2015-04-20 16:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcUncleHeaderValidityTests(t *testing.T) {
|
|
|
|
runBlockTestsInFile("files/BlockTests/bcUncleHeaderValiditiy.json", []string{}, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcInvalidHeaderTests(t *testing.T) {
|
2015-04-22 13:28:04 +00:00
|
|
|
runBlockTestsInFile("files/BlockTests/bcInvalidHeaderTest.json", []string{}, t)
|
2015-04-20 16:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcInvalidRLPTests(t *testing.T) {
|
2015-04-22 21:15:52 +00:00
|
|
|
runBlockTestsInFile("files/BlockTests/bcInvalidRLPTest.json", []string{}, t)
|
2015-04-20 16:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcRPCAPITests(t *testing.T) {
|
|
|
|
runBlockTestsInFile("files/BlockTests/bcRPC_API_Test.json", []string{}, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcForkBlockTests(t *testing.T) {
|
|
|
|
runBlockTestsInFile("files/BlockTests/bcForkBlockTest.json", []string{}, t)
|
|
|
|
}
|
|
|
|
|
2015-05-07 11:03:22 +00:00
|
|
|
func TestBcTotalDifficulty(t *testing.T) {
|
|
|
|
runBlockTestsInFile("files/BlockTests/bcTotalDifficultyTest.json", []string{}, t)
|
|
|
|
}
|
|
|
|
|
2015-05-18 14:28:54 +00:00
|
|
|
func TestBcWallet(t *testing.T) {
|
|
|
|
runBlockTestsInFile("files/BlockTests/bcWalletTest.json", []string{}, t)
|
|
|
|
}
|