Skip to content

Commit

Permalink
test: check behavior of loading UnixFS sharded directories with missi…
Browse files Browse the repository at this point in the history
…ng shards
  • Loading branch information
aschmahmann committed Sep 27, 2021
1 parent 4969ed2 commit 6bf4429
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions core/coreapi/test/path_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
package test

import (
"context"
"strconv"
"testing"
"time"

files "github.com/ipfs/go-ipfs-files"
"github.com/ipfs/go-merkledag"
uio "github.com/ipfs/go-unixfs/io"
"github.com/ipfs/interface-go-ipfs-core/options"
"github.com/ipfs/interface-go-ipfs-core/path"
"github.com/ipld/go-ipld-prime"
)


func TestPathUnixFSHAMTPartial(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()

// Create a node
apis, err := NodeProvider{}.MakeAPISwarm(ctx, true, 1)
if err != nil {
t.Fatal(err)
}
a := apis[0]

// Setting this after instantiating the swarm so that it's not clobbered by loading the go-ipfs config
prevVal := uio.UseHAMTSharding
uio.UseHAMTSharding = true
defer func() {
uio.UseHAMTSharding = prevVal
}()

// Create and add a sharded directory
dir := make(map[string]files.Node)
// Make sure we have at least two levels of sharding
for i := 0; i < uio.DefaultShardWidth + 1; i++ {
dir[strconv.Itoa(i)] = files.NewBytesFile([]byte(strconv.Itoa(i)))
}

r, err := a.Unixfs().Add(ctx, files.NewMapDirectory(dir), options.Unixfs.Pin(false))
if err != nil {
t.Fatal(err)
}

// Get the root of the directory
nd, err := a.Dag().Get(ctx, r.Cid())
if err != nil {
t.Fatal(err)
}

// Make sure the root is a DagPB node (this API might change in the future to account for ADLs)
_ = nd.(ipld.Node)
pbNode := nd.(*merkledag.ProtoNode)

// Remove one of the sharded directory blocks
if err := a.Block().Rm(ctx, path.IpfsPath(pbNode.Links()[0].Cid)); err != nil {
t.Fatal(err)
}

// Try and resolve each of the entries in the sharded directory which will result in pathing over the missing block
//
// Note: we could just check a particular path here, but it would require either greater use of the HAMT internals
// or some hard coded values in the test both of which would be a pain to follow.
for k := range dir {
// The node will go out to the (non-existent) network looking for the missing block. Make sure we're erroring
// because we exceeded the timeout on our query
timeoutCtx, timeoutCancel := context.WithTimeout(ctx, time.Second * 1)
_, err := a.ResolveNode(timeoutCtx, path.Join(r, k))
if err != nil {
if timeoutCtx.Err() == nil {
t.Fatal(err)
}
}
timeoutCancel()
}
}

0 comments on commit 6bf4429

Please sign in to comment.