mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-09 19:32:24 +08:00
72 lines
3.0 KiB
Go
72 lines
3.0 KiB
Go
package namesys
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
context "gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
|
|
|
|
path "github.com/ipfs/go-ipfs/path"
|
|
)
|
|
|
|
type mockResolver struct {
|
|
entries map[string]string
|
|
}
|
|
|
|
func testResolution(t *testing.T, resolver Resolver, name string, depth int, expected string, expError error) {
|
|
p, err := resolver.ResolveN(context.Background(), name, depth)
|
|
if err != expError {
|
|
t.Fatal(fmt.Errorf(
|
|
"Expected %s with a depth of %d to have a '%s' error, but got '%s'",
|
|
name, depth, expError, err))
|
|
}
|
|
if p.String() != expected {
|
|
t.Fatal(fmt.Errorf(
|
|
"%s with depth %d resolved to %s != %s",
|
|
name, depth, p.String(), expected))
|
|
}
|
|
}
|
|
|
|
func (r *mockResolver) resolveOnce(ctx context.Context, name string) (path.Path, error) {
|
|
return path.ParsePath(r.entries[name])
|
|
}
|
|
|
|
func mockResolverOne() *mockResolver {
|
|
return &mockResolver{
|
|
entries: map[string]string{
|
|
"QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy": "/ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj",
|
|
"QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n": "/ipns/QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy",
|
|
"QmY3hE8xgFCjGcz6PHgnvJz5HZi1BaKRfPkn1ghZUcYMjD": "/ipns/ipfs.io",
|
|
},
|
|
}
|
|
}
|
|
|
|
func mockResolverTwo() *mockResolver {
|
|
return &mockResolver{
|
|
entries: map[string]string{
|
|
"ipfs.io": "/ipns/QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n",
|
|
},
|
|
}
|
|
}
|
|
|
|
func TestNamesysResolution(t *testing.T) {
|
|
r := &mpns{
|
|
resolvers: map[string]resolver{
|
|
"one": mockResolverOne(),
|
|
"two": mockResolverTwo(),
|
|
},
|
|
}
|
|
|
|
testResolution(t, r, "Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj", DefaultDepthLimit, "/ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj", nil)
|
|
testResolution(t, r, "/ipns/QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy", DefaultDepthLimit, "/ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj", nil)
|
|
testResolution(t, r, "/ipns/QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n", DefaultDepthLimit, "/ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj", nil)
|
|
testResolution(t, r, "/ipns/QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n", 1, "/ipns/QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy", ErrResolveRecursion)
|
|
testResolution(t, r, "/ipns/ipfs.io", DefaultDepthLimit, "/ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj", nil)
|
|
testResolution(t, r, "/ipns/ipfs.io", 1, "/ipns/QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n", ErrResolveRecursion)
|
|
testResolution(t, r, "/ipns/ipfs.io", 2, "/ipns/QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy", ErrResolveRecursion)
|
|
testResolution(t, r, "/ipns/QmY3hE8xgFCjGcz6PHgnvJz5HZi1BaKRfPkn1ghZUcYMjD", DefaultDepthLimit, "/ipfs/Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj", nil)
|
|
testResolution(t, r, "/ipns/QmY3hE8xgFCjGcz6PHgnvJz5HZi1BaKRfPkn1ghZUcYMjD", 1, "/ipns/ipfs.io", ErrResolveRecursion)
|
|
testResolution(t, r, "/ipns/QmY3hE8xgFCjGcz6PHgnvJz5HZi1BaKRfPkn1ghZUcYMjD", 2, "/ipns/QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n", ErrResolveRecursion)
|
|
testResolution(t, r, "/ipns/QmY3hE8xgFCjGcz6PHgnvJz5HZi1BaKRfPkn1ghZUcYMjD", 3, "/ipns/QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy", ErrResolveRecursion)
|
|
}
|