2015-04-20 16:14:57 +00:00
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
2015-06-10 16:34:38 +00:00
|
|
|
"path/filepath"
|
2015-04-20 16:14:57 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2015-06-10 16:34:38 +00:00
|
|
|
var baseDir = filepath.Join(".", "files")
|
|
|
|
var blockTestDir = filepath.Join(baseDir, "BlockTests")
|
|
|
|
|
2015-04-20 16:14:57 +00:00
|
|
|
// TODO: refactor test setup & execution to better align with vm and tx tests
|
|
|
|
func TestBcValidBlockTests(t *testing.T) {
|
2015-06-10 20:10:33 +00:00
|
|
|
runBlockTestsInFile(filepath.Join(blockTestDir, "bcValidBlockTest.json"), []string{"SimpleTx3"})
|
2015-04-20 16:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcUncleTests(t *testing.T) {
|
2015-06-10 20:10:33 +00:00
|
|
|
runBlockTestsInFile(filepath.Join(blockTestDir, "bcUncleTest.json"), []string{})
|
|
|
|
runBlockTestsInFile(filepath.Join(blockTestDir, "bcBruncleTest.json"), []string{})
|
2015-04-20 16:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcUncleHeaderValidityTests(t *testing.T) {
|
2015-06-10 20:10:33 +00:00
|
|
|
runBlockTestsInFile(filepath.Join(blockTestDir, "bcUncleHeaderValiditiy.json"), []string{})
|
2015-04-20 16:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcInvalidHeaderTests(t *testing.T) {
|
2015-06-10 20:10:33 +00:00
|
|
|
runBlockTestsInFile(filepath.Join(blockTestDir, "bcInvalidHeaderTest.json"), []string{})
|
2015-04-20 16:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcInvalidRLPTests(t *testing.T) {
|
2015-06-10 20:10:33 +00:00
|
|
|
runBlockTestsInFile(filepath.Join(blockTestDir, "bcInvalidRLPTest.json"), []string{})
|
2015-04-20 16:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcRPCAPITests(t *testing.T) {
|
2015-06-10 20:10:33 +00:00
|
|
|
runBlockTestsInFile(filepath.Join(blockTestDir, "bcRPC_API_Test.json"), []string{})
|
2015-04-20 16:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBcForkBlockTests(t *testing.T) {
|
2015-06-10 20:10:33 +00:00
|
|
|
runBlockTestsInFile(filepath.Join(blockTestDir, "bcForkBlockTest.json"), []string{})
|
2015-04-20 16:14:57 +00:00
|
|
|
}
|
|
|
|
|
2015-05-07 11:03:22 +00:00
|
|
|
func TestBcTotalDifficulty(t *testing.T) {
|
2015-06-10 20:10:33 +00:00
|
|
|
runBlockTestsInFile(filepath.Join(blockTestDir, "bcTotalDifficultyTest.json"), []string{})
|
2015-05-07 11:03:22 +00:00
|
|
|
}
|
|
|
|
|
2015-05-18 14:28:54 +00:00
|
|
|
func TestBcWallet(t *testing.T) {
|
2015-06-10 20:10:33 +00:00
|
|
|
runBlockTestsInFile(filepath.Join(blockTestDir, "bcWalletTest.json"), []string{})
|
2015-05-18 14:28:54 +00:00
|
|
|
}
|