mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
145 lines
2.9 KiB
Go
145 lines
2.9 KiB
Go
package coreapi_test
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"math/rand"
|
|
"testing"
|
|
"time"
|
|
|
|
ipath "github.com/ipfs/go-ipfs/path"
|
|
|
|
coreiface "github.com/ipfs/go-ipfs/core/coreapi/interface"
|
|
)
|
|
|
|
var rnd = rand.New(rand.NewSource(0x62796532303137))
|
|
|
|
func addTestObject(ctx context.Context, api coreiface.CoreAPI) (coreiface.Path, error) {
|
|
return api.Unixfs().Add(ctx, &io.LimitedReader{R: rnd, N: 4092})
|
|
}
|
|
|
|
func TestBasicPublishResolve(t *testing.T) {
|
|
ctx := context.Background()
|
|
n, api, err := makeAPIIdent(ctx, true)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
p, err := addTestObject(ctx, api)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
e, err := api.Name().Publish(ctx, p)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
if e.Name() != n.Identity.Pretty() {
|
|
t.Errorf("expected e.Name to equal '%s', got '%s'", n.Identity.Pretty(), e.Name())
|
|
}
|
|
|
|
if e.Value().String() != p.String() {
|
|
t.Errorf("expected paths to match, '%s'!='%s'", e.Value().String(), p.String())
|
|
}
|
|
|
|
resPath, err := api.Name().Resolve(ctx, e.Name())
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
if resPath.String() != p.String() {
|
|
t.Errorf("expected paths to match, '%s'!='%s'", resPath.String(), p.String())
|
|
}
|
|
}
|
|
|
|
func TestBasicPublishResolveKey(t *testing.T) {
|
|
ctx := context.Background()
|
|
_, api, err := makeAPIIdent(ctx, true)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
k, err := api.Key().Generate(ctx, "foo")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
p, err := addTestObject(ctx, api)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
e, err := api.Name().Publish(ctx, p, api.Name().WithKey(k.Name()))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
if ipath.Join([]string{"/ipns", e.Name()}) != k.Path().String() {
|
|
t.Errorf("expected e.Name to equal '%s', got '%s'", e.Name(), k.Path().String())
|
|
}
|
|
|
|
if e.Value().String() != p.String() {
|
|
t.Errorf("expected paths to match, '%s'!='%s'", e.Value().String(), p.String())
|
|
}
|
|
|
|
resPath, err := api.Name().Resolve(ctx, e.Name())
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
if resPath.String() != p.String() {
|
|
t.Errorf("expected paths to match, '%s'!='%s'", resPath.String(), p.String())
|
|
}
|
|
}
|
|
|
|
func TestBasicPublishResolveTimeout(t *testing.T) {
|
|
t.Skip("ValidTime doesn't appear to work at this time resolution")
|
|
|
|
ctx := context.Background()
|
|
n, api, err := makeAPIIdent(ctx, true)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
p, err := addTestObject(ctx, api)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
e, err := api.Name().Publish(ctx, p, api.Name().WithValidTime(time.Millisecond*100))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
return
|
|
}
|
|
|
|
if e.Name() != n.Identity.Pretty() {
|
|
t.Errorf("expected e.Name to equal '%s', got '%s'", n.Identity.Pretty(), e.Name())
|
|
}
|
|
|
|
if e.Value().String() != p.String() {
|
|
t.Errorf("expected paths to match, '%s'!='%s'", e.Value().String(), p.String())
|
|
}
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
_, err = api.Name().Resolve(ctx, e.Name())
|
|
if err == nil {
|
|
t.Fatal("Expected an error")
|
|
return
|
|
}
|
|
}
|
|
|
|
//TODO: When swarm api is created, add multinode tests
|