91 lines
3.0 KiB
Go
91 lines
3.0 KiB
Go
// Copyright 2020 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/>.
|
|
|
|
package eth
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/core/forkid"
|
|
"github.com/ethereum/go-ethereum/p2p"
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
|
)
|
|
|
|
// Tests that handshake failures are detected and reported correctly.
|
|
func TestHandshake66(t *testing.T) { testHandshake(t, ETH66) }
|
|
|
|
func testHandshake(t *testing.T, protocol uint) {
|
|
t.Parallel()
|
|
|
|
// Create a test backend only to have some valid genesis chain
|
|
backend := newTestBackend(3)
|
|
defer backend.close()
|
|
|
|
var (
|
|
genesis = backend.chain.Genesis()
|
|
head = backend.chain.CurrentBlock()
|
|
td = backend.chain.GetTd(head.Hash(), head.NumberU64())
|
|
forkID = forkid.NewID(backend.chain.Config(), backend.chain.Genesis().Hash(), backend.chain.CurrentHeader().Number.Uint64())
|
|
)
|
|
tests := []struct {
|
|
code uint64
|
|
data interface{}
|
|
want error
|
|
}{
|
|
{
|
|
code: TransactionsMsg, data: []interface{}{},
|
|
want: errNoStatusMsg,
|
|
},
|
|
{
|
|
code: StatusMsg, data: StatusPacket{10, 1, td, head.Hash(), genesis.Hash(), forkID},
|
|
want: errProtocolVersionMismatch,
|
|
},
|
|
{
|
|
code: StatusMsg, data: StatusPacket{uint32(protocol), 999, td, head.Hash(), genesis.Hash(), forkID},
|
|
want: errNetworkIDMismatch,
|
|
},
|
|
{
|
|
code: StatusMsg, data: StatusPacket{uint32(protocol), 1, td, head.Hash(), common.Hash{3}, forkID},
|
|
want: errGenesisMismatch,
|
|
},
|
|
{
|
|
code: StatusMsg, data: StatusPacket{uint32(protocol), 1, td, head.Hash(), genesis.Hash(), forkid.ID{Hash: [4]byte{0x00, 0x01, 0x02, 0x03}}},
|
|
want: errForkIDRejected,
|
|
},
|
|
}
|
|
for i, test := range tests {
|
|
// Create the two peers to shake with each other
|
|
app, net := p2p.MsgPipe()
|
|
defer app.Close()
|
|
defer net.Close()
|
|
|
|
peer := NewPeer(protocol, p2p.NewPeer(enode.ID{}, "peer", nil), net, nil)
|
|
defer peer.Close()
|
|
|
|
// Send the junk test with one peer, check the handshake failure
|
|
go p2p.Send(app, test.code, test.data)
|
|
|
|
err := peer.Handshake(1, td, head.Hash(), genesis.Hash(), forkID, forkid.NewFilter(backend.chain))
|
|
if err == nil {
|
|
t.Errorf("test %d: protocol returned nil error, want %q", i, test.want)
|
|
} else if !errors.Is(err, test.want) {
|
|
t.Errorf("test %d: wrong error: got %q, want %q", i, err, test.want)
|
|
}
|
|
}
|
|
}
|