aboutsummaryrefslogtreecommitdiffstats
path: root/core/transaction_pool_test.go
blob: bbd5ddad43a754dec645cc6a3f30c933a72f94b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package core

import (
    "crypto/ecdsa"
    "math/big"
    "testing"

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/core/state"
    "github.com/ethereum/go-ethereum/core/types"
    "github.com/ethereum/go-ethereum/crypto"
    "github.com/ethereum/go-ethereum/ethdb"
    "github.com/ethereum/go-ethereum/event"
)

func transaction() *types.Transaction {
    return types.NewTransactionMessage(common.Address{}, big.NewInt(100), big.NewInt(100), big.NewInt(100), nil)
}

func setupTxPool() (*TxPool, *ecdsa.PrivateKey) {
    db, _ := ethdb.NewMemDatabase()
    statedb := state.New(common.Hash{}, db)

    var m event.TypeMux
    key, _ := crypto.GenerateKey()
    return NewTxPool(&m, func() *state.StateDB { return statedb }, func() *big.Int { return big.NewInt(1000000) }), key
}

func TestInvalidTransactions(t *testing.T) {
    pool, key := setupTxPool()

    tx := transaction()
    tx.SignECDSA(key)
    err := pool.Add(tx)
    if err != ErrNonExistentAccount {
        t.Error("expected", ErrNonExistentAccount)
    }

    from, _ := tx.From()
    pool.state.AddBalance(from, big.NewInt(1))
    err = pool.Add(tx)
    if err != ErrInsufficientFunds {
        t.Error("expected", ErrInsufficientFunds)
    }

    balance := new(big.Int).Add(tx.Value(), new(big.Int).Mul(tx.Gas(), tx.GasPrice()))
    pool.state.AddBalance(from, balance)
    err = pool.Add(tx)
    if err != ErrIntrinsicGas {
        t.Error("expected", ErrIntrinsicGas, "got", err)
    }

    pool.state.SetNonce(from, 1)
    pool.state.AddBalance(from, big.NewInt(0xffffffffffffff))
    tx.GasLimit = big.NewInt(100000)
    tx.Price = big.NewInt(1)
    tx.SignECDSA(key)

    err = pool.Add(tx)
    if err != ErrNonce {
        t.Error("expected", ErrNonce)
    }
}

func TestTransactionQueue(t *testing.T) {
    pool, key := setupTxPool()
    tx := transaction()
    tx.SignECDSA(key)
    from, _ := tx.From()
    pool.state.AddBalance(from, big.NewInt(1))
    pool.queueTx(tx.Hash(), tx)

    pool.checkQueue()
    if len(pool.pending) != 1 {
        t.Error("expected valid txs to be 1 is", len(pool.pending))
    }

    tx = transaction()
    tx.SetNonce(1)
    tx.SignECDSA(key)
    from, _ = tx.From()
    pool.state.SetNonce(from, 2)
    pool.queueTx(tx.Hash(), tx)
    pool.checkQueue()
    if _, ok := pool.pending[tx.Hash()]; ok {
        t.Error("expected transaction to be in tx pool")
    }

    if len(pool.queue[from]) > 0 {
        t.Error("expected transaction queue to be empty. is", len(pool.queue[from]))
    }

    pool, key = setupTxPool()
    tx1, tx2, tx3 := transaction(), transaction(), transaction()
    tx2.SetNonce(10)
    tx3.SetNonce(11)
    tx1.SignECDSA(key)
    tx2.SignECDSA(key)
    tx3.SignECDSA(key)
    pool.queueTx(tx1.Hash(), tx1)
    pool.queueTx(tx2.Hash(), tx2)
    pool.queueTx(tx3.Hash(), tx3)
    from, _ = tx1.From()

    pool.checkQueue()

    if len(pool.pending) != 1 {
        t.Error("expected tx pool to be 1 =")
    }
    if len(pool.queue[from]) != 2 {
        t.Error("expected len(queue) == 2, got", len(pool.queue[from]))
    }
}

func TestRemoveTx(t *testing.T) {
    pool, key := setupTxPool()
    tx := transaction()
    tx.SignECDSA(key)
    from, _ := tx.From()
    pool.state.AddBalance(from, big.NewInt(1))
    pool.queueTx(tx.Hash(), tx)
    pool.addTx(tx.Hash(), from, tx)
    if len(pool.queue) != 1 {
        t.Error("expected queue to be 1, got", len(pool.queue))
    }

    if len(pool.pending) != 1 {
        t.Error("expected txs to be 1, got", len(pool.pending))
    }

    pool.removeTx(tx.Hash())

    if len(pool.queue) > 0 {
        t.Error("expected queue to be 0, got", len(pool.queue))
    }

    if len(pool.pending) > 0 {
        t.Error("expected txs to be 0, got", len(pool.pending))
    }
}

func TestNegativeValue(t *testing.T) {
    pool, key := setupTxPool()

    tx := transaction()
    tx.Value().Set(big.NewInt(-1))
    tx.SignECDSA(key)
    from, _ := tx.From()
    pool.state.AddBalance(from, big.NewInt(1))
    err := pool.Add(tx)
    if err != ErrNegativeValue {
        t.Error("expected", ErrNegativeValue, "got", err)
    }
}