mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
35 lines
650 B
Go
35 lines
650 B
Go
package commands
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ipfs/go-ipfs/namesys"
|
|
|
|
ipns "gx/ipfs/QmUwMnKKjH3JwGKNVZ3TcP37W93xzqNA4ECFFiMo6sXkkc/go-ipns"
|
|
tu "gx/ipfs/QmWapVoHjtKhn4MhvKNoPTkJKADFGACfXPFnt7combwp5W/go-testutil"
|
|
)
|
|
|
|
func TestKeyTranslation(t *testing.T) {
|
|
pid := tu.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 didnt match!")
|
|
}
|
|
|
|
if ipnsk != ipnsname {
|
|
t.Fatal("keys didnt match!")
|
|
}
|
|
}
|