aboutsummaryrefslogtreecommitdiffstats
path: root/core/tx_pool_test.go
diff options
context:
space:
mode:
authorMartin Holst Swende <martin@swende.se>2017-06-22 16:14:31 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-06-23 01:36:07 +0800
commitb0b3cf2eeb74e45b373d4708375e899688c7f9c8 (patch)
treeb1d873a6d81078c516837f9a7a77aff017d72526 /core/tx_pool_test.go
parent58a1e13e6dd7f52a1d5e67bee47d23fd6cfdee5c (diff)
downloadgo-tangerine-b0b3cf2eeb74e45b373d4708375e899688c7f9c8.tar
go-tangerine-b0b3cf2eeb74e45b373d4708375e899688c7f9c8.tar.gz
go-tangerine-b0b3cf2eeb74e45b373d4708375e899688c7f9c8.tar.bz2
go-tangerine-b0b3cf2eeb74e45b373d4708375e899688c7f9c8.tar.lz
go-tangerine-b0b3cf2eeb74e45b373d4708375e899688c7f9c8.tar.xz
go-tangerine-b0b3cf2eeb74e45b373d4708375e899688c7f9c8.tar.zst
go-tangerine-b0b3cf2eeb74e45b373d4708375e899688c7f9c8.zip
core: add testcase for txpool
Diffstat (limited to 'core/tx_pool_test.go')
-rw-r--r--core/tx_pool_test.go66
1 files changed, 66 insertions, 0 deletions
diff --git a/core/tx_pool_test.go b/core/tx_pool_test.go
index 94b07170d..d82a8ef5a 100644
--- a/core/tx_pool_test.go
+++ b/core/tx_pool_test.go
@@ -719,6 +719,12 @@ func testTransactionLimitingEquivalency(t *testing.T, origin uint64) {
txns = append(txns, transaction(origin+i, big.NewInt(100000), key2))
}
pool2.AddBatch(txns)
+ if err := pool2.validateInternals(); err != nil {
+ t.Error(err)
+ }
+ if err := pool1.validateInternals(); err != nil {
+ t.Error(err)
+ }
// Ensure the batch optimization honors the same pool mechanics
if len(pool1.pending) != len(pool2.pending) {
@@ -769,6 +775,9 @@ func TestTransactionPendingGlobalLimiting(t *testing.T) {
// Import the batch and verify that limits have been enforced
pool.AddBatch(txs)
+ if err := pool.validateInternals(); err != nil {
+ t.Error(err)
+ }
pending := 0
for _, list := range pool.pending {
pending += list.Len()
@@ -778,6 +787,42 @@ func TestTransactionPendingGlobalLimiting(t *testing.T) {
}
}
+// Tests that if transactions start being capped, transasctions are also removed from 'all'
+func TestTransactionCapClearsFromAll(t *testing.T) {
+ // Reduce the queue limits to shorten test time
+ defer func(old uint64) { DefaultTxPoolConfig.GlobalSlots = old }(DefaultTxPoolConfig.GlobalSlots)
+ DefaultTxPoolConfig.AccountSlots = 2
+ DefaultTxPoolConfig.AccountQueue = 2
+ DefaultTxPoolConfig.GlobalSlots = 8
+
+ // Create the pool to test the limit enforcement with
+ db, _ := ethdb.NewMemDatabase()
+ statedb, _ := state.New(common.Hash{}, db)
+
+ pool := NewTxPool(DefaultTxPoolConfig, params.TestChainConfig, new(event.TypeMux), func() (*state.StateDB, error) { return statedb, nil }, func() *big.Int { return big.NewInt(1000000) })
+ pool.resetState()
+
+ // Create a number of test accounts and fund them
+ state, _ := pool.currentState()
+
+ key, _ := crypto.GenerateKey()
+ addr := crypto.PubkeyToAddress(key.PublicKey)
+ state.AddBalance(addr, big.NewInt(1000000))
+
+ txs := types.Transactions{}
+ nonce := uint64(0)
+ for j := 0; j < int(DefaultTxPoolConfig.GlobalSlots)*2; j++ {
+ tx := transaction(nonce, big.NewInt(100000), key)
+ txs = append(txs, tx)
+ nonce++
+ }
+ // Import the batch and verify that limits have been enforced
+ pool.AddBatch(txs)
+ if err := pool.validateInternals(); err != nil {
+ t.Error(err)
+ }
+}
+
// Tests that if the transaction count belonging to multiple accounts go above
// some hard threshold, if they are under the minimum guaranteed slot count then
// the transactions are still kept.
@@ -815,6 +860,10 @@ func TestTransactionPendingMinimumAllowance(t *testing.T) {
// Import the batch and verify that limits have been enforced
pool.AddBatch(txs)
+ if err := pool.validateInternals(); err != nil {
+ t.Error(err)
+ }
+
for addr, list := range pool.pending {
if list.Len() != int(DefaultTxPoolConfig.AccountSlots) {
t.Errorf("addr %x: total pending transactions mismatch: have %d, want %d", addr, list.Len(), DefaultTxPoolConfig.AccountSlots)
@@ -860,6 +909,10 @@ func TestTransactionPoolRepricing(t *testing.T) {
// Import the batch and that both pending and queued transactions match up
pool.AddBatch(txs)
+ if err := pool.validateInternals(); err != nil {
+ t.Error(err)
+ }
+
pending, queued := pool.stats()
if pending != 4 {
t.Fatalf("pending transactions mismatched: have %d, want %d", pending, 4)
@@ -894,6 +947,10 @@ func TestTransactionPoolRepricing(t *testing.T) {
if pending, _ = pool.stats(); pending != 3 {
t.Fatalf("pending transactions mismatched: have %d, want %d", pending, 3)
}
+ if err := pool.validateInternals(); err != nil {
+ t.Error(err)
+ }
+
}
// Tests that when the pool reaches its global transaction limit, underpriced
@@ -937,6 +994,9 @@ func TestTransactionPoolUnderpricing(t *testing.T) {
// Import the batch and that both pending and queued transactions match up
pool.AddBatch(txs)
+ if err := pool.validateInternals(); err != nil {
+ t.Error(err)
+ }
pending, queued := pool.stats()
if pending != 3 {
@@ -980,6 +1040,9 @@ func TestTransactionPoolUnderpricing(t *testing.T) {
if queued != 2 {
t.Fatalf("queued transactions mismatched: have %d, want %d", queued, 2)
}
+ if err := pool.validateInternals(); err != nil {
+ t.Error(err)
+ }
}
// Tests that the pool rejects replacement transactions that don't meet the minimum
@@ -1041,6 +1104,9 @@ func TestTransactionReplacement(t *testing.T) {
if err := pool.Add(pricedTransaction(2, big.NewInt(100000), big.NewInt(threshold+1), key)); err != nil {
t.Fatalf("failed to replace original queued transaction: %v", err)
}
+ if err := pool.validateInternals(); err != nil {
+ t.Error(err)
+ }
}
// Benchmarks the speed of validating the contents of the pending queue of the