2018-08-01 21:25:06 +01:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package segments
|
2018-08-07 16:52:11 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/golang/protobuf/ptypes"
|
|
|
|
|
|
|
|
"github.com/golang/mock/gomock"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"storj.io/storj/pkg/eestream"
|
|
|
|
mock_eestream "storj.io/storj/pkg/eestream/mocks"
|
|
|
|
mock_overlay "storj.io/storj/pkg/overlay/mocks"
|
|
|
|
"storj.io/storj/pkg/paths"
|
2018-08-22 16:07:00 +01:00
|
|
|
pdb "storj.io/storj/pkg/pointerdb/pdbclient"
|
|
|
|
mock_pointerdb "storj.io/storj/pkg/pointerdb/pdbclient/mocks"
|
2018-08-07 16:52:11 +01:00
|
|
|
mock_ecclient "storj.io/storj/pkg/storage/ec/mocks"
|
|
|
|
opb "storj.io/storj/protos/overlay"
|
|
|
|
ppb "storj.io/storj/protos/pointerdb"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
ctx = context.Background()
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestNewSegmentStore(t *testing.T) {
|
|
|
|
ctrl := gomock.NewController(t)
|
|
|
|
defer ctrl.Finish()
|
|
|
|
|
|
|
|
mockOC := mock_overlay.NewMockClient(ctrl)
|
|
|
|
mockEC := mock_ecclient.NewMockClient(ctrl)
|
|
|
|
mockPDB := mock_pointerdb.NewMockClient(ctrl)
|
|
|
|
rs := eestream.RedundancyStrategy{
|
|
|
|
ErasureScheme: mock_eestream.NewMockErasureScheme(ctrl),
|
|
|
|
}
|
|
|
|
|
|
|
|
ss := NewSegmentStore(mockOC, mockEC, mockPDB, rs, 10)
|
|
|
|
assert.NotNil(t, ss)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSegmentStoreMeta(t *testing.T) {
|
|
|
|
ctrl := gomock.NewController(t)
|
|
|
|
defer ctrl.Finish()
|
|
|
|
|
|
|
|
mockOC := mock_overlay.NewMockClient(ctrl)
|
|
|
|
mockEC := mock_ecclient.NewMockClient(ctrl)
|
|
|
|
mockPDB := mock_pointerdb.NewMockClient(ctrl)
|
|
|
|
rs := eestream.RedundancyStrategy{
|
|
|
|
ErasureScheme: mock_eestream.NewMockErasureScheme(ctrl),
|
|
|
|
}
|
|
|
|
|
|
|
|
ss := segmentStore{mockOC, mockEC, mockPDB, rs, 10}
|
|
|
|
assert.NotNil(t, ss)
|
|
|
|
|
|
|
|
var mExp time.Time
|
|
|
|
pExp, err := ptypes.TimestampProto(mExp)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
for _, tt := range []struct {
|
|
|
|
pathInput string
|
|
|
|
returnPointer *ppb.Pointer
|
|
|
|
returnMeta Meta
|
|
|
|
}{
|
2018-08-16 15:32:28 +01:00
|
|
|
{"path/1/2/3", &ppb.Pointer{CreationDate: pExp, ExpirationDate: pExp}, Meta{Modified: mExp, Expiration: mExp}},
|
2018-08-07 16:52:11 +01:00
|
|
|
} {
|
|
|
|
p := paths.New(tt.pathInput)
|
|
|
|
|
|
|
|
calls := []*gomock.Call{
|
|
|
|
mockPDB.EXPECT().Get(
|
|
|
|
gomock.Any(), gomock.Any(),
|
|
|
|
).Return(tt.returnPointer, nil),
|
|
|
|
}
|
|
|
|
gomock.InOrder(calls...)
|
|
|
|
|
|
|
|
m, err := ss.Meta(ctx, p)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, m, tt.returnMeta)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSegmentStorePutRemote(t *testing.T) {
|
|
|
|
ctrl := gomock.NewController(t)
|
|
|
|
defer ctrl.Finish()
|
|
|
|
|
|
|
|
for _, tt := range []struct {
|
|
|
|
name string
|
|
|
|
pathInput string
|
|
|
|
mdInput []byte
|
|
|
|
thresholdSize int
|
|
|
|
expiration time.Time
|
|
|
|
readerContent string
|
|
|
|
}{
|
|
|
|
{"test remote put", "path/1", []byte("abcdefghijklmnopqrstuvwxyz"), 2, time.Unix(0, 0).UTC(), "readerreaderreader"},
|
|
|
|
} {
|
|
|
|
mockOC := mock_overlay.NewMockClient(ctrl)
|
|
|
|
mockEC := mock_ecclient.NewMockClient(ctrl)
|
|
|
|
mockPDB := mock_pointerdb.NewMockClient(ctrl)
|
|
|
|
mockES := mock_eestream.NewMockErasureScheme(ctrl)
|
|
|
|
rs := eestream.RedundancyStrategy{
|
|
|
|
ErasureScheme: mockES,
|
|
|
|
}
|
|
|
|
|
|
|
|
ss := segmentStore{mockOC, mockEC, mockPDB, rs, tt.thresholdSize}
|
|
|
|
assert.NotNil(t, ss)
|
|
|
|
|
|
|
|
p := paths.New(tt.pathInput)
|
|
|
|
r := strings.NewReader(tt.readerContent)
|
|
|
|
|
|
|
|
calls := []*gomock.Call{
|
|
|
|
mockES.EXPECT().TotalCount().Return(1),
|
|
|
|
mockOC.EXPECT().Choose(
|
|
|
|
gomock.Any(), gomock.Any(), gomock.Any(),
|
|
|
|
).Return([]*opb.Node{
|
2018-08-27 18:28:16 +01:00
|
|
|
{Id: "im-a-node"},
|
2018-08-07 16:52:11 +01:00
|
|
|
}, nil),
|
|
|
|
mockEC.EXPECT().Put(
|
|
|
|
gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(),
|
|
|
|
),
|
|
|
|
mockES.EXPECT().RequiredCount().Return(1),
|
|
|
|
mockES.EXPECT().TotalCount().Return(1),
|
2018-08-14 16:15:22 +01:00
|
|
|
mockES.EXPECT().EncodedBlockSize().Return(1),
|
2018-08-07 16:52:11 +01:00
|
|
|
mockPDB.EXPECT().Put(
|
|
|
|
gomock.Any(), gomock.Any(), gomock.Any(),
|
|
|
|
).Return(nil),
|
|
|
|
mockPDB.EXPECT().Get(
|
|
|
|
gomock.Any(), gomock.Any(),
|
|
|
|
),
|
|
|
|
}
|
|
|
|
gomock.InOrder(calls...)
|
|
|
|
|
|
|
|
_, err := ss.Put(ctx, p, r, tt.mdInput, tt.expiration)
|
|
|
|
assert.NoError(t, err, tt.name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSegmentStorePutInline(t *testing.T) {
|
|
|
|
ctrl := gomock.NewController(t)
|
|
|
|
defer ctrl.Finish()
|
|
|
|
|
|
|
|
for _, tt := range []struct {
|
|
|
|
name string
|
|
|
|
pathInput string
|
|
|
|
mdInput []byte
|
|
|
|
thresholdSize int
|
|
|
|
expiration time.Time
|
|
|
|
readerContent string
|
|
|
|
}{
|
|
|
|
{"test inline put", "path/1", []byte("111"), 1000, time.Unix(0, 0).UTC(), "readerreaderreader"},
|
|
|
|
} {
|
|
|
|
mockOC := mock_overlay.NewMockClient(ctrl)
|
|
|
|
mockEC := mock_ecclient.NewMockClient(ctrl)
|
|
|
|
mockPDB := mock_pointerdb.NewMockClient(ctrl)
|
|
|
|
mockES := mock_eestream.NewMockErasureScheme(ctrl)
|
|
|
|
rs := eestream.RedundancyStrategy{
|
|
|
|
ErasureScheme: mockES,
|
|
|
|
}
|
|
|
|
|
|
|
|
ss := segmentStore{mockOC, mockEC, mockPDB, rs, tt.thresholdSize}
|
|
|
|
assert.NotNil(t, ss)
|
|
|
|
|
|
|
|
p := paths.New(tt.pathInput)
|
|
|
|
r := strings.NewReader(tt.readerContent)
|
|
|
|
|
|
|
|
calls := []*gomock.Call{
|
|
|
|
mockPDB.EXPECT().Put(
|
|
|
|
gomock.Any(), gomock.Any(), gomock.Any(),
|
|
|
|
).Return(nil),
|
|
|
|
mockPDB.EXPECT().Get(
|
|
|
|
gomock.Any(), gomock.Any(),
|
|
|
|
),
|
|
|
|
}
|
|
|
|
gomock.InOrder(calls...)
|
|
|
|
|
|
|
|
_, err := ss.Put(ctx, p, r, tt.mdInput, tt.expiration)
|
|
|
|
assert.NoError(t, err, tt.name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSegmentStoreGetInline(t *testing.T) {
|
|
|
|
ctrl := gomock.NewController(t)
|
|
|
|
defer ctrl.Finish()
|
|
|
|
|
2018-08-27 18:28:16 +01:00
|
|
|
ti := time.Unix(0, 0).UTC()
|
2018-08-07 16:52:11 +01:00
|
|
|
someTime, err := ptypes.TimestampProto(ti)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
for _, tt := range []struct {
|
|
|
|
pathInput string
|
|
|
|
thresholdSize int
|
|
|
|
pointerType ppb.Pointer_DataType
|
|
|
|
inlineContent []byte
|
|
|
|
size int64
|
|
|
|
metadata []byte
|
|
|
|
}{
|
|
|
|
{"path/1/2/3", 10, ppb.Pointer_INLINE, []byte("000"), int64(3), []byte("metadata")},
|
|
|
|
} {
|
|
|
|
mockOC := mock_overlay.NewMockClient(ctrl)
|
|
|
|
mockEC := mock_ecclient.NewMockClient(ctrl)
|
|
|
|
mockPDB := mock_pointerdb.NewMockClient(ctrl)
|
|
|
|
mockES := mock_eestream.NewMockErasureScheme(ctrl)
|
|
|
|
rs := eestream.RedundancyStrategy{
|
|
|
|
ErasureScheme: mockES,
|
|
|
|
}
|
|
|
|
|
|
|
|
ss := segmentStore{mockOC, mockEC, mockPDB, rs, tt.thresholdSize}
|
|
|
|
assert.NotNil(t, ss)
|
|
|
|
|
|
|
|
p := paths.New(tt.pathInput)
|
|
|
|
|
|
|
|
calls := []*gomock.Call{
|
|
|
|
mockPDB.EXPECT().Get(
|
|
|
|
gomock.Any(), gomock.Any(),
|
|
|
|
).Return(&ppb.Pointer{
|
|
|
|
Type: tt.pointerType,
|
|
|
|
InlineSegment: tt.inlineContent,
|
|
|
|
CreationDate: someTime,
|
|
|
|
ExpirationDate: someTime,
|
|
|
|
Size: tt.size,
|
|
|
|
Metadata: tt.metadata,
|
|
|
|
}, nil),
|
|
|
|
}
|
|
|
|
gomock.InOrder(calls...)
|
|
|
|
|
|
|
|
_, _, err := ss.Get(ctx, p)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSegmentStoreGetRemote(t *testing.T) {
|
|
|
|
ctrl := gomock.NewController(t)
|
|
|
|
defer ctrl.Finish()
|
|
|
|
|
2018-08-27 18:28:16 +01:00
|
|
|
ti := time.Unix(0, 0).UTC()
|
2018-08-07 16:52:11 +01:00
|
|
|
someTime, err := ptypes.TimestampProto(ti)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
for _, tt := range []struct {
|
|
|
|
pathInput string
|
|
|
|
thresholdSize int
|
|
|
|
pointerType ppb.Pointer_DataType
|
|
|
|
size int64
|
|
|
|
metadata []byte
|
|
|
|
}{
|
|
|
|
{"path/1/2/3", 10, ppb.Pointer_REMOTE, int64(3), []byte("metadata")},
|
|
|
|
} {
|
|
|
|
mockOC := mock_overlay.NewMockClient(ctrl)
|
|
|
|
mockEC := mock_ecclient.NewMockClient(ctrl)
|
|
|
|
mockPDB := mock_pointerdb.NewMockClient(ctrl)
|
|
|
|
mockES := mock_eestream.NewMockErasureScheme(ctrl)
|
|
|
|
rs := eestream.RedundancyStrategy{
|
|
|
|
ErasureScheme: mockES,
|
|
|
|
}
|
|
|
|
|
|
|
|
ss := segmentStore{mockOC, mockEC, mockPDB, rs, tt.thresholdSize}
|
|
|
|
assert.NotNil(t, ss)
|
|
|
|
|
|
|
|
p := paths.New(tt.pathInput)
|
|
|
|
|
|
|
|
calls := []*gomock.Call{
|
|
|
|
mockPDB.EXPECT().Get(
|
|
|
|
gomock.Any(), gomock.Any(),
|
|
|
|
).Return(&ppb.Pointer{
|
|
|
|
Type: tt.pointerType,
|
|
|
|
Remote: &ppb.RemoteSegment{
|
|
|
|
Redundancy: &ppb.RedundancyScheme{
|
|
|
|
Type: ppb.RedundancyScheme_RS,
|
|
|
|
MinReq: 1,
|
|
|
|
Total: 2,
|
|
|
|
RepairThreshold: 1,
|
|
|
|
SuccessThreshold: 2,
|
|
|
|
},
|
|
|
|
PieceId: "here's my piece id",
|
|
|
|
RemotePieces: []*ppb.RemotePiece{},
|
|
|
|
},
|
|
|
|
CreationDate: someTime,
|
|
|
|
ExpirationDate: someTime,
|
|
|
|
Size: tt.size,
|
|
|
|
Metadata: tt.metadata,
|
|
|
|
}, nil),
|
2018-09-11 05:52:14 +01:00
|
|
|
mockOC.EXPECT().BulkLookup(gomock.Any(), gomock.Any()),
|
2018-08-07 16:52:11 +01:00
|
|
|
mockEC.EXPECT().Get(
|
|
|
|
gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(),
|
|
|
|
),
|
|
|
|
}
|
|
|
|
gomock.InOrder(calls...)
|
|
|
|
|
|
|
|
_, _, err := ss.Get(ctx, p)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSegmentStoreDeleteInline(t *testing.T) {
|
|
|
|
ctrl := gomock.NewController(t)
|
|
|
|
defer ctrl.Finish()
|
|
|
|
|
2018-08-27 18:28:16 +01:00
|
|
|
ti := time.Unix(0, 0).UTC()
|
2018-08-07 16:52:11 +01:00
|
|
|
someTime, err := ptypes.TimestampProto(ti)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
for _, tt := range []struct {
|
|
|
|
pathInput string
|
|
|
|
thresholdSize int
|
|
|
|
pointerType ppb.Pointer_DataType
|
|
|
|
inlineContent []byte
|
|
|
|
size int64
|
|
|
|
metadata []byte
|
|
|
|
}{
|
|
|
|
{"path/1/2/3", 10, ppb.Pointer_INLINE, []byte("000"), int64(3), []byte("metadata")},
|
|
|
|
} {
|
|
|
|
mockOC := mock_overlay.NewMockClient(ctrl)
|
|
|
|
mockEC := mock_ecclient.NewMockClient(ctrl)
|
|
|
|
mockPDB := mock_pointerdb.NewMockClient(ctrl)
|
|
|
|
mockES := mock_eestream.NewMockErasureScheme(ctrl)
|
|
|
|
rs := eestream.RedundancyStrategy{
|
|
|
|
ErasureScheme: mockES,
|
|
|
|
}
|
|
|
|
|
|
|
|
ss := segmentStore{mockOC, mockEC, mockPDB, rs, tt.thresholdSize}
|
|
|
|
assert.NotNil(t, ss)
|
|
|
|
|
|
|
|
p := paths.New(tt.pathInput)
|
|
|
|
|
|
|
|
calls := []*gomock.Call{
|
|
|
|
mockPDB.EXPECT().Get(
|
|
|
|
gomock.Any(), gomock.Any(),
|
|
|
|
).Return(&ppb.Pointer{
|
|
|
|
Type: tt.pointerType,
|
|
|
|
InlineSegment: tt.inlineContent,
|
|
|
|
CreationDate: someTime,
|
|
|
|
ExpirationDate: someTime,
|
|
|
|
Size: tt.size,
|
|
|
|
Metadata: tt.metadata,
|
|
|
|
}, nil),
|
|
|
|
mockPDB.EXPECT().Delete(
|
|
|
|
gomock.Any(), gomock.Any(),
|
|
|
|
),
|
|
|
|
}
|
|
|
|
gomock.InOrder(calls...)
|
|
|
|
|
|
|
|
err := ss.Delete(ctx, p)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSegmentStoreDeleteRemote(t *testing.T) {
|
|
|
|
ctrl := gomock.NewController(t)
|
|
|
|
defer ctrl.Finish()
|
|
|
|
|
2018-08-27 18:28:16 +01:00
|
|
|
ti := time.Unix(0, 0).UTC()
|
2018-08-07 16:52:11 +01:00
|
|
|
someTime, err := ptypes.TimestampProto(ti)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
for _, tt := range []struct {
|
|
|
|
pathInput string
|
|
|
|
thresholdSize int
|
|
|
|
pointerType ppb.Pointer_DataType
|
|
|
|
size int64
|
|
|
|
metadata []byte
|
|
|
|
}{
|
|
|
|
{"path/1/2/3", 10, ppb.Pointer_REMOTE, int64(3), []byte("metadata")},
|
|
|
|
} {
|
|
|
|
mockOC := mock_overlay.NewMockClient(ctrl)
|
|
|
|
mockEC := mock_ecclient.NewMockClient(ctrl)
|
|
|
|
mockPDB := mock_pointerdb.NewMockClient(ctrl)
|
|
|
|
mockES := mock_eestream.NewMockErasureScheme(ctrl)
|
|
|
|
rs := eestream.RedundancyStrategy{
|
|
|
|
ErasureScheme: mockES,
|
|
|
|
}
|
|
|
|
|
|
|
|
ss := segmentStore{mockOC, mockEC, mockPDB, rs, tt.thresholdSize}
|
|
|
|
assert.NotNil(t, ss)
|
|
|
|
|
|
|
|
p := paths.New(tt.pathInput)
|
|
|
|
|
|
|
|
calls := []*gomock.Call{
|
|
|
|
mockPDB.EXPECT().Get(
|
|
|
|
gomock.Any(), gomock.Any(),
|
|
|
|
).Return(&ppb.Pointer{
|
|
|
|
Type: tt.pointerType,
|
|
|
|
Remote: &ppb.RemoteSegment{
|
|
|
|
Redundancy: &ppb.RedundancyScheme{
|
|
|
|
Type: ppb.RedundancyScheme_RS,
|
|
|
|
MinReq: 1,
|
|
|
|
Total: 2,
|
|
|
|
RepairThreshold: 1,
|
|
|
|
SuccessThreshold: 2,
|
|
|
|
},
|
|
|
|
PieceId: "here's my piece id",
|
|
|
|
RemotePieces: []*ppb.RemotePiece{},
|
|
|
|
},
|
|
|
|
CreationDate: someTime,
|
|
|
|
ExpirationDate: someTime,
|
|
|
|
Size: tt.size,
|
|
|
|
Metadata: tt.metadata,
|
|
|
|
}, nil),
|
2018-09-11 05:52:14 +01:00
|
|
|
mockOC.EXPECT().BulkLookup(gomock.Any(), gomock.Any()),
|
2018-08-07 16:52:11 +01:00
|
|
|
mockEC.EXPECT().Delete(
|
|
|
|
gomock.Any(), gomock.Any(), gomock.Any(),
|
|
|
|
),
|
|
|
|
mockPDB.EXPECT().Delete(
|
|
|
|
gomock.Any(), gomock.Any(),
|
|
|
|
),
|
|
|
|
}
|
|
|
|
gomock.InOrder(calls...)
|
|
|
|
|
|
|
|
err := ss.Delete(ctx, p)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSegmentStoreList(t *testing.T) {
|
|
|
|
ctrl := gomock.NewController(t)
|
|
|
|
defer ctrl.Finish()
|
|
|
|
|
|
|
|
for _, tt := range []struct {
|
|
|
|
prefixInput string
|
|
|
|
startAfterInput string
|
|
|
|
thresholdSize int
|
|
|
|
itemPath string
|
|
|
|
inlineContent []byte
|
|
|
|
metadata []byte
|
|
|
|
}{
|
|
|
|
{"bucket1", "s0/path/1", 10, "s0/path/1", []byte("inline"), []byte("metadata")},
|
|
|
|
} {
|
|
|
|
mockOC := mock_overlay.NewMockClient(ctrl)
|
|
|
|
mockEC := mock_ecclient.NewMockClient(ctrl)
|
|
|
|
mockPDB := mock_pointerdb.NewMockClient(ctrl)
|
|
|
|
mockES := mock_eestream.NewMockErasureScheme(ctrl)
|
|
|
|
rs := eestream.RedundancyStrategy{
|
|
|
|
ErasureScheme: mockES,
|
|
|
|
}
|
|
|
|
|
|
|
|
ss := segmentStore{mockOC, mockEC, mockPDB, rs, tt.thresholdSize}
|
|
|
|
assert.NotNil(t, ss)
|
|
|
|
|
|
|
|
prefix := paths.New(tt.prefixInput)
|
|
|
|
startAfter := paths.New(tt.startAfterInput)
|
|
|
|
listedPath := paths.New(tt.itemPath)
|
|
|
|
|
2018-08-27 18:28:16 +01:00
|
|
|
ti := time.Unix(0, 0).UTC()
|
2018-08-07 16:52:11 +01:00
|
|
|
someTime, err := ptypes.TimestampProto(ti)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
calls := []*gomock.Call{
|
|
|
|
mockPDB.EXPECT().List(
|
|
|
|
gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(),
|
|
|
|
gomock.Any(), gomock.Any(), gomock.Any(),
|
|
|
|
).Return([]pdb.ListItem{
|
2018-08-27 18:28:16 +01:00
|
|
|
{
|
2018-08-07 16:52:11 +01:00
|
|
|
Path: listedPath,
|
|
|
|
Pointer: &ppb.Pointer{
|
|
|
|
Type: ppb.Pointer_INLINE,
|
|
|
|
InlineSegment: tt.inlineContent,
|
|
|
|
CreationDate: someTime,
|
|
|
|
ExpirationDate: someTime,
|
|
|
|
Size: int64(4),
|
|
|
|
Metadata: tt.metadata,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, true, nil),
|
|
|
|
}
|
|
|
|
gomock.InOrder(calls...)
|
|
|
|
|
|
|
|
_, _, err = ss.List(ctx, prefix, startAfter, nil, false, 10, uint32(1))
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
}
|