quorum/core/transaction_pool_test.go

96 lines
2.0 KiB
Go
Raw Normal View History

package core
import (
"crypto/ecdsa"
"testing"
2015-03-18 05:38:47 -07:00
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
2015-01-07 04:17:48 -08:00
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/event"
2015-03-23 08:59:09 -07:00
"github.com/ethereum/go-ethereum/core/state"
)
// State query interface
2015-03-16 03:27:38 -07:00
type stateQuery struct{ db common.Database }
2015-01-07 04:17:48 -08:00
func SQ() stateQuery {
db, _ := ethdb.NewMemDatabase()
return stateQuery{db: db}
}
func (self stateQuery) GetAccount(addr []byte) *state.StateObject {
2015-03-18 05:38:47 -07:00
return state.NewStateObject(common.BytesToAddress(addr), self.db)
}
func transaction() *types.Transaction {
2015-03-18 05:38:47 -07:00
return types.NewTransactionMessage(common.Address{}, common.Big0, common.Big0, common.Big0, nil)
}
func setup() (*TxPool, *ecdsa.PrivateKey) {
var m event.TypeMux
key, _ := crypto.GenerateKey()
return NewTxPool(&m), key
}
func TestTxAdding(t *testing.T) {
pool, key := setup()
tx1 := transaction()
tx1.SignECDSA(key)
err := pool.Add(tx1)
if err != nil {
t.Error(err)
}
err = pool.Add(tx1)
if err == nil {
t.Error("added tx twice")
}
}
func TestAddInvalidTx(t *testing.T) {
pool, _ := setup()
tx1 := transaction()
err := pool.Add(tx1)
if err == nil {
t.Error("expected error")
}
}
func TestRemoveSet(t *testing.T) {
pool, _ := setup()
tx1 := transaction()
2015-01-06 04:18:09 -08:00
pool.addTx(tx1)
pool.RemoveSet(types.Transactions{tx1})
if pool.Size() > 0 {
t.Error("expected pool size to be 0")
}
}
func TestRemoveInvalid(t *testing.T) {
2015-01-02 03:18:23 -08:00
pool, key := setup()
tx1 := transaction()
2015-01-06 04:18:09 -08:00
pool.addTx(tx1)
2015-01-07 04:17:48 -08:00
pool.RemoveInvalid(SQ())
if pool.Size() > 0 {
t.Error("expected pool size to be 0")
}
2015-01-02 03:18:23 -08:00
tx1.SetNonce(1)
tx1.SignECDSA(key)
2015-01-06 04:18:09 -08:00
pool.addTx(tx1)
2015-01-07 04:17:48 -08:00
pool.RemoveInvalid(SQ())
2015-01-02 03:18:23 -08:00
if pool.Size() != 1 {
t.Error("expected pool size to be 1, is", pool.Size())
}
}
func TestInvalidSender(t *testing.T) {
pool, _ := setup()
2015-03-18 05:38:47 -07:00
err := pool.ValidateTransaction(new(types.Transaction))
if err != ErrInvalidSender {
2015-03-18 05:38:47 -07:00
t.Errorf("expected %v, got %v", ErrInvalidSender, err)
}
}