365410d10b
Change-Id: Ibb9999545691d150f36e20ce70ac00a3802ad7b2
569 lines
14 KiB
Go
569 lines
14 KiB
Go
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package metabase_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"storj.io/common/storj"
|
|
"storj.io/common/testcontext"
|
|
"storj.io/common/testrand"
|
|
"storj.io/storj/satellite/metainfo/metabase"
|
|
)
|
|
|
|
func TestCommitObjectWithSegments(t *testing.T) {
|
|
All(t, func(ctx *testcontext.Context, t *testing.T, db *metabase.DB) {
|
|
obj := randObjectStream()
|
|
|
|
for _, test := range invalidObjectStreams(obj) {
|
|
test := test
|
|
t.Run(test.Name, func(t *testing.T) {
|
|
defer DeleteAll{}.Check(ctx, t, db)
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: test.ObjectStream,
|
|
},
|
|
ErrClass: test.ErrClass,
|
|
ErrText: test.ErrText,
|
|
}.Check(ctx, t, db)
|
|
Verify{}.Check(ctx, t, db)
|
|
})
|
|
}
|
|
|
|
t.Run("invalid order", func(t *testing.T) {
|
|
defer DeleteAll{}.Check(ctx, t, db)
|
|
|
|
pos00 := metabase.SegmentPosition{Part: 0, Index: 0}
|
|
pos01 := metabase.SegmentPosition{Part: 0, Index: 1}
|
|
pos10 := metabase.SegmentPosition{Part: 1, Index: 0}
|
|
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: obj,
|
|
Segments: []metabase.SegmentPosition{
|
|
pos01,
|
|
pos00,
|
|
},
|
|
},
|
|
ErrClass: &metabase.Error,
|
|
ErrText: "segments not in ascending order, got {0 1} before {0 0}",
|
|
}.Check(ctx, t, db)
|
|
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: obj,
|
|
Segments: []metabase.SegmentPosition{
|
|
pos10,
|
|
pos00,
|
|
},
|
|
},
|
|
ErrClass: &metabase.Error,
|
|
ErrText: "segments not in ascending order, got {1 0} before {0 0}",
|
|
}.Check(ctx, t, db)
|
|
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: obj,
|
|
Segments: []metabase.SegmentPosition{
|
|
pos00,
|
|
pos00,
|
|
},
|
|
},
|
|
ErrClass: &metabase.Error,
|
|
ErrText: "segments not in ascending order, got {0 0} before {0 0}",
|
|
}.Check(ctx, t, db)
|
|
|
|
Verify{}.Check(ctx, t, db)
|
|
})
|
|
|
|
t.Run("version without pending", func(t *testing.T) {
|
|
defer DeleteAll{}.Check(ctx, t, db)
|
|
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: metabase.ObjectStream{
|
|
ProjectID: obj.ProjectID,
|
|
BucketName: obj.BucketName,
|
|
ObjectKey: obj.ObjectKey,
|
|
Version: 5,
|
|
StreamID: obj.StreamID,
|
|
},
|
|
},
|
|
ErrClass: &storj.ErrObjectNotFound,
|
|
ErrText: "metabase: object with specified version and pending status is missing", // TODO: this error message could be better
|
|
}.Check(ctx, t, db)
|
|
Verify{}.Check(ctx, t, db)
|
|
})
|
|
|
|
t.Run("version", func(t *testing.T) {
|
|
defer DeleteAll{}.Check(ctx, t, db)
|
|
|
|
BeginObjectExactVersion{
|
|
Opts: metabase.BeginObjectExactVersion{
|
|
ObjectStream: metabase.ObjectStream{
|
|
ProjectID: obj.ProjectID,
|
|
BucketName: obj.BucketName,
|
|
ObjectKey: obj.ObjectKey,
|
|
Version: 5,
|
|
StreamID: obj.StreamID,
|
|
},
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
Version: 5,
|
|
}.Check(ctx, t, db)
|
|
now := time.Now()
|
|
|
|
encryptedMetadata := testrand.Bytes(1024)
|
|
encryptedMetadataNonce := testrand.Nonce()
|
|
encryptedMetadataKey := testrand.Bytes(265)
|
|
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: metabase.ObjectStream{
|
|
ProjectID: obj.ProjectID,
|
|
BucketName: obj.BucketName,
|
|
ObjectKey: obj.ObjectKey,
|
|
Version: 5,
|
|
StreamID: obj.StreamID,
|
|
},
|
|
EncryptedMetadataNonce: encryptedMetadataNonce[:],
|
|
EncryptedMetadata: encryptedMetadata,
|
|
EncryptedMetadataEncryptedKey: encryptedMetadataKey,
|
|
},
|
|
}.Check(ctx, t, db)
|
|
|
|
// disallow for double commit
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: metabase.ObjectStream{
|
|
ProjectID: obj.ProjectID,
|
|
BucketName: obj.BucketName,
|
|
ObjectKey: obj.ObjectKey,
|
|
Version: 5,
|
|
StreamID: obj.StreamID,
|
|
},
|
|
},
|
|
ErrClass: &storj.ErrObjectNotFound,
|
|
ErrText: "metabase: object with specified version and pending status is missing", // TODO: this error message could be better
|
|
}.Check(ctx, t, db)
|
|
|
|
Verify{
|
|
Objects: []metabase.RawObject{
|
|
{
|
|
ObjectStream: metabase.ObjectStream{
|
|
ProjectID: obj.ProjectID,
|
|
BucketName: obj.BucketName,
|
|
ObjectKey: obj.ObjectKey,
|
|
Version: 5,
|
|
StreamID: obj.StreamID,
|
|
},
|
|
CreatedAt: now,
|
|
Status: metabase.Committed,
|
|
|
|
EncryptedMetadataNonce: encryptedMetadataNonce[:],
|
|
EncryptedMetadata: encryptedMetadata,
|
|
EncryptedMetadataEncryptedKey: encryptedMetadataKey,
|
|
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
},
|
|
}.Check(ctx, t, db)
|
|
})
|
|
|
|
t.Run("segments missing in database", func(t *testing.T) {
|
|
defer DeleteAll{}.Check(ctx, t, db)
|
|
|
|
BeginObjectExactVersion{
|
|
Opts: metabase.BeginObjectExactVersion{
|
|
ObjectStream: obj,
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
Version: 1,
|
|
}.Check(ctx, t, db)
|
|
now := time.Now()
|
|
|
|
pos00 := metabase.SegmentPosition{Part: 0, Index: 0}
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: obj,
|
|
Segments: []metabase.SegmentPosition{
|
|
pos00,
|
|
},
|
|
},
|
|
ErrClass: &metabase.Error,
|
|
ErrText: "segments and database does not match: {0 0}: segment not committed",
|
|
}.Check(ctx, t, db)
|
|
|
|
Verify{
|
|
Objects: []metabase.RawObject{
|
|
{
|
|
ObjectStream: obj,
|
|
CreatedAt: now,
|
|
Status: metabase.Pending,
|
|
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
},
|
|
}.Check(ctx, t, db)
|
|
})
|
|
|
|
t.Run("delete segments that are not in proofs", func(t *testing.T) {
|
|
defer DeleteAll{}.Check(ctx, t, db)
|
|
|
|
BeginObjectExactVersion{
|
|
Opts: metabase.BeginObjectExactVersion{
|
|
ObjectStream: obj,
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
Version: 1,
|
|
}.Check(ctx, t, db)
|
|
now := time.Now()
|
|
|
|
pos00 := metabase.SegmentPosition{Part: 0, Index: 0}
|
|
rootPieceID00 := testrand.PieceID()
|
|
pieces00 := metabase.Pieces{{Number: 0, StorageNode: testrand.NodeID()}}
|
|
encryptedKey00 := testrand.Bytes(32)
|
|
encryptedKeyNonce00 := testrand.Bytes(32)
|
|
|
|
pos01 := metabase.SegmentPosition{Part: 0, Index: 1}
|
|
rootPieceID01 := testrand.PieceID()
|
|
pieces01 := metabase.Pieces{{Number: 0, StorageNode: testrand.NodeID()}}
|
|
encryptedKey01 := testrand.Bytes(32)
|
|
encryptedKeyNonce01 := testrand.Bytes(32)
|
|
|
|
CommitSegment{
|
|
Opts: metabase.CommitSegment{
|
|
ObjectStream: obj,
|
|
|
|
Position: pos00,
|
|
RootPieceID: rootPieceID00,
|
|
Pieces: pieces00,
|
|
|
|
EncryptedKey: encryptedKey00,
|
|
EncryptedKeyNonce: encryptedKeyNonce00,
|
|
|
|
EncryptedSize: 1024,
|
|
PlainSize: 512,
|
|
PlainOffset: 0,
|
|
Redundancy: defaultTestRedundancy,
|
|
},
|
|
}.Check(ctx, t, db)
|
|
|
|
CommitSegment{
|
|
Opts: metabase.CommitSegment{
|
|
ObjectStream: obj,
|
|
|
|
Position: pos01,
|
|
RootPieceID: rootPieceID01,
|
|
Pieces: pieces01,
|
|
|
|
EncryptedKey: encryptedKey01,
|
|
EncryptedKeyNonce: encryptedKeyNonce01,
|
|
|
|
EncryptedSize: 1024,
|
|
PlainSize: 512,
|
|
PlainOffset: 0,
|
|
Redundancy: defaultTestRedundancy,
|
|
},
|
|
}.Check(ctx, t, db)
|
|
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: obj,
|
|
Segments: []metabase.SegmentPosition{
|
|
pos01,
|
|
},
|
|
},
|
|
Deleted: []metabase.DeletedSegmentInfo{
|
|
{RootPieceID: rootPieceID00, Pieces: pieces00},
|
|
},
|
|
}.Check(ctx, t, db)
|
|
|
|
Verify{
|
|
Objects: []metabase.RawObject{
|
|
{
|
|
ObjectStream: obj,
|
|
CreatedAt: now,
|
|
Status: metabase.Committed,
|
|
SegmentCount: 1,
|
|
|
|
TotalPlainSize: 512,
|
|
TotalEncryptedSize: 1024,
|
|
FixedSegmentSize: 1024,
|
|
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
},
|
|
Segments: []metabase.RawSegment{
|
|
{
|
|
StreamID: obj.StreamID,
|
|
Position: pos01,
|
|
|
|
RootPieceID: rootPieceID01,
|
|
EncryptedKey: encryptedKey01,
|
|
EncryptedKeyNonce: encryptedKeyNonce01,
|
|
|
|
EncryptedSize: 1024,
|
|
PlainOffset: 0,
|
|
PlainSize: 512,
|
|
|
|
Redundancy: defaultTestRedundancy,
|
|
|
|
Pieces: pieces01,
|
|
},
|
|
},
|
|
}.Check(ctx, t, db)
|
|
})
|
|
|
|
t.Run("delete inline segments that are not in proofs", func(t *testing.T) {
|
|
defer DeleteAll{}.Check(ctx, t, db)
|
|
|
|
BeginObjectExactVersion{
|
|
Opts: metabase.BeginObjectExactVersion{
|
|
ObjectStream: obj,
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
Version: 1,
|
|
}.Check(ctx, t, db)
|
|
now := time.Now()
|
|
|
|
pos00 := metabase.SegmentPosition{Part: 0, Index: 0}
|
|
data00 := testrand.Bytes(32)
|
|
encryptedKey00 := testrand.Bytes(32)
|
|
encryptedKeyNonce00 := testrand.Bytes(32)
|
|
|
|
pos01 := metabase.SegmentPosition{Part: 0, Index: 1}
|
|
data01 := testrand.Bytes(1024)
|
|
encryptedKey01 := testrand.Bytes(32)
|
|
encryptedKeyNonce01 := testrand.Bytes(32)
|
|
|
|
CommitInlineSegment{
|
|
Opts: metabase.CommitInlineSegment{
|
|
ObjectStream: obj,
|
|
Position: pos00,
|
|
|
|
EncryptedKey: encryptedKey00,
|
|
EncryptedKeyNonce: encryptedKeyNonce00,
|
|
|
|
PlainSize: 512,
|
|
PlainOffset: 0,
|
|
|
|
InlineData: data00,
|
|
},
|
|
}.Check(ctx, t, db)
|
|
|
|
CommitInlineSegment{
|
|
Opts: metabase.CommitInlineSegment{
|
|
ObjectStream: obj,
|
|
Position: pos01,
|
|
|
|
EncryptedKey: encryptedKey01,
|
|
EncryptedKeyNonce: encryptedKeyNonce01,
|
|
|
|
PlainSize: 512,
|
|
PlainOffset: 0,
|
|
|
|
InlineData: data01,
|
|
},
|
|
}.Check(ctx, t, db)
|
|
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: obj,
|
|
Segments: []metabase.SegmentPosition{
|
|
pos01,
|
|
},
|
|
},
|
|
Deleted: nil,
|
|
}.Check(ctx, t, db)
|
|
|
|
Verify{
|
|
Objects: []metabase.RawObject{
|
|
{
|
|
ObjectStream: obj,
|
|
CreatedAt: now,
|
|
Status: metabase.Committed,
|
|
SegmentCount: 1,
|
|
|
|
TotalPlainSize: 512,
|
|
TotalEncryptedSize: 1024,
|
|
FixedSegmentSize: 1024,
|
|
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
},
|
|
Segments: []metabase.RawSegment{
|
|
{
|
|
StreamID: obj.StreamID,
|
|
Position: pos01,
|
|
|
|
EncryptedKey: encryptedKey01,
|
|
EncryptedKeyNonce: encryptedKeyNonce01,
|
|
|
|
EncryptedSize: 1024,
|
|
PlainOffset: 0,
|
|
PlainSize: 512,
|
|
|
|
InlineData: data01,
|
|
},
|
|
},
|
|
}.Check(ctx, t, db)
|
|
})
|
|
|
|
t.Run("updated plain offset", func(t *testing.T) {
|
|
defer DeleteAll{}.Check(ctx, t, db)
|
|
|
|
BeginObjectExactVersion{
|
|
Opts: metabase.BeginObjectExactVersion{
|
|
ObjectStream: obj,
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
Version: 1,
|
|
}.Check(ctx, t, db)
|
|
now := time.Now()
|
|
|
|
pos00 := metabase.SegmentPosition{Part: 0, Index: 0}
|
|
rootPieceID00 := testrand.PieceID()
|
|
pieces00 := metabase.Pieces{{Number: 0, StorageNode: testrand.NodeID()}}
|
|
encryptedKey00 := testrand.Bytes(32)
|
|
encryptedKeyNonce00 := testrand.Bytes(32)
|
|
|
|
pos01 := metabase.SegmentPosition{Part: 0, Index: 1}
|
|
rootPieceID01 := testrand.PieceID()
|
|
pieces01 := metabase.Pieces{{Number: 0, StorageNode: testrand.NodeID()}}
|
|
encryptedKey01 := testrand.Bytes(32)
|
|
encryptedKeyNonce01 := testrand.Bytes(32)
|
|
|
|
CommitSegment{
|
|
Opts: metabase.CommitSegment{
|
|
ObjectStream: obj,
|
|
|
|
Position: pos00,
|
|
RootPieceID: rootPieceID00,
|
|
Pieces: pieces00,
|
|
|
|
EncryptedKey: encryptedKey00,
|
|
EncryptedKeyNonce: encryptedKeyNonce00,
|
|
|
|
EncryptedSize: 1024,
|
|
PlainSize: 512,
|
|
PlainOffset: 0,
|
|
Redundancy: defaultTestRedundancy,
|
|
},
|
|
}.Check(ctx, t, db)
|
|
|
|
CommitSegment{
|
|
Opts: metabase.CommitSegment{
|
|
ObjectStream: obj,
|
|
|
|
Position: pos01,
|
|
RootPieceID: rootPieceID01,
|
|
Pieces: pieces01,
|
|
|
|
EncryptedKey: encryptedKey01,
|
|
EncryptedKeyNonce: encryptedKeyNonce01,
|
|
|
|
EncryptedSize: 1024,
|
|
PlainSize: 512,
|
|
PlainOffset: 0,
|
|
Redundancy: defaultTestRedundancy,
|
|
},
|
|
}.Check(ctx, t, db)
|
|
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: obj,
|
|
Segments: []metabase.SegmentPosition{
|
|
pos00,
|
|
pos01,
|
|
},
|
|
},
|
|
}.Check(ctx, t, db)
|
|
|
|
Verify{
|
|
Objects: []metabase.RawObject{
|
|
{
|
|
ObjectStream: obj,
|
|
CreatedAt: now,
|
|
Status: metabase.Committed,
|
|
SegmentCount: 2,
|
|
|
|
TotalPlainSize: 1024,
|
|
TotalEncryptedSize: 2048,
|
|
FixedSegmentSize: 1024,
|
|
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
},
|
|
Segments: []metabase.RawSegment{
|
|
{
|
|
StreamID: obj.StreamID,
|
|
Position: pos00,
|
|
|
|
RootPieceID: rootPieceID00,
|
|
EncryptedKey: encryptedKey00,
|
|
EncryptedKeyNonce: encryptedKeyNonce00,
|
|
|
|
EncryptedSize: 1024,
|
|
PlainOffset: 0,
|
|
PlainSize: 512,
|
|
|
|
Redundancy: defaultTestRedundancy,
|
|
|
|
Pieces: pieces00,
|
|
},
|
|
{
|
|
StreamID: obj.StreamID,
|
|
Position: pos01,
|
|
|
|
RootPieceID: rootPieceID01,
|
|
EncryptedKey: encryptedKey01,
|
|
EncryptedKeyNonce: encryptedKeyNonce01,
|
|
|
|
EncryptedSize: 1024,
|
|
PlainOffset: 512,
|
|
PlainSize: 512,
|
|
|
|
Redundancy: defaultTestRedundancy,
|
|
|
|
Pieces: pieces01,
|
|
},
|
|
},
|
|
}.Check(ctx, t, db)
|
|
})
|
|
|
|
t.Run("no segments", func(t *testing.T) {
|
|
defer DeleteAll{}.Check(ctx, t, db)
|
|
|
|
BeginObjectExactVersion{
|
|
Opts: metabase.BeginObjectExactVersion{
|
|
ObjectStream: obj,
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
Version: 1,
|
|
}.Check(ctx, t, db)
|
|
now := time.Now()
|
|
|
|
CommitObjectWithSegments{
|
|
Opts: metabase.CommitObjectWithSegments{
|
|
ObjectStream: obj,
|
|
},
|
|
}.Check(ctx, t, db)
|
|
|
|
Verify{
|
|
Objects: []metabase.RawObject{
|
|
{
|
|
ObjectStream: obj,
|
|
CreatedAt: now,
|
|
Status: metabase.Committed,
|
|
|
|
Encryption: defaultTestEncryption,
|
|
},
|
|
},
|
|
}.Check(ctx, t, db)
|
|
})
|
|
})
|
|
}
|