2015-04-10 09:55:31 +00:00
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
2015-06-10 16:34:38 +00:00
|
|
|
"path/filepath"
|
2015-04-10 09:55:31 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2015-06-10 16:34:38 +00:00
|
|
|
var transactionTestDir = filepath.Join(baseDir, "TransactionTests")
|
|
|
|
|
2015-04-10 09:55:31 +00:00
|
|
|
func TestTransactions(t *testing.T) {
|
|
|
|
notWorking := make(map[string]bool, 100)
|
|
|
|
|
2015-04-15 20:37:16 +00:00
|
|
|
// TODO: all these tests should work! remove them from the array when they work
|
2015-04-10 09:55:31 +00:00
|
|
|
snafus := []string{
|
2015-05-07 11:03:22 +00:00
|
|
|
"TransactionWithHihghNonce256", // fails due to testing upper bound of 256 bit nonce
|
2015-04-10 10:34:55 +00:00
|
|
|
}
|
2015-04-10 09:55:31 +00:00
|
|
|
|
|
|
|
for _, name := range snafus {
|
|
|
|
notWorking[name] = true
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
2015-06-10 16:34:38 +00:00
|
|
|
err = RunTransactionTests(filepath.Join(transactionTestDir, "ttTransactionTest.json"),
|
2015-04-10 09:55:31 +00:00
|
|
|
notWorking)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWrongRLPTransactions(t *testing.T) {
|
|
|
|
notWorking := make(map[string]bool, 100)
|
|
|
|
var err error
|
2015-06-10 16:34:38 +00:00
|
|
|
err = RunTransactionTests(filepath.Join(transactionTestDir, "ttWrongRLPTransaction.json"),
|
2015-04-10 09:55:31 +00:00
|
|
|
notWorking)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
2015-04-15 20:37:16 +00:00
|
|
|
|
|
|
|
func Test10MBtx(t *testing.T) {
|
|
|
|
notWorking := make(map[string]bool, 100)
|
|
|
|
var err error
|
2015-06-10 16:34:38 +00:00
|
|
|
err = RunTransactionTests(filepath.Join(transactionTestDir, "tt10mbDataField.json"),
|
2015-04-15 20:37:16 +00:00
|
|
|
notWorking)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|