github.com/YoungNK/go-ethereum@v1.9.7/core/tx_list_test.go (about) 1 // Copyright 2016 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 package core 18 19 import ( 20 "math/rand" 21 "testing" 22 23 "github.com/ethereum/go-ethereum/core/types" 24 "github.com/ethereum/go-ethereum/crypto" 25 ) 26 27 // Tests that transactions can be added to strict lists and list contents and 28 // nonce boundaries are correctly maintained. 29 func TestStrictTxListAdd(t *testing.T) { 30 // Generate a list of transactions to insert 31 key, _ := crypto.GenerateKey() 32 33 txs := make(types.Transactions, 1024) 34 for i := 0; i < len(txs); i++ { 35 txs[i] = transaction(uint64(i), 0, key) 36 } 37 // Insert the transactions in a random order 38 list := newTxList(true) 39 for _, v := range rand.Perm(len(txs)) { 40 list.Add(txs[v], DefaultTxPoolConfig.PriceBump) 41 } 42 // Verify internal state 43 if len(list.txs.items) != len(txs) { 44 t.Errorf("transaction count mismatch: have %d, want %d", len(list.txs.items), len(txs)) 45 } 46 for i, tx := range txs { 47 if list.txs.items[tx.Nonce()] != tx { 48 t.Errorf("item %d: transaction mismatch: have %v, want %v", i, list.txs.items[tx.Nonce()], tx) 49 } 50 } 51 }