2018-10-12 09:47:24 +00:00
|
|
|
// Copyright 2018 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 enode
|
|
|
|
|
|
|
|
import (
|
2023-02-16 19:36:58 +00:00
|
|
|
"crypto/rand"
|
2019-06-07 13:31:00 +00:00
|
|
|
"net"
|
2018-10-12 09:47:24 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p/enr"
|
2019-06-07 13:31:00 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2018-10-12 09:47:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func newLocalNodeForTesting() (*LocalNode, *DB) {
|
|
|
|
db, _ := OpenDB("")
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
return NewLocalNode(db, key), db
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLocalNode(t *testing.T) {
|
|
|
|
ln, db := newLocalNodeForTesting()
|
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
if ln.Node().ID() != ln.ID() {
|
|
|
|
t.Fatal("inconsistent ID")
|
|
|
|
}
|
|
|
|
|
|
|
|
ln.Set(enr.WithEntry("x", uint(3)))
|
|
|
|
var x uint
|
|
|
|
if err := ln.Node().Load(enr.WithEntry("x", &x)); err != nil {
|
|
|
|
t.Fatal("can't load entry 'x':", err)
|
|
|
|
} else if x != 3 {
|
|
|
|
t.Fatal("wrong value for entry 'x':", x)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-07 10:36:48 +00:00
|
|
|
// This test checks that the sequence number is persisted between restarts.
|
2018-10-12 09:47:24 +00:00
|
|
|
func TestLocalNodeSeqPersist(t *testing.T) {
|
2021-09-07 10:36:48 +00:00
|
|
|
timestamp := nowMilliseconds()
|
|
|
|
|
2018-10-12 09:47:24 +00:00
|
|
|
ln, db := newLocalNodeForTesting()
|
|
|
|
defer db.Close()
|
|
|
|
|
2021-09-07 10:36:48 +00:00
|
|
|
initialSeq := ln.Node().Seq()
|
|
|
|
if initialSeq < timestamp {
|
|
|
|
t.Fatalf("wrong initial seq %d, want at least %d", initialSeq, timestamp)
|
2018-10-12 09:47:24 +00:00
|
|
|
}
|
2021-09-07 10:36:48 +00:00
|
|
|
|
2018-10-12 09:47:24 +00:00
|
|
|
ln.Set(enr.WithEntry("x", uint(1)))
|
2021-09-07 10:36:48 +00:00
|
|
|
if s := ln.Node().Seq(); s != initialSeq+1 {
|
|
|
|
t.Fatalf("wrong seq %d after set, want %d", s, initialSeq+1)
|
2018-10-12 09:47:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new instance, it should reload the sequence number.
|
|
|
|
// The number increases just after that because a new record is
|
|
|
|
// created without the "x" entry.
|
|
|
|
ln2 := NewLocalNode(db, ln.key)
|
2021-09-07 10:36:48 +00:00
|
|
|
if s := ln2.Node().Seq(); s != initialSeq+2 {
|
|
|
|
t.Fatalf("wrong seq %d on new instance, want %d", s, initialSeq+2)
|
2018-10-12 09:47:24 +00:00
|
|
|
}
|
|
|
|
|
2021-09-07 10:36:48 +00:00
|
|
|
finalSeq := ln2.Node().Seq()
|
|
|
|
|
2018-10-12 09:47:24 +00:00
|
|
|
// Create a new instance with a different node key on the same database.
|
|
|
|
// This should reset the sequence number.
|
|
|
|
key, _ := crypto.GenerateKey()
|
|
|
|
ln3 := NewLocalNode(db, key)
|
2021-09-07 10:36:48 +00:00
|
|
|
if s := ln3.Node().Seq(); s < finalSeq {
|
|
|
|
t.Fatalf("wrong seq %d on instance with changed key, want >= %d", s, finalSeq)
|
2018-10-12 09:47:24 +00:00
|
|
|
}
|
|
|
|
}
|
2019-06-07 13:31:00 +00:00
|
|
|
|
|
|
|
// This test checks behavior of the endpoint predictor.
|
|
|
|
func TestLocalNodeEndpoint(t *testing.T) {
|
|
|
|
var (
|
|
|
|
fallback = &net.UDPAddr{IP: net.IP{127, 0, 0, 1}, Port: 80}
|
|
|
|
predicted = &net.UDPAddr{IP: net.IP{127, 0, 1, 2}, Port: 81}
|
|
|
|
staticIP = net.IP{127, 0, 1, 2}
|
|
|
|
)
|
|
|
|
ln, db := newLocalNodeForTesting()
|
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
// Nothing is set initially.
|
|
|
|
assert.Equal(t, net.IP(nil), ln.Node().IP())
|
|
|
|
assert.Equal(t, 0, ln.Node().UDP())
|
2021-09-07 10:36:48 +00:00
|
|
|
initialSeq := ln.Node().Seq()
|
2019-06-07 13:31:00 +00:00
|
|
|
|
|
|
|
// Set up fallback address.
|
|
|
|
ln.SetFallbackIP(fallback.IP)
|
|
|
|
ln.SetFallbackUDP(fallback.Port)
|
|
|
|
assert.Equal(t, fallback.IP, ln.Node().IP())
|
|
|
|
assert.Equal(t, fallback.Port, ln.Node().UDP())
|
2021-09-07 10:36:48 +00:00
|
|
|
assert.Equal(t, initialSeq+1, ln.Node().Seq())
|
2019-06-07 13:31:00 +00:00
|
|
|
|
|
|
|
// Add endpoint statements from random hosts.
|
|
|
|
for i := 0; i < iptrackMinStatements; i++ {
|
|
|
|
assert.Equal(t, fallback.IP, ln.Node().IP())
|
|
|
|
assert.Equal(t, fallback.Port, ln.Node().UDP())
|
2021-09-07 10:36:48 +00:00
|
|
|
assert.Equal(t, initialSeq+1, ln.Node().Seq())
|
2019-06-07 13:31:00 +00:00
|
|
|
|
|
|
|
from := &net.UDPAddr{IP: make(net.IP, 4), Port: 90}
|
|
|
|
rand.Read(from.IP)
|
|
|
|
ln.UDPEndpointStatement(from, predicted)
|
|
|
|
}
|
|
|
|
assert.Equal(t, predicted.IP, ln.Node().IP())
|
|
|
|
assert.Equal(t, predicted.Port, ln.Node().UDP())
|
2021-09-07 10:36:48 +00:00
|
|
|
assert.Equal(t, initialSeq+2, ln.Node().Seq())
|
2019-06-07 13:31:00 +00:00
|
|
|
|
|
|
|
// Static IP overrides prediction.
|
|
|
|
ln.SetStaticIP(staticIP)
|
|
|
|
assert.Equal(t, staticIP, ln.Node().IP())
|
|
|
|
assert.Equal(t, fallback.Port, ln.Node().UDP())
|
2021-09-07 10:36:48 +00:00
|
|
|
assert.Equal(t, initialSeq+3, ln.Node().Seq())
|
2019-06-07 13:31:00 +00:00
|
|
|
}
|