aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/discover/table_test.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-10-23 05:46:01 +0800
committerFelix Lange <fjl@twurst.com>2015-12-18 06:38:54 +0800
commitd1f507b7f16e359dc2773195edb72a22357e5424 (patch)
treed210d2b7161d3f3d68eb2063aaab1decf07cb079 /p2p/discover/table_test.go
parent82a024d42520969272a11c7566c950e405e7ab48 (diff)
downloadgo-tangerine-d1f507b7f16e359dc2773195edb72a22357e5424.tar
go-tangerine-d1f507b7f16e359dc2773195edb72a22357e5424.tar.gz
go-tangerine-d1f507b7f16e359dc2773195edb72a22357e5424.tar.bz2
go-tangerine-d1f507b7f16e359dc2773195edb72a22357e5424.tar.lz
go-tangerine-d1f507b7f16e359dc2773195edb72a22357e5424.tar.xz
go-tangerine-d1f507b7f16e359dc2773195edb72a22357e5424.tar.zst
go-tangerine-d1f507b7f16e359dc2773195edb72a22357e5424.zip
p2p/discover: support incomplete node URLs, add Resolve
Diffstat (limited to 'p2p/discover/table_test.go')
-rw-r--r--p2p/discover/table_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/p2p/discover/table_test.go b/p2p/discover/table_test.go
index 13effaed6..30a418f44 100644
--- a/p2p/discover/table_test.go
+++ b/p2p/discover/table_test.go
@@ -36,7 +36,7 @@ func TestTable_pingReplace(t *testing.T) {
transport := newPingRecorder()
tab, _ := newTable(transport, NodeID{}, &net.UDPAddr{}, "")
defer tab.Close()
- pingSender := newNode(MustHexID("a502af0f59b2aab7746995408c79e9ca312d2793cc997e44fc55eda62f0150bbb8c59a6f9269ba3a081518b62699ee807c7c19c20125ddfccca872608af9e370"), net.IP{}, 99, 99)
+ pingSender := NewNode(MustHexID("a502af0f59b2aab7746995408c79e9ca312d2793cc997e44fc55eda62f0150bbb8c59a6f9269ba3a081518b62699ee807c7c19c20125ddfccca872608af9e370"), net.IP{}, 99, 99)
// fill up the sender's bucket.
last := fillBucket(tab, 253)
@@ -287,7 +287,7 @@ func TestTable_Lookup(t *testing.T) {
t.Fatalf("lookup on empty table returned %d results: %#v", len(results), results)
}
// seed table with initial node (otherwise lookup will terminate immediately)
- seed := newNode(lookupTestnet.dists[256][0], net.IP{}, 256, 0)
+ seed := NewNode(lookupTestnet.dists[256][0], net.IP{}, 256, 0)
tab.stuff([]*Node{seed})
results := tab.Lookup(lookupTestnet.target)
@@ -517,7 +517,7 @@ func (tn *preminedTestnet) findnode(toid NodeID, toaddr *net.UDPAddr, target Nod
next := uint16(toaddr.Port) - 1
var result []*Node
for i, id := range tn.dists[toaddr.Port] {
- result = append(result, newNode(id, net.ParseIP("127.0.0.1"), next, uint16(i)))
+ result = append(result, NewNode(id, net.ParseIP("127.0.0.1"), next, uint16(i)))
}
return result, nil
}