quorum/test_runner_test.go

36 lines
695 B
Go
Raw Normal View History

2014-01-01 06:49:38 -08:00
package main
import (
2014-01-11 06:27:08 -08:00
"encoding/hex"
_ "fmt"
2014-01-15 14:32:30 -08:00
"github.com/ethereum/ethdb-go"
"github.com/ethereum/ethutil-go"
2014-01-11 06:27:08 -08:00
"testing"
2014-01-01 06:49:38 -08:00
)
var testsource = `
{
"inputs":{
"doe": "reindeer",
"dog": "puppy",
"dogglesworth": "cat"
},
"expectation":"e378927bfc1bd4f01a2e8d9f59bd18db8a208bb493ac0b00f93ce51d4d2af76c"
2014-01-01 06:49:38 -08:00
}`
func TestTestRunner(t *testing.T) {
2014-01-15 14:32:30 -08:00
db, _ := ethdb.NewMemDatabase()
trie := ethutil.NewTrie(db, "")
2014-01-01 06:49:38 -08:00
2014-01-11 06:27:08 -08:00
runner := NewTestRunner(t)
runner.RunFromString(testsource, func(source *TestSource) {
for key, value := range source.Inputs {
trie.Update(key, value)
}
2014-01-01 06:49:38 -08:00
2014-01-15 14:32:30 -08:00
if hex.EncodeToString([]byte(trie.Root)) != source.Expectation {
2014-01-11 06:27:08 -08:00
t.Error("trie root did not match")
}
})
2014-01-01 06:49:38 -08:00
}