2016-11-09 01:01:56 +00:00
|
|
|
// Copyright 2016 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
package les
|
|
|
|
|
|
|
|
import (
|
2018-02-11 12:57:46 +00:00
|
|
|
"encoding/binary"
|
2017-10-24 13:19:09 +00:00
|
|
|
"math/big"
|
2016-10-14 03:51:29 +00:00
|
|
|
"math/rand"
|
|
|
|
"testing"
|
2017-10-25 09:18:44 +00:00
|
|
|
"time"
|
2016-10-14 03:51:29 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2017-12-22 12:37:50 +00:00
|
|
|
"github.com/ethereum/go-ethereum/consensus/ethash"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2018-05-07 11:35:06 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/downloader"
|
2017-06-21 10:27:38 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2017-10-24 13:19:09 +00:00
|
|
|
"github.com/ethereum/go-ethereum/light"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/p2p"
|
2017-10-24 13:19:09 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rlp"
|
|
|
|
"github.com/ethereum/go-ethereum/trie"
|
|
|
|
)
|
|
|
|
|
|
|
|
func expectResponse(r p2p.MsgReader, msgcode, reqID, bv uint64, data interface{}) error {
|
|
|
|
type resp struct {
|
|
|
|
ReqID, BV uint64
|
|
|
|
Data interface{}
|
|
|
|
}
|
|
|
|
return p2p.ExpectMsg(r, msgcode, resp{reqID, bv, data})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests that block headers can be retrieved from a remote chain based on user queries.
|
|
|
|
func TestGetBlockHeadersLes1(t *testing.T) { testGetBlockHeaders(t, 1) }
|
2017-10-24 13:19:09 +00:00
|
|
|
func TestGetBlockHeadersLes2(t *testing.T) { testGetBlockHeaders(t, 2) }
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func testGetBlockHeaders(t *testing.T, protocol int) {
|
2018-08-28 07:08:16 +00:00
|
|
|
server, tearDown := newServerEnv(t, downloader.MaxHashFetch+15, protocol, nil)
|
|
|
|
defer tearDown()
|
|
|
|
bc := server.pm.blockchain.(*core.BlockChain)
|
2016-10-14 03:51:29 +00:00
|
|
|
|
|
|
|
// Create a "random" unknown hash for testing
|
|
|
|
var unknown common.Hash
|
2017-01-06 14:52:03 +00:00
|
|
|
for i := range unknown {
|
2016-10-14 03:51:29 +00:00
|
|
|
unknown[i] = byte(i)
|
|
|
|
}
|
|
|
|
// Create a batch of tests for various scenarios
|
|
|
|
limit := uint64(MaxHeaderFetch)
|
|
|
|
tests := []struct {
|
|
|
|
query *getBlockHeadersData // The query to execute for header retrieval
|
|
|
|
expect []common.Hash // The hashes of the block whose headers are expected
|
|
|
|
}{
|
|
|
|
// A single random block should be retrievable by hash and number too
|
|
|
|
{
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Hash: bc.GetBlockByNumber(limit / 2).Hash()}, Amount: 1},
|
|
|
|
[]common.Hash{bc.GetBlockByNumber(limit / 2).Hash()},
|
|
|
|
}, {
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: limit / 2}, Amount: 1},
|
|
|
|
[]common.Hash{bc.GetBlockByNumber(limit / 2).Hash()},
|
|
|
|
},
|
|
|
|
// Multiple headers should be retrievable in both directions
|
|
|
|
{
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: limit / 2}, Amount: 3},
|
|
|
|
[]common.Hash{
|
|
|
|
bc.GetBlockByNumber(limit / 2).Hash(),
|
|
|
|
bc.GetBlockByNumber(limit/2 + 1).Hash(),
|
|
|
|
bc.GetBlockByNumber(limit/2 + 2).Hash(),
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: limit / 2}, Amount: 3, Reverse: true},
|
|
|
|
[]common.Hash{
|
|
|
|
bc.GetBlockByNumber(limit / 2).Hash(),
|
|
|
|
bc.GetBlockByNumber(limit/2 - 1).Hash(),
|
|
|
|
bc.GetBlockByNumber(limit/2 - 2).Hash(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// Multiple headers with skip lists should be retrievable
|
|
|
|
{
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: limit / 2}, Skip: 3, Amount: 3},
|
|
|
|
[]common.Hash{
|
|
|
|
bc.GetBlockByNumber(limit / 2).Hash(),
|
|
|
|
bc.GetBlockByNumber(limit/2 + 4).Hash(),
|
|
|
|
bc.GetBlockByNumber(limit/2 + 8).Hash(),
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: limit / 2}, Skip: 3, Amount: 3, Reverse: true},
|
|
|
|
[]common.Hash{
|
|
|
|
bc.GetBlockByNumber(limit / 2).Hash(),
|
|
|
|
bc.GetBlockByNumber(limit/2 - 4).Hash(),
|
|
|
|
bc.GetBlockByNumber(limit/2 - 8).Hash(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// The chain endpoints should be retrievable
|
|
|
|
{
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: 0}, Amount: 1},
|
|
|
|
[]common.Hash{bc.GetBlockByNumber(0).Hash()},
|
|
|
|
}, {
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: bc.CurrentBlock().NumberU64()}, Amount: 1},
|
|
|
|
[]common.Hash{bc.CurrentBlock().Hash()},
|
|
|
|
},
|
|
|
|
// Ensure protocol limits are honored
|
|
|
|
/*{
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: bc.CurrentBlock().NumberU64() - 1}, Amount: limit + 10, Reverse: true},
|
|
|
|
bc.GetBlockHashesFromHash(bc.CurrentBlock().Hash(), limit),
|
|
|
|
},*/
|
|
|
|
// Check that requesting more than available is handled gracefully
|
|
|
|
{
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: bc.CurrentBlock().NumberU64() - 4}, Skip: 3, Amount: 3},
|
|
|
|
[]common.Hash{
|
|
|
|
bc.GetBlockByNumber(bc.CurrentBlock().NumberU64() - 4).Hash(),
|
|
|
|
bc.GetBlockByNumber(bc.CurrentBlock().NumberU64()).Hash(),
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: 4}, Skip: 3, Amount: 3, Reverse: true},
|
|
|
|
[]common.Hash{
|
|
|
|
bc.GetBlockByNumber(4).Hash(),
|
|
|
|
bc.GetBlockByNumber(0).Hash(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// Check that requesting more than available is handled gracefully, even if mid skip
|
|
|
|
{
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: bc.CurrentBlock().NumberU64() - 4}, Skip: 2, Amount: 3},
|
|
|
|
[]common.Hash{
|
|
|
|
bc.GetBlockByNumber(bc.CurrentBlock().NumberU64() - 4).Hash(),
|
|
|
|
bc.GetBlockByNumber(bc.CurrentBlock().NumberU64() - 1).Hash(),
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: 4}, Skip: 2, Amount: 3, Reverse: true},
|
|
|
|
[]common.Hash{
|
|
|
|
bc.GetBlockByNumber(4).Hash(),
|
|
|
|
bc.GetBlockByNumber(1).Hash(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// Check that non existing headers aren't returned
|
|
|
|
{
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Hash: unknown}, Amount: 1},
|
|
|
|
[]common.Hash{},
|
|
|
|
}, {
|
|
|
|
&getBlockHeadersData{Origin: hashOrNumber{Number: bc.CurrentBlock().NumberU64() + 1}, Amount: 1},
|
|
|
|
[]common.Hash{},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
// Run each of the tests and verify the results against the chain
|
|
|
|
var reqID uint64
|
|
|
|
for i, tt := range tests {
|
|
|
|
// Collect the headers to expect in the response
|
|
|
|
headers := []*types.Header{}
|
|
|
|
for _, hash := range tt.expect {
|
|
|
|
headers = append(headers, bc.GetHeaderByHash(hash))
|
|
|
|
}
|
|
|
|
// Send the hash request and verify the response
|
|
|
|
reqID++
|
2018-08-28 07:08:16 +00:00
|
|
|
cost := server.tPeer.GetRequestCost(GetBlockHeadersMsg, int(tt.query.Amount))
|
|
|
|
sendRequest(server.tPeer.app, GetBlockHeadersMsg, reqID, cost, tt.query)
|
|
|
|
if err := expectResponse(server.tPeer.app, BlockHeadersMsg, reqID, testBufLimit, headers); err != nil {
|
2016-10-14 03:51:29 +00:00
|
|
|
t.Errorf("test %d: headers mismatch: %v", i, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests that block contents can be retrieved from a remote chain based on their hashes.
|
|
|
|
func TestGetBlockBodiesLes1(t *testing.T) { testGetBlockBodies(t, 1) }
|
2017-10-24 13:19:09 +00:00
|
|
|
func TestGetBlockBodiesLes2(t *testing.T) { testGetBlockBodies(t, 2) }
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func testGetBlockBodies(t *testing.T, protocol int) {
|
2018-08-28 07:08:16 +00:00
|
|
|
server, tearDown := newServerEnv(t, downloader.MaxBlockFetch+15, protocol, nil)
|
|
|
|
defer tearDown()
|
|
|
|
bc := server.pm.blockchain.(*core.BlockChain)
|
2016-10-14 03:51:29 +00:00
|
|
|
|
|
|
|
// Create a batch of tests for various scenarios
|
|
|
|
limit := MaxBodyFetch
|
|
|
|
tests := []struct {
|
|
|
|
random int // Number of blocks to fetch randomly from the chain
|
|
|
|
explicit []common.Hash // Explicitly requested blocks
|
|
|
|
available []bool // Availability of explicitly requested blocks
|
|
|
|
expected int // Total number of existing blocks to expect
|
|
|
|
}{
|
|
|
|
{1, nil, nil, 1}, // A single random block should be retrievable
|
|
|
|
{10, nil, nil, 10}, // Multiple random blocks should be retrievable
|
|
|
|
{limit, nil, nil, limit}, // The maximum possible blocks should be retrievable
|
|
|
|
//{limit + 1, nil, nil, limit}, // No more than the possible block count should be returned
|
|
|
|
{0, []common.Hash{bc.Genesis().Hash()}, []bool{true}, 1}, // The genesis block should be retrievable
|
|
|
|
{0, []common.Hash{bc.CurrentBlock().Hash()}, []bool{true}, 1}, // The chains head block should be retrievable
|
2017-01-06 14:52:03 +00:00
|
|
|
{0, []common.Hash{{}}, []bool{false}, 0}, // A non existent block should not be returned
|
2016-10-14 03:51:29 +00:00
|
|
|
|
|
|
|
// Existing and non-existing blocks interleaved should not cause problems
|
|
|
|
{0, []common.Hash{
|
2017-01-06 14:52:03 +00:00
|
|
|
{},
|
2016-10-14 03:51:29 +00:00
|
|
|
bc.GetBlockByNumber(1).Hash(),
|
2017-01-06 14:52:03 +00:00
|
|
|
{},
|
2016-10-14 03:51:29 +00:00
|
|
|
bc.GetBlockByNumber(10).Hash(),
|
2017-01-06 14:52:03 +00:00
|
|
|
{},
|
2016-10-14 03:51:29 +00:00
|
|
|
bc.GetBlockByNumber(100).Hash(),
|
2017-01-06 14:52:03 +00:00
|
|
|
{},
|
2016-10-14 03:51:29 +00:00
|
|
|
}, []bool{false, true, false, true, false, true, false}, 3},
|
|
|
|
}
|
|
|
|
// Run each of the tests and verify the results against the chain
|
|
|
|
var reqID uint64
|
|
|
|
for i, tt := range tests {
|
|
|
|
// Collect the hashes to request, and the response to expect
|
|
|
|
hashes, seen := []common.Hash{}, make(map[int64]bool)
|
|
|
|
bodies := []*types.Body{}
|
|
|
|
|
|
|
|
for j := 0; j < tt.random; j++ {
|
|
|
|
for {
|
|
|
|
num := rand.Int63n(int64(bc.CurrentBlock().NumberU64()))
|
|
|
|
if !seen[num] {
|
|
|
|
seen[num] = true
|
|
|
|
|
|
|
|
block := bc.GetBlockByNumber(uint64(num))
|
|
|
|
hashes = append(hashes, block.Hash())
|
|
|
|
if len(bodies) < tt.expected {
|
|
|
|
bodies = append(bodies, &types.Body{Transactions: block.Transactions(), Uncles: block.Uncles()})
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for j, hash := range tt.explicit {
|
|
|
|
hashes = append(hashes, hash)
|
|
|
|
if tt.available[j] && len(bodies) < tt.expected {
|
|
|
|
block := bc.GetBlockByHash(hash)
|
|
|
|
bodies = append(bodies, &types.Body{Transactions: block.Transactions(), Uncles: block.Uncles()})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
reqID++
|
|
|
|
// Send the hash request and verify the response
|
2018-08-28 07:08:16 +00:00
|
|
|
cost := server.tPeer.GetRequestCost(GetBlockBodiesMsg, len(hashes))
|
|
|
|
sendRequest(server.tPeer.app, GetBlockBodiesMsg, reqID, cost, hashes)
|
|
|
|
if err := expectResponse(server.tPeer.app, BlockBodiesMsg, reqID, testBufLimit, bodies); err != nil {
|
2016-10-14 03:51:29 +00:00
|
|
|
t.Errorf("test %d: bodies mismatch: %v", i, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests that the contract codes can be retrieved based on account addresses.
|
|
|
|
func TestGetCodeLes1(t *testing.T) { testGetCode(t, 1) }
|
2017-10-24 13:19:09 +00:00
|
|
|
func TestGetCodeLes2(t *testing.T) { testGetCode(t, 2) }
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func testGetCode(t *testing.T, protocol int) {
|
|
|
|
// Assemble the test environment
|
2018-08-28 07:08:16 +00:00
|
|
|
server, tearDown := newServerEnv(t, 4, protocol, nil)
|
|
|
|
defer tearDown()
|
|
|
|
bc := server.pm.blockchain.(*core.BlockChain)
|
2016-10-14 03:51:29 +00:00
|
|
|
|
|
|
|
var codereqs []*CodeReq
|
|
|
|
var codes [][]byte
|
|
|
|
|
|
|
|
for i := uint64(0); i <= bc.CurrentBlock().NumberU64(); i++ {
|
|
|
|
header := bc.GetHeaderByNumber(i)
|
|
|
|
req := &CodeReq{
|
|
|
|
BHash: header.Hash(),
|
|
|
|
AccKey: crypto.Keccak256(testContractAddr[:]),
|
|
|
|
}
|
|
|
|
codereqs = append(codereqs, req)
|
|
|
|
if i >= testContractDeployed {
|
|
|
|
codes = append(codes, testContractCodeDeployed)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-28 07:08:16 +00:00
|
|
|
cost := server.tPeer.GetRequestCost(GetCodeMsg, len(codereqs))
|
|
|
|
sendRequest(server.tPeer.app, GetCodeMsg, 42, cost, codereqs)
|
|
|
|
if err := expectResponse(server.tPeer.app, CodeMsg, 42, testBufLimit, codes); err != nil {
|
2016-10-14 03:51:29 +00:00
|
|
|
t.Errorf("codes mismatch: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests that the transaction receipts can be retrieved based on hashes.
|
|
|
|
func TestGetReceiptLes1(t *testing.T) { testGetReceipt(t, 1) }
|
2017-10-24 13:19:09 +00:00
|
|
|
func TestGetReceiptLes2(t *testing.T) { testGetReceipt(t, 2) }
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func testGetReceipt(t *testing.T, protocol int) {
|
|
|
|
// Assemble the test environment
|
2018-08-28 07:08:16 +00:00
|
|
|
server, tearDown := newServerEnv(t, 4, protocol, nil)
|
|
|
|
defer tearDown()
|
|
|
|
bc := server.pm.blockchain.(*core.BlockChain)
|
2016-10-14 03:51:29 +00:00
|
|
|
|
|
|
|
// Collect the hashes to request, and the response to expect
|
|
|
|
hashes, receipts := []common.Hash{}, []types.Receipts{}
|
|
|
|
for i := uint64(0); i <= bc.CurrentBlock().NumberU64(); i++ {
|
|
|
|
block := bc.GetBlockByNumber(i)
|
|
|
|
|
|
|
|
hashes = append(hashes, block.Hash())
|
2018-08-28 07:08:16 +00:00
|
|
|
receipts = append(receipts, rawdb.ReadReceipts(server.db, block.Hash(), block.NumberU64()))
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
// Send the hash request and verify the response
|
2018-08-28 07:08:16 +00:00
|
|
|
cost := server.tPeer.GetRequestCost(GetReceiptsMsg, len(hashes))
|
|
|
|
sendRequest(server.tPeer.app, GetReceiptsMsg, 42, cost, hashes)
|
|
|
|
if err := expectResponse(server.tPeer.app, ReceiptsMsg, 42, testBufLimit, receipts); err != nil {
|
2016-10-14 03:51:29 +00:00
|
|
|
t.Errorf("receipts mismatch: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests that trie merkle proofs can be retrieved
|
2017-08-08 16:31:08 +00:00
|
|
|
func TestGetProofsLes1(t *testing.T) { testGetProofs(t, 1) }
|
2017-10-24 13:19:09 +00:00
|
|
|
func TestGetProofsLes2(t *testing.T) { testGetProofs(t, 2) }
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func testGetProofs(t *testing.T, protocol int) {
|
|
|
|
// Assemble the test environment
|
2018-08-28 07:08:16 +00:00
|
|
|
server, tearDown := newServerEnv(t, 4, protocol, nil)
|
|
|
|
defer tearDown()
|
|
|
|
bc := server.pm.blockchain.(*core.BlockChain)
|
2016-10-14 03:51:29 +00:00
|
|
|
|
2017-10-24 13:19:09 +00:00
|
|
|
var (
|
|
|
|
proofreqs []ProofReq
|
|
|
|
proofsV1 [][]rlp.RawValue
|
|
|
|
)
|
|
|
|
proofsV2 := light.NewNodeSet()
|
2016-10-14 03:51:29 +00:00
|
|
|
|
2017-01-06 14:52:03 +00:00
|
|
|
accounts := []common.Address{testBankAddress, acc1Addr, acc2Addr, {}}
|
2016-10-14 03:51:29 +00:00
|
|
|
for i := uint64(0); i <= bc.CurrentBlock().NumberU64(); i++ {
|
|
|
|
header := bc.GetHeaderByNumber(i)
|
|
|
|
root := header.Root
|
2018-08-28 07:08:16 +00:00
|
|
|
trie, _ := trie.New(root, trie.NewDatabase(server.db))
|
2016-10-14 03:51:29 +00:00
|
|
|
|
|
|
|
for _, acc := range accounts {
|
|
|
|
req := ProofReq{
|
|
|
|
BHash: header.Hash(),
|
2017-08-08 16:31:08 +00:00
|
|
|
Key: crypto.Keccak256(acc[:]),
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
proofreqs = append(proofreqs, req)
|
|
|
|
|
2017-10-24 13:19:09 +00:00
|
|
|
switch protocol {
|
|
|
|
case 1:
|
|
|
|
var proof light.NodeList
|
|
|
|
trie.Prove(crypto.Keccak256(acc[:]), 0, &proof)
|
|
|
|
proofsV1 = append(proofsV1, proof)
|
|
|
|
case 2:
|
|
|
|
trie.Prove(crypto.Keccak256(acc[:]), 0, proofsV2)
|
|
|
|
}
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Send the proof request and verify the response
|
2017-10-24 13:19:09 +00:00
|
|
|
switch protocol {
|
|
|
|
case 1:
|
2018-08-28 07:08:16 +00:00
|
|
|
cost := server.tPeer.GetRequestCost(GetProofsV1Msg, len(proofreqs))
|
|
|
|
sendRequest(server.tPeer.app, GetProofsV1Msg, 42, cost, proofreqs)
|
|
|
|
if err := expectResponse(server.tPeer.app, ProofsV1Msg, 42, testBufLimit, proofsV1); err != nil {
|
2017-10-24 13:19:09 +00:00
|
|
|
t.Errorf("proofs mismatch: %v", err)
|
|
|
|
}
|
|
|
|
case 2:
|
2018-08-28 07:08:16 +00:00
|
|
|
cost := server.tPeer.GetRequestCost(GetProofsV2Msg, len(proofreqs))
|
|
|
|
sendRequest(server.tPeer.app, GetProofsV2Msg, 42, cost, proofreqs)
|
|
|
|
if err := expectResponse(server.tPeer.app, ProofsV2Msg, 42, testBufLimit, proofsV2.NodeList()); err != nil {
|
2018-02-11 12:57:46 +00:00
|
|
|
t.Errorf("proofs mismatch: %v", err)
|
2017-10-24 13:19:09 +00:00
|
|
|
}
|
2018-02-11 12:57:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests that CHT proofs can be correctly retrieved.
|
|
|
|
func TestGetCHTProofsLes1(t *testing.T) { testGetCHTProofs(t, 1) }
|
|
|
|
func TestGetCHTProofsLes2(t *testing.T) { testGetCHTProofs(t, 2) }
|
|
|
|
|
|
|
|
func testGetCHTProofs(t *testing.T, protocol int) {
|
2018-08-28 07:08:16 +00:00
|
|
|
config := light.TestServerIndexerConfig
|
|
|
|
frequency := config.ChtSize
|
|
|
|
if protocol == 2 {
|
|
|
|
frequency = config.PairChtSize
|
2018-02-11 12:57:46 +00:00
|
|
|
}
|
|
|
|
|
2018-08-28 07:08:16 +00:00
|
|
|
waitIndexers := func(cIndexer, bIndexer, btIndexer *core.ChainIndexer) {
|
|
|
|
expectSections := frequency / config.ChtSize
|
|
|
|
for {
|
|
|
|
cs, _, _ := cIndexer.Sections()
|
|
|
|
bs, _, _ := bIndexer.Sections()
|
|
|
|
if cs >= expectSections && bs >= expectSections {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
server, tearDown := newServerEnv(t, int(frequency+config.ChtConfirms), protocol, waitIndexers)
|
|
|
|
defer tearDown()
|
|
|
|
bc := server.pm.blockchain.(*core.BlockChain)
|
2018-02-11 12:57:46 +00:00
|
|
|
|
|
|
|
// Assemble the proofs from the different protocols
|
2018-08-28 07:08:16 +00:00
|
|
|
header := bc.GetHeaderByNumber(frequency - 1)
|
2018-02-11 12:57:46 +00:00
|
|
|
rlp, _ := rlp.EncodeToBytes(header)
|
|
|
|
|
|
|
|
key := make([]byte, 8)
|
2018-08-28 07:08:16 +00:00
|
|
|
binary.BigEndian.PutUint64(key, frequency-1)
|
2018-02-11 12:57:46 +00:00
|
|
|
|
|
|
|
proofsV1 := []ChtResp{{
|
|
|
|
Header: header,
|
|
|
|
}}
|
|
|
|
proofsV2 := HelperTrieResps{
|
|
|
|
AuxData: [][]byte{rlp},
|
|
|
|
}
|
|
|
|
switch protocol {
|
|
|
|
case 1:
|
2018-08-28 07:08:16 +00:00
|
|
|
root := light.GetChtRoot(server.db, 0, bc.GetHeaderByNumber(frequency-1).Hash())
|
|
|
|
trie, _ := trie.New(root, trie.NewDatabase(ethdb.NewTable(server.db, light.ChtTablePrefix)))
|
2018-02-11 12:57:46 +00:00
|
|
|
|
|
|
|
var proof light.NodeList
|
|
|
|
trie.Prove(key, 0, &proof)
|
|
|
|
proofsV1[0].Proof = proof
|
|
|
|
|
|
|
|
case 2:
|
2018-08-28 07:08:16 +00:00
|
|
|
root := light.GetChtRoot(server.db, (frequency/config.ChtSize)-1, bc.GetHeaderByNumber(frequency-1).Hash())
|
|
|
|
trie, _ := trie.New(root, trie.NewDatabase(ethdb.NewTable(server.db, light.ChtTablePrefix)))
|
2018-02-11 12:57:46 +00:00
|
|
|
trie.Prove(key, 0, &proofsV2.Proofs)
|
|
|
|
}
|
|
|
|
// Assemble the requests for the different protocols
|
|
|
|
requestsV1 := []ChtReq{{
|
2018-08-28 07:08:16 +00:00
|
|
|
ChtNum: frequency / config.ChtSize,
|
|
|
|
BlockNum: frequency - 1,
|
2018-02-11 12:57:46 +00:00
|
|
|
}}
|
|
|
|
requestsV2 := []HelperTrieReq{{
|
|
|
|
Type: htCanonical,
|
2018-08-28 07:08:16 +00:00
|
|
|
TrieIdx: frequency/config.PairChtSize - 1,
|
2018-02-11 12:57:46 +00:00
|
|
|
Key: key,
|
|
|
|
AuxReq: auxHeader,
|
|
|
|
}}
|
|
|
|
// Send the proof request and verify the response
|
|
|
|
switch protocol {
|
|
|
|
case 1:
|
2018-08-28 07:08:16 +00:00
|
|
|
cost := server.tPeer.GetRequestCost(GetHeaderProofsMsg, len(requestsV1))
|
|
|
|
sendRequest(server.tPeer.app, GetHeaderProofsMsg, 42, cost, requestsV1)
|
|
|
|
if err := expectResponse(server.tPeer.app, HeaderProofsMsg, 42, testBufLimit, proofsV1); err != nil {
|
2018-02-11 12:57:46 +00:00
|
|
|
t.Errorf("proofs mismatch: %v", err)
|
2017-10-24 13:19:09 +00:00
|
|
|
}
|
2018-02-11 12:57:46 +00:00
|
|
|
case 2:
|
2018-08-28 07:08:16 +00:00
|
|
|
cost := server.tPeer.GetRequestCost(GetHelperTrieProofsMsg, len(requestsV2))
|
|
|
|
sendRequest(server.tPeer.app, GetHelperTrieProofsMsg, 42, cost, requestsV2)
|
|
|
|
if err := expectResponse(server.tPeer.app, HelperTrieProofsMsg, 42, testBufLimit, proofsV2); err != nil {
|
2018-02-11 12:57:46 +00:00
|
|
|
t.Errorf("proofs mismatch: %v", err)
|
2017-10-24 13:19:09 +00:00
|
|
|
}
|
2018-02-11 12:57:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests that bloombits proofs can be correctly retrieved.
|
|
|
|
func TestGetBloombitsProofs(t *testing.T) {
|
2018-08-28 07:08:16 +00:00
|
|
|
config := light.TestServerIndexerConfig
|
|
|
|
|
|
|
|
waitIndexers := func(cIndexer, bIndexer, btIndexer *core.ChainIndexer) {
|
|
|
|
for {
|
|
|
|
cs, _, _ := cIndexer.Sections()
|
|
|
|
bs, _, _ := bIndexer.Sections()
|
|
|
|
bts, _, _ := btIndexer.Sections()
|
|
|
|
if cs >= 8 && bs >= 8 && bts >= 1 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
server, tearDown := newServerEnv(t, int(config.BloomTrieSize+config.BloomTrieConfirms), 2, waitIndexers)
|
|
|
|
defer tearDown()
|
|
|
|
bc := server.pm.blockchain.(*core.BlockChain)
|
2018-02-11 12:57:46 +00:00
|
|
|
|
|
|
|
// Request and verify each bit of the bloom bits proofs
|
|
|
|
for bit := 0; bit < 2048; bit++ {
|
2018-08-28 07:08:16 +00:00
|
|
|
// Assemble the request and proofs for the bloombits
|
2018-02-11 12:57:46 +00:00
|
|
|
key := make([]byte, 10)
|
|
|
|
|
|
|
|
binary.BigEndian.PutUint16(key[:2], uint16(bit))
|
2018-08-28 07:08:16 +00:00
|
|
|
// Only the first bloom section has data.
|
|
|
|
binary.BigEndian.PutUint64(key[2:], 0)
|
2018-02-11 12:57:46 +00:00
|
|
|
|
|
|
|
requests := []HelperTrieReq{{
|
|
|
|
Type: htBloomBits,
|
|
|
|
TrieIdx: 0,
|
|
|
|
Key: key,
|
|
|
|
}}
|
|
|
|
var proofs HelperTrieResps
|
|
|
|
|
2018-08-28 07:08:16 +00:00
|
|
|
root := light.GetBloomTrieRoot(server.db, 0, bc.GetHeaderByNumber(config.BloomTrieSize-1).Hash())
|
|
|
|
trie, _ := trie.New(root, trie.NewDatabase(ethdb.NewTable(server.db, light.BloomTrieTablePrefix)))
|
2018-02-11 12:57:46 +00:00
|
|
|
trie.Prove(key, 0, &proofs.Proofs)
|
|
|
|
|
|
|
|
// Send the proof request and verify the response
|
2018-08-28 07:08:16 +00:00
|
|
|
cost := server.tPeer.GetRequestCost(GetHelperTrieProofsMsg, len(requests))
|
|
|
|
sendRequest(server.tPeer.app, GetHelperTrieProofsMsg, 42, cost, requests)
|
|
|
|
if err := expectResponse(server.tPeer.app, HelperTrieProofsMsg, 42, testBufLimit, proofs); err != nil {
|
2018-02-11 12:57:46 +00:00
|
|
|
t.Errorf("bit %d: proofs mismatch: %v", bit, err)
|
2017-10-24 13:19:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTransactionStatusLes2(t *testing.T) {
|
2018-05-09 12:24:25 +00:00
|
|
|
db := ethdb.NewMemDatabase()
|
2019-01-24 11:18:26 +00:00
|
|
|
pm := newTestProtocolManagerMust(t, false, 0, nil, nil, nil, db, nil)
|
2017-10-24 13:19:09 +00:00
|
|
|
chain := pm.blockchain.(*core.BlockChain)
|
2017-11-21 14:13:57 +00:00
|
|
|
config := core.DefaultTxPoolConfig
|
|
|
|
config.Journal = ""
|
|
|
|
txpool := core.NewTxPool(config, params.TestChainConfig, chain)
|
2017-10-24 13:19:09 +00:00
|
|
|
pm.txpool = txpool
|
|
|
|
peer, _ := newTestPeer(t, "peer", 2, pm, true)
|
|
|
|
defer peer.close()
|
|
|
|
|
|
|
|
var reqID uint64
|
|
|
|
|
2017-10-25 09:18:44 +00:00
|
|
|
test := func(tx *types.Transaction, send bool, expStatus txStatus) {
|
2017-10-24 13:19:09 +00:00
|
|
|
reqID++
|
|
|
|
if send {
|
|
|
|
cost := peer.GetRequestCost(SendTxV2Msg, 1)
|
|
|
|
sendRequest(peer.app, SendTxV2Msg, reqID, cost, types.Transactions{tx})
|
|
|
|
} else {
|
|
|
|
cost := peer.GetRequestCost(GetTxStatusMsg, 1)
|
|
|
|
sendRequest(peer.app, GetTxStatusMsg, reqID, cost, []common.Hash{tx.Hash()})
|
|
|
|
}
|
2017-10-25 09:18:44 +00:00
|
|
|
if err := expectResponse(peer.app, TxStatusMsg, reqID, testBufLimit, []txStatus{expStatus}); err != nil {
|
2017-10-24 13:19:09 +00:00
|
|
|
t.Errorf("transaction status mismatch")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
signer := types.HomesteadSigner{}
|
|
|
|
|
|
|
|
// test error status by sending an underpriced transaction
|
2017-11-13 11:47:27 +00:00
|
|
|
tx0, _ := types.SignTx(types.NewTransaction(0, acc1Addr, big.NewInt(10000), params.TxGas, nil, nil), signer, testBankKey)
|
2018-01-26 17:30:45 +00:00
|
|
|
test(tx0, true, txStatus{Status: core.TxStatusUnknown, Error: core.ErrUnderpriced.Error()})
|
2017-10-24 13:19:09 +00:00
|
|
|
|
2017-11-13 11:47:27 +00:00
|
|
|
tx1, _ := types.SignTx(types.NewTransaction(0, acc1Addr, big.NewInt(10000), params.TxGas, big.NewInt(100000000000), nil), signer, testBankKey)
|
2017-10-25 09:18:44 +00:00
|
|
|
test(tx1, false, txStatus{Status: core.TxStatusUnknown}) // query before sending, should be unknown
|
|
|
|
test(tx1, true, txStatus{Status: core.TxStatusPending}) // send valid processable tx, should return pending
|
|
|
|
test(tx1, true, txStatus{Status: core.TxStatusPending}) // adding it again should not return an error
|
2017-10-24 13:19:09 +00:00
|
|
|
|
2017-11-13 11:47:27 +00:00
|
|
|
tx2, _ := types.SignTx(types.NewTransaction(1, acc1Addr, big.NewInt(10000), params.TxGas, big.NewInt(100000000000), nil), signer, testBankKey)
|
|
|
|
tx3, _ := types.SignTx(types.NewTransaction(2, acc1Addr, big.NewInt(10000), params.TxGas, big.NewInt(100000000000), nil), signer, testBankKey)
|
2017-10-24 13:19:09 +00:00
|
|
|
// send transactions in the wrong order, tx3 should be queued
|
2017-10-25 09:18:44 +00:00
|
|
|
test(tx3, true, txStatus{Status: core.TxStatusQueued})
|
|
|
|
test(tx2, true, txStatus{Status: core.TxStatusPending})
|
2017-10-24 13:19:09 +00:00
|
|
|
// query again, now tx3 should be pending too
|
2017-10-25 09:18:44 +00:00
|
|
|
test(tx3, false, txStatus{Status: core.TxStatusPending})
|
2017-10-24 13:19:09 +00:00
|
|
|
|
|
|
|
// generate and add a block with tx1 and tx2 included
|
2017-12-22 12:37:50 +00:00
|
|
|
gchain, _ := core.GenerateChain(params.TestChainConfig, chain.GetBlockByNumber(0), ethash.NewFaker(), db, 1, func(i int, block *core.BlockGen) {
|
2017-10-24 13:19:09 +00:00
|
|
|
block.AddTx(tx1)
|
|
|
|
block.AddTx(tx2)
|
|
|
|
})
|
|
|
|
if _, err := chain.InsertChain(gchain); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2017-10-25 09:18:44 +00:00
|
|
|
// wait until TxPool processes the inserted block
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
if pending, _ := txpool.Stats(); pending == 1 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
}
|
|
|
|
if pending, _ := txpool.Stats(); pending != 1 {
|
|
|
|
t.Fatalf("pending count mismatch: have %d, want 1", pending)
|
|
|
|
}
|
2017-10-24 13:19:09 +00:00
|
|
|
|
|
|
|
// check if their status is included now
|
2018-05-07 11:35:06 +00:00
|
|
|
block1hash := rawdb.ReadCanonicalHash(db, 1)
|
|
|
|
test(tx1, false, txStatus{Status: core.TxStatusIncluded, Lookup: &rawdb.TxLookupEntry{BlockHash: block1hash, BlockIndex: 1, Index: 0}})
|
|
|
|
test(tx2, false, txStatus{Status: core.TxStatusIncluded, Lookup: &rawdb.TxLookupEntry{BlockHash: block1hash, BlockIndex: 1, Index: 1}})
|
2017-10-24 13:19:09 +00:00
|
|
|
|
|
|
|
// create a reorg that rolls them back
|
2017-12-22 12:37:50 +00:00
|
|
|
gchain, _ = core.GenerateChain(params.TestChainConfig, chain.GetBlockByNumber(0), ethash.NewFaker(), db, 2, func(i int, block *core.BlockGen) {})
|
2017-10-24 13:19:09 +00:00
|
|
|
if _, err := chain.InsertChain(gchain); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
// wait until TxPool processes the reorg
|
2017-10-25 09:18:44 +00:00
|
|
|
for i := 0; i < 10; i++ {
|
2017-10-24 13:19:09 +00:00
|
|
|
if pending, _ := txpool.Stats(); pending == 3 {
|
|
|
|
break
|
|
|
|
}
|
2017-10-25 09:18:44 +00:00
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
}
|
|
|
|
if pending, _ := txpool.Stats(); pending != 3 {
|
|
|
|
t.Fatalf("pending count mismatch: have %d, want 3", pending)
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
2017-10-24 13:19:09 +00:00
|
|
|
// check if their status is pending again
|
2017-10-25 09:18:44 +00:00
|
|
|
test(tx1, false, txStatus{Status: core.TxStatusPending})
|
|
|
|
test(tx2, false, txStatus{Status: core.TxStatusPending})
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|