kubo/core/commands/dht_test.go
Dimitris Apostolou 0c2f9d5950
Fix typos (#8548)
2021-11-17 21:16:06 +01:00

35 lines
578 B
Go

package commands
import (
"testing"
"github.com/ipfs/go-namesys"
ipns "github.com/ipfs/go-ipns"
"github.com/libp2p/go-libp2p-core/test"
)
func TestKeyTranslation(t *testing.T) {
pid := test.RandPeerIDFatal(t)
pkname := namesys.PkKeyForID(pid)
ipnsname := ipns.RecordKey(pid)
pkk, err := escapeDhtKey("/pk/" + pid.Pretty())
if err != nil {
t.Fatal(err)
}
ipnsk, err := escapeDhtKey("/ipns/" + pid.Pretty())
if err != nil {
t.Fatal(err)
}
if pkk != pkname {
t.Fatal("keys didn't match!")
}
if ipnsk != ipnsname {
t.Fatal("keys didn't match!")
}
}