2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-09-16 16:06:49 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-03-15 16:27:16 -04:00
|
|
|
"context"
|
2017-08-12 22:25:43 -04:00
|
|
|
"os"
|
2016-09-16 16:06:49 -04:00
|
|
|
"path/filepath"
|
2020-11-05 14:48:55 -05:00
|
|
|
"runtime"
|
2020-03-18 19:19:29 -04:00
|
|
|
"sync"
|
2016-09-16 16:06:49 -04:00
|
|
|
"testing"
|
2017-08-10 17:11:57 -04:00
|
|
|
"time"
|
2021-10-04 13:52:28 -04:00
|
|
|
|
|
|
|
"github.com/minio/minio/internal/config/api"
|
2016-09-16 16:06:49 -04:00
|
|
|
)
|
|
|
|
|
2017-11-30 21:11:42 -05:00
|
|
|
// Tests cleanup multipart uploads for filesystem backend.
|
2017-08-10 17:11:57 -04:00
|
|
|
func TestFSCleanupMultipartUploadsInRoutine(t *testing.T) {
|
2022-05-30 13:58:37 -04:00
|
|
|
t.Skip()
|
2017-08-10 17:11:57 -04:00
|
|
|
// Prepare for tests
|
|
|
|
disk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
|
2017-08-12 22:25:43 -04:00
|
|
|
defer os.RemoveAll(disk)
|
2017-08-10 17:11:57 -04:00
|
|
|
|
|
|
|
obj := initFSObjects(disk, t)
|
2018-02-20 15:21:12 -05:00
|
|
|
fs := obj.(*FSObjects)
|
2017-08-10 17:11:57 -04:00
|
|
|
|
|
|
|
bucketName := "bucket"
|
|
|
|
objectName := "object"
|
|
|
|
|
2020-03-18 19:19:29 -04:00
|
|
|
// Create a context we can cancel.
|
2020-04-09 12:30:02 -04:00
|
|
|
ctx, cancel := context.WithCancel(GlobalContext)
|
2022-07-25 20:51:32 -04:00
|
|
|
obj.MakeBucketWithLocation(ctx, bucketName, MakeBucketOptions{})
|
2020-03-18 19:19:29 -04:00
|
|
|
|
|
|
|
uploadID, err := obj.NewMultipartUpload(ctx, bucketName, objectName, ObjectOptions{})
|
2017-08-10 17:11:57 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Unexpected err: ", err)
|
|
|
|
}
|
|
|
|
|
2021-10-04 13:52:28 -04:00
|
|
|
globalAPIConfig.init(api.Config{
|
|
|
|
ListQuorum: "optimal",
|
|
|
|
StaleUploadsExpiry: time.Millisecond,
|
|
|
|
StaleUploadsCleanupInterval: time.Millisecond,
|
|
|
|
}, obj.SetDriveCounts())
|
|
|
|
|
|
|
|
defer func() {
|
2021-10-08 15:40:34 -04:00
|
|
|
globalAPIConfig.init(api.Config{
|
|
|
|
ListQuorum: "optimal",
|
|
|
|
}, obj.SetDriveCounts())
|
2021-10-04 13:52:28 -04:00
|
|
|
}()
|
|
|
|
|
2020-03-18 19:19:29 -04:00
|
|
|
var cleanupWg sync.WaitGroup
|
|
|
|
cleanupWg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer cleanupWg.Done()
|
2021-10-04 13:52:28 -04:00
|
|
|
fs.cleanupStaleUploads(ctx)
|
2020-03-18 19:19:29 -04:00
|
|
|
}()
|
2017-08-10 17:11:57 -04:00
|
|
|
|
2020-03-18 19:19:29 -04:00
|
|
|
// Wait for 100ms such that - we have given enough time for
|
|
|
|
// cleanup routine to kick in. Flaky on slow systems...
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
cancel()
|
|
|
|
cleanupWg.Wait()
|
2017-08-10 17:11:57 -04:00
|
|
|
|
|
|
|
// Check if upload id was already purged.
|
2020-09-14 18:57:13 -04:00
|
|
|
if err = obj.AbortMultipartUpload(GlobalContext, bucketName, objectName, uploadID, ObjectOptions{}); err != nil {
|
2017-08-10 17:11:57 -04:00
|
|
|
if _, ok := err.(InvalidUploadID); !ok {
|
|
|
|
t.Fatal("Unexpected err: ", err)
|
|
|
|
}
|
2020-03-18 19:19:29 -04:00
|
|
|
} else {
|
|
|
|
t.Error("Item was not cleaned up.")
|
2017-08-10 17:11:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-16 16:06:49 -04:00
|
|
|
// TestNewMultipartUploadFaultyDisk - test NewMultipartUpload with faulty disks
|
|
|
|
func TestNewMultipartUploadFaultyDisk(t *testing.T) {
|
2022-05-30 13:58:37 -04:00
|
|
|
t.Skip()
|
2016-09-16 16:06:49 -04:00
|
|
|
// Prepare for tests
|
2016-12-16 01:25:05 -05:00
|
|
|
disk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
|
2017-08-12 22:25:43 -04:00
|
|
|
defer os.RemoveAll(disk)
|
2016-10-05 15:48:07 -04:00
|
|
|
obj := initFSObjects(disk, t)
|
2016-09-16 16:06:49 -04:00
|
|
|
|
2018-02-20 15:21:12 -05:00
|
|
|
fs := obj.(*FSObjects)
|
2016-09-16 16:06:49 -04:00
|
|
|
bucketName := "bucket"
|
|
|
|
objectName := "object"
|
|
|
|
|
2022-07-25 20:51:32 -04:00
|
|
|
if err := obj.MakeBucketWithLocation(GlobalContext, bucketName, MakeBucketOptions{}); err != nil {
|
2016-09-16 16:06:49 -04:00
|
|
|
t.Fatal("Cannot create bucket, err: ", err)
|
|
|
|
}
|
|
|
|
|
2017-01-16 20:05:00 -05:00
|
|
|
// Test with disk removed.
|
2018-05-23 06:11:29 -04:00
|
|
|
os.RemoveAll(disk)
|
2020-04-09 12:30:02 -04:00
|
|
|
if _, err := fs.NewMultipartUpload(GlobalContext, bucketName, objectName, ObjectOptions{UserDefined: map[string]string{"X-Amz-Meta-xid": "3f"}}); err != nil {
|
2018-04-10 12:36:37 -04:00
|
|
|
if !isSameType(err, BucketNotFound{}) {
|
2017-01-16 20:05:00 -05:00
|
|
|
t.Fatal("Unexpected error ", err)
|
2016-09-16 16:06:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestPutObjectPartFaultyDisk - test PutObjectPart with faulty disks
|
|
|
|
func TestPutObjectPartFaultyDisk(t *testing.T) {
|
|
|
|
// Prepare for tests
|
2016-12-16 01:25:05 -05:00
|
|
|
disk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
|
2017-08-12 22:25:43 -04:00
|
|
|
defer os.RemoveAll(disk)
|
2016-10-05 15:48:07 -04:00
|
|
|
obj := initFSObjects(disk, t)
|
2018-08-15 00:41:47 -04:00
|
|
|
|
2016-09-16 16:06:49 -04:00
|
|
|
bucketName := "bucket"
|
|
|
|
objectName := "object"
|
|
|
|
data := []byte("12345")
|
|
|
|
dataLen := int64(len(data))
|
|
|
|
|
2022-07-25 20:51:32 -04:00
|
|
|
if err := obj.MakeBucketWithLocation(GlobalContext, bucketName, MakeBucketOptions{}); err != nil {
|
2016-09-16 16:06:49 -04:00
|
|
|
t.Fatal("Cannot create bucket, err: ", err)
|
|
|
|
}
|
|
|
|
|
2020-04-09 12:30:02 -04:00
|
|
|
uploadID, err := obj.NewMultipartUpload(GlobalContext, bucketName, objectName, ObjectOptions{UserDefined: map[string]string{"X-Amz-Meta-xid": "3f"}})
|
2016-09-16 16:06:49 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Unexpected error ", err)
|
|
|
|
}
|
|
|
|
|
2016-11-21 16:51:05 -05:00
|
|
|
md5Hex := getMD5Hash(data)
|
2016-10-02 18:51:49 -04:00
|
|
|
sha256sum := ""
|
2016-09-16 16:06:49 -04:00
|
|
|
|
2019-09-22 13:45:33 -04:00
|
|
|
newDisk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
|
|
|
|
defer os.RemoveAll(newDisk)
|
|
|
|
obj = initFSObjects(newDisk, t)
|
2020-04-09 12:30:02 -04:00
|
|
|
if _, err = obj.PutObjectPart(GlobalContext, bucketName, objectName, uploadID, 1, mustGetPutObjReader(t, bytes.NewReader(data), dataLen, md5Hex, sha256sum), ObjectOptions{}); err != nil {
|
2019-09-22 13:45:33 -04:00
|
|
|
if !isSameType(err, BucketNotFound{}) {
|
|
|
|
t.Fatal("Unexpected error ", err)
|
|
|
|
}
|
2016-09-16 16:06:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestCompleteMultipartUploadFaultyDisk - test CompleteMultipartUpload with faulty disks
|
|
|
|
func TestCompleteMultipartUploadFaultyDisk(t *testing.T) {
|
|
|
|
// Prepare for tests
|
2016-12-16 01:25:05 -05:00
|
|
|
disk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
|
2017-08-12 22:25:43 -04:00
|
|
|
defer os.RemoveAll(disk)
|
2016-10-05 15:48:07 -04:00
|
|
|
obj := initFSObjects(disk, t)
|
2016-09-16 16:06:49 -04:00
|
|
|
|
|
|
|
bucketName := "bucket"
|
|
|
|
objectName := "object"
|
|
|
|
data := []byte("12345")
|
|
|
|
|
2022-07-25 20:51:32 -04:00
|
|
|
if err := obj.MakeBucketWithLocation(GlobalContext, bucketName, MakeBucketOptions{}); err != nil {
|
2016-09-16 16:06:49 -04:00
|
|
|
t.Fatal("Cannot create bucket, err: ", err)
|
|
|
|
}
|
|
|
|
|
2020-04-09 12:30:02 -04:00
|
|
|
uploadID, err := obj.NewMultipartUpload(GlobalContext, bucketName, objectName, ObjectOptions{UserDefined: map[string]string{"X-Amz-Meta-xid": "3f"}})
|
2016-09-16 16:06:49 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Unexpected error ", err)
|
|
|
|
}
|
|
|
|
|
2016-11-21 16:51:05 -05:00
|
|
|
md5Hex := getMD5Hash(data)
|
2016-09-16 16:06:49 -04:00
|
|
|
|
2017-11-14 03:25:10 -05:00
|
|
|
parts := []CompletePart{{PartNumber: 1, ETag: md5Hex}}
|
2019-09-22 13:45:33 -04:00
|
|
|
newDisk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
|
|
|
|
defer os.RemoveAll(newDisk)
|
|
|
|
obj = initFSObjects(newDisk, t)
|
2020-04-09 12:30:02 -04:00
|
|
|
if _, err := obj.CompleteMultipartUpload(GlobalContext, bucketName, objectName, uploadID, parts, ObjectOptions{}); err != nil {
|
2018-04-10 12:36:37 -04:00
|
|
|
if !isSameType(err, BucketNotFound{}) {
|
2017-01-16 20:05:00 -05:00
|
|
|
t.Fatal("Unexpected error ", err)
|
2016-09-16 16:06:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-31 16:17:24 -05:00
|
|
|
// TestCompleteMultipartUpload - test CompleteMultipartUpload
|
2017-10-18 17:26:20 -04:00
|
|
|
func TestCompleteMultipartUpload(t *testing.T) {
|
|
|
|
// Prepare for tests
|
|
|
|
disk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
|
|
|
|
defer os.RemoveAll(disk)
|
|
|
|
obj := initFSObjects(disk, t)
|
|
|
|
|
|
|
|
bucketName := "bucket"
|
|
|
|
objectName := "object"
|
|
|
|
data := []byte("12345")
|
|
|
|
|
2022-07-25 20:51:32 -04:00
|
|
|
if err := obj.MakeBucketWithLocation(GlobalContext, bucketName, MakeBucketOptions{}); err != nil {
|
2017-10-18 17:26:20 -04:00
|
|
|
t.Fatal("Cannot create bucket, err: ", err)
|
|
|
|
}
|
|
|
|
|
2020-04-09 12:30:02 -04:00
|
|
|
uploadID, err := obj.NewMultipartUpload(GlobalContext, bucketName, objectName, ObjectOptions{UserDefined: map[string]string{"X-Amz-Meta-xid": "3f"}})
|
2017-10-18 17:26:20 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Unexpected error ", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
md5Hex := getMD5Hash(data)
|
|
|
|
|
2020-04-09 12:30:02 -04:00
|
|
|
if _, err := obj.PutObjectPart(GlobalContext, bucketName, objectName, uploadID, 1, mustGetPutObjReader(t, bytes.NewReader(data), 5, md5Hex, ""), ObjectOptions{}); err != nil {
|
2017-10-18 17:26:20 -04:00
|
|
|
t.Fatal("Unexpected error ", err)
|
|
|
|
}
|
|
|
|
|
2017-11-14 03:25:10 -05:00
|
|
|
parts := []CompletePart{{PartNumber: 1, ETag: md5Hex}}
|
2020-04-09 12:30:02 -04:00
|
|
|
if _, err := obj.CompleteMultipartUpload(GlobalContext, bucketName, objectName, uploadID, parts, ObjectOptions{}); err != nil {
|
2017-10-18 17:26:20 -04:00
|
|
|
t.Fatal("Unexpected error ", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-31 16:17:24 -05:00
|
|
|
// TestCompleteMultipartUpload - test CompleteMultipartUpload
|
2017-10-18 17:26:20 -04:00
|
|
|
func TestAbortMultipartUpload(t *testing.T) {
|
2020-11-05 14:48:55 -05:00
|
|
|
if runtime.GOOS == globalWindowsOSName {
|
|
|
|
// Concurrent AbortMultipartUpload() fails on windows
|
|
|
|
t.Skip()
|
|
|
|
}
|
|
|
|
|
2017-10-18 17:26:20 -04:00
|
|
|
// Prepare for tests
|
|
|
|
disk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
|
|
|
|
defer os.RemoveAll(disk)
|
|
|
|
obj := initFSObjects(disk, t)
|
|
|
|
|
|
|
|
bucketName := "bucket"
|
|
|
|
objectName := "object"
|
|
|
|
data := []byte("12345")
|
|
|
|
|
2022-07-25 20:51:32 -04:00
|
|
|
if err := obj.MakeBucketWithLocation(GlobalContext, bucketName, MakeBucketOptions{}); err != nil {
|
2017-10-18 17:26:20 -04:00
|
|
|
t.Fatal("Cannot create bucket, err: ", err)
|
|
|
|
}
|
|
|
|
|
2020-04-09 12:30:02 -04:00
|
|
|
uploadID, err := obj.NewMultipartUpload(GlobalContext, bucketName, objectName, ObjectOptions{UserDefined: map[string]string{"X-Amz-Meta-xid": "3f"}})
|
2017-10-18 17:26:20 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Unexpected error ", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
md5Hex := getMD5Hash(data)
|
|
|
|
|
2020-09-14 18:57:13 -04:00
|
|
|
opts := ObjectOptions{}
|
|
|
|
if _, err := obj.PutObjectPart(GlobalContext, bucketName, objectName, uploadID, 1, mustGetPutObjReader(t, bytes.NewReader(data), 5, md5Hex, ""), opts); err != nil {
|
2017-10-18 17:26:20 -04:00
|
|
|
t.Fatal("Unexpected error ", err)
|
|
|
|
}
|
2020-09-14 18:57:13 -04:00
|
|
|
if err := obj.AbortMultipartUpload(GlobalContext, bucketName, objectName, uploadID, opts); err != nil {
|
2017-10-18 17:26:20 -04:00
|
|
|
t.Fatal("Unexpected error ", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-16 16:06:49 -04:00
|
|
|
// TestListMultipartUploadsFaultyDisk - test ListMultipartUploads with faulty disks
|
|
|
|
func TestListMultipartUploadsFaultyDisk(t *testing.T) {
|
|
|
|
// Prepare for tests
|
2016-12-16 01:25:05 -05:00
|
|
|
disk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
|
2017-08-12 22:25:43 -04:00
|
|
|
defer os.RemoveAll(disk)
|
2017-01-16 20:05:00 -05:00
|
|
|
|
2016-10-05 15:48:07 -04:00
|
|
|
obj := initFSObjects(disk, t)
|
2017-01-16 20:05:00 -05:00
|
|
|
|
2016-09-16 16:06:49 -04:00
|
|
|
bucketName := "bucket"
|
|
|
|
objectName := "object"
|
|
|
|
|
2022-07-25 20:51:32 -04:00
|
|
|
if err := obj.MakeBucketWithLocation(GlobalContext, bucketName, MakeBucketOptions{}); err != nil {
|
2016-09-16 16:06:49 -04:00
|
|
|
t.Fatal("Cannot create bucket, err: ", err)
|
|
|
|
}
|
|
|
|
|
2020-04-09 12:30:02 -04:00
|
|
|
_, err := obj.NewMultipartUpload(GlobalContext, bucketName, objectName, ObjectOptions{UserDefined: map[string]string{"X-Amz-Meta-xid": "3f"}})
|
2016-09-16 16:06:49 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Unexpected error ", err)
|
|
|
|
}
|
|
|
|
|
2019-09-22 13:45:33 -04:00
|
|
|
newDisk := filepath.Join(globalTestTmpDir, "minio-"+nextSuffix())
|
|
|
|
defer os.RemoveAll(newDisk)
|
|
|
|
obj = initFSObjects(newDisk, t)
|
2020-04-09 12:30:02 -04:00
|
|
|
if _, err := obj.ListMultipartUploads(GlobalContext, bucketName, objectName, "", "", "", 1000); err != nil {
|
2018-04-10 12:36:37 -04:00
|
|
|
if !isSameType(err, BucketNotFound{}) {
|
2017-01-16 20:05:00 -05:00
|
|
|
t.Fatal("Unexpected error ", err)
|
2016-09-16 16:06:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|