quorum/core/block_processor_test.go

70 lines
1.6 KiB
Go
Raw Normal View History

2015-02-18 04:14:21 -08:00
package core
import (
"math/big"
"testing"
2015-03-18 05:38:47 -07:00
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/types"
2015-02-18 04:14:21 -08:00
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/event"
2015-03-06 11:07:35 -08:00
"github.com/ethereum/go-ethereum/pow/ezp"
2015-02-18 04:14:21 -08:00
)
func proc() (*BlockProcessor, *ChainManager) {
db, _ := ethdb.NewMemDatabase()
var mux event.TypeMux
2015-05-18 08:46:47 -07:00
chainMan := NewChainManager(db, db, thePow(), &mux)
return NewBlockProcessor(db, db, ezp.New(), nil, chainMan, &mux), chainMan
2015-02-18 04:14:21 -08:00
}
func TestNumber(t *testing.T) {
bp, chain := proc()
2015-03-18 05:38:47 -07:00
block1 := chain.NewBlock(common.Address{})
2015-02-18 04:14:21 -08:00
block1.Header().Number = big.NewInt(3)
block1.Header().Time--
2015-02-18 04:14:21 -08:00
2015-05-18 08:46:47 -07:00
err := bp.ValidateHeader(block1.Header(), chain.Genesis().Header(), false)
2015-02-18 04:14:21 -08:00
if err != BlockNumberErr {
t.Errorf("expected block number error %v", err)
2015-02-18 04:14:21 -08:00
}
2015-03-18 05:38:47 -07:00
block1 = chain.NewBlock(common.Address{})
2015-05-18 08:46:47 -07:00
err = bp.ValidateHeader(block1.Header(), chain.Genesis().Header(), false)
2015-02-18 04:14:21 -08:00
if err == BlockNumberErr {
t.Errorf("didn't expect block number error")
}
}
func TestPutReceipt(t *testing.T) {
db, _ := ethdb.NewMemDatabase()
var addr common.Address
addr[0] = 1
var hash common.Hash
hash[0] = 2
receipt := new(types.Receipt)
receipt.SetLogs(state.Logs{&state.Log{
Address: addr,
Topics: []common.Hash{hash},
Data: []byte("hi"),
Number: 42,
TxHash: hash,
TxIndex: 0,
BlockHash: hash,
Index: 0,
}})
putReceipts(db, hash, types.Receipts{receipt})
receipts, err := getBlockReceipts(db, hash)
if err != nil {
t.Error("got err:", err)
}
if len(receipts) != 1 {
t.Error("expected to get 1 receipt, got", len(receipts))
}
}