Skip to content

Commit

Permalink
fix: retrieval not found error
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkmc committed Sep 9, 2021
1 parent 2051d8b commit 9ffba94
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
8 changes: 8 additions & 0 deletions piecestore/impl/piecestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ import (
"github.com/ipfs/go-datastore"
"github.com/ipfs/go-datastore/namespace"
logging "github.com/ipfs/go-log/v2"
"golang.org/x/xerrors"

versioning "github.com/filecoin-project/go-ds-versioning/pkg"
versioned "github.com/filecoin-project/go-ds-versioning/pkg/statestore"

"github.com/filecoin-project/go-fil-markets/piecestore"
"github.com/filecoin-project/go-fil-markets/piecestore/migrations"
"github.com/filecoin-project/go-fil-markets/retrievalmarket"
"github.com/filecoin-project/go-fil-markets/shared"
)

Expand Down Expand Up @@ -144,6 +146,9 @@ func (ps *pieceStore) ListCidInfoKeys() ([]cid.Cid, error) {
func (ps *pieceStore) GetPieceInfo(pieceCID cid.Cid) (piecestore.PieceInfo, error) {
var out piecestore.PieceInfo
if err := ps.pieces.Get(pieceCID).Get(&out); err != nil {
if xerrors.Is(err, datastore.ErrNotFound) {
return piecestore.PieceInfo{}, xerrors.Errorf("piece with CID %s: %w", retrievalmarket.ErrNotFound)
}
return piecestore.PieceInfo{}, err
}
return out, nil
Expand All @@ -153,6 +158,9 @@ func (ps *pieceStore) GetPieceInfo(pieceCID cid.Cid) (piecestore.PieceInfo, erro
func (ps *pieceStore) GetCIDInfo(payloadCID cid.Cid) (piecestore.CIDInfo, error) {
var out piecestore.CIDInfo
if err := ps.cidInfos.Get(payloadCID).Get(&out); err != nil {
if xerrors.Is(err, datastore.ErrNotFound) {
return piecestore.CIDInfo{}, xerrors.Errorf("payload CID %s: %w", retrievalmarket.ErrNotFound)
}
return piecestore.CIDInfo{}, err
}
return out, nil
Expand Down
15 changes: 14 additions & 1 deletion piecestore/impl/piecestore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,22 @@ import (
"github.com/ipfs/go-datastore/namespace"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/xerrors"

"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/go-statestore"

"github.com/filecoin-project/go-fil-markets/piecestore"
piecestoreimpl "github.com/filecoin-project/go-fil-markets/piecestore/impl"
"github.com/filecoin-project/go-fil-markets/piecestore/migrations"
"github.com/filecoin-project/go-fil-markets/retrievalmarket"
"github.com/filecoin-project/go-fil-markets/shared_testutil"
)

func TestStorePieceInfo(t *testing.T) {
ctx := context.Background()
pieceCid := shared_testutil.GenerateCids(1)[0]
pieceCid2 := shared_testutil.GenerateCids(1)[0]
initializePieceStore := func(t *testing.T, ctx context.Context) piecestore.PieceStore {
ps, err := piecestoreimpl.NewPieceStore(datastore.NewMapDatastore())
require.NoError(t, err)
Expand Down Expand Up @@ -51,6 +54,11 @@ func TestStorePieceInfo(t *testing.T) {
assert.NoError(t, err)
assert.Len(t, pi.Deals, 1)
assert.Equal(t, pi.Deals[0], dealInfo)

// Verify that getting a piece with a non-existent CID returns ErrNotFound
pi, err = ps.GetPieceInfo(pieceCid2)
assert.Error(t, err)
assert.True(t, xerrors.Is(err, retrievalmarket.ErrNotFound))
})

t.Run("adding same deal twice does not dup", func(t *testing.T) {
Expand Down Expand Up @@ -86,7 +94,7 @@ func TestStoreCIDInfo(t *testing.T) {
pieceCids := shared_testutil.GenerateCids(2)
pieceCid1 := pieceCids[0]
pieceCid2 := pieceCids[1]
testCIDs := shared_testutil.GenerateCids(3)
testCIDs := shared_testutil.GenerateCids(4)
blockLocations := make([]piecestore.BlockLocation, 0, 3)
for i := 0; i < 3; i++ {
blockLocations = append(blockLocations, piecestore.BlockLocation{
Expand Down Expand Up @@ -129,6 +137,11 @@ func TestStoreCIDInfo(t *testing.T) {
assert.NoError(t, err)
assert.Len(t, ci.PieceBlockLocations, 1)
assert.Equal(t, ci.PieceBlockLocations[0], piecestore.PieceBlockLocation{BlockLocation: blockLocations[2], PieceCID: pieceCid1})

// Verify that getting CID info with a non-existent CID returns ErrNotFound
ci, err = ps.GetCIDInfo(testCIDs[3])
assert.Error(t, err)
assert.True(t, xerrors.Is(err, retrievalmarket.ErrNotFound))
})

t.Run("overlapping adds", func(t *testing.T) {
Expand Down

0 comments on commit 9ffba94

Please sign in to comment.