mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 10:57:42 +08:00
52 lines
995 B
Go
52 lines
995 B
Go
package ping
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
|
|
peer "github.com/ipfs/go-ipfs/p2p/peer"
|
|
netutil "github.com/ipfs/go-ipfs/p2p/test/util"
|
|
)
|
|
|
|
func TestPing(t *testing.T) {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
h1 := netutil.GenHostSwarm(t, ctx)
|
|
h2 := netutil.GenHostSwarm(t, ctx)
|
|
|
|
err := h1.Connect(ctx, peer.PeerInfo{
|
|
ID: h2.ID(),
|
|
Addrs: h2.Addrs(),
|
|
})
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
ps1 := NewPingService(h1)
|
|
ps2 := NewPingService(h2)
|
|
|
|
testPing(t, ps1, h2.ID())
|
|
testPing(t, ps2, h1.ID())
|
|
}
|
|
|
|
func testPing(t *testing.T, ps *PingService, p peer.ID) {
|
|
pctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
ts, err := ps.Ping(pctx, p)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
for i := 0; i < 5; i++ {
|
|
select {
|
|
case took := <-ts:
|
|
t.Log("ping took: ", took)
|
|
case <-time.After(time.Second * 4):
|
|
t.Fatal("failed to receive ping")
|
|
}
|
|
}
|
|
|
|
}
|