Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8bdb5d9

Browse files
committedDec 1, 2023
fix tests
1 parent 04ab0d9 commit 8bdb5d9

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed
 

‎itests/dummydeal_podsi_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ func makeDataSegmentPiece(t *testing.T, dataSegmentFile string, subPieces []stri
103103

104104
readers = append(readers, arg)
105105
cp := new(commp.Calc)
106-
io.Copy(cp, arg)
106+
_, _ = io.Copy(cp, arg)
107107
rawCommP, size, err := cp.Digest()
108108
require.NoError(t, err)
109109

110-
arg.Seek(0, io.SeekStart)
110+
_, _ = arg.Seek(0, io.SeekStart)
111111
c, _ := commcid.DataCommitmentV1ToCID(rawCommP)
112112
subdeal := abi.PieceInfo{
113113
Size: abi.PaddedPieceSize(size),
@@ -198,7 +198,7 @@ func writeFiles(ctx context.Context, noWrap bool, bs *blockstore.ReadWrite, path
198198
if err != nil {
199199
return err
200200
}
201-
bs.Put(ctx, blk)
201+
_ = bs.Put(ctx, blk)
202202
return nil
203203
}, nil
204204
}

‎piecedirectory/piecedirectory.go

+5
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,11 @@ func parsePieceWithDataSegmentIndex(pieceCid cid.Cid, unpaddedSize int64, r type
433433
}
434434

435435
log.Debugw("podsi: parsed data segment index", "segments", len(indexData.Entries), "reads", readsCnt, "time", time.Since(start).String())
436+
437+
if len(indexData.Entries) == 0 {
438+
return nil, fmt.Errorf("no data segments found")
439+
}
440+
436441
start = time.Now()
437442

438443
if len(indexData.Entries) < concurrency {

0 commit comments

Comments
 (0)
Please sign in to comment.