mirror of
https://github.com/minio/minio.git
synced 2025-04-03 11:20:30 -04:00
Fix for tests leaving out temp directories (#2025)
This commit is contained in:
parent
a854e8cc5c
commit
6dcfa7b046
@ -17,58 +17,53 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io/ioutil"
|
|
||||||
"os"
|
|
||||||
|
|
||||||
. "gopkg.in/check.v1"
|
. "gopkg.in/check.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
type MySuite struct{}
|
type ObjectLayerAPISuite struct{}
|
||||||
|
|
||||||
var _ = Suite(&MySuite{})
|
var _ = Suite(&ObjectLayerAPISuite{})
|
||||||
|
|
||||||
func (s *MySuite) TestFSAPISuite(c *C) {
|
|
||||||
var storageList []string
|
|
||||||
|
|
||||||
|
// TestFSAPISuite - Calls object layer suite tests with FS backend.
|
||||||
|
func (s *ObjectLayerAPISuite) TestFSAPISuite(c *C) {
|
||||||
// Initialize name space lock.
|
// Initialize name space lock.
|
||||||
initNSLock()
|
initNSLock()
|
||||||
|
// function which creates a temp FS backend and executes the object layer suite test.
|
||||||
create := func() ObjectLayer {
|
execObjectLayerSuiteTestFS := func(objSuiteTest objSuiteTestType) {
|
||||||
path, err := ioutil.TempDir(os.TempDir(), "minio-")
|
// create temp object layer backend.
|
||||||
|
// returns the disk and FS object layer.
|
||||||
|
objLayer, fsDisk, err := makeTestBackend("FS")
|
||||||
c.Check(err, IsNil)
|
c.Check(err, IsNil)
|
||||||
objAPI, err := newFSObjects(path)
|
// remove the disks.
|
||||||
c.Check(err, IsNil)
|
defer removeRoots(fsDisk)
|
||||||
storageList = append(storageList, path)
|
// execute the object layer suite tests.
|
||||||
return objAPI
|
objSuiteTest(c, objLayer)
|
||||||
}
|
}
|
||||||
APITestSuite(c, create)
|
// APITestSuite contains set of all object layer suite test.
|
||||||
defer removeRootsC(c, storageList)
|
// These set of test functions are called here.
|
||||||
|
APITestSuite(c, execObjectLayerSuiteTestFS)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *MySuite) TestXLAPISuite(c *C) {
|
// type for object layer suites tests.
|
||||||
var storageList []string
|
type objSuiteTestType func(c *C, obj ObjectLayer)
|
||||||
|
|
||||||
|
// TestXLAPISuite - Calls object layer suite tests with XL backend.
|
||||||
|
func (s *ObjectLayerAPISuite) TestXLAPISuite(c *C) {
|
||||||
// Initialize name space lock.
|
// Initialize name space lock.
|
||||||
initNSLock()
|
initNSLock()
|
||||||
|
// function which creates a temp XL backend and executes the object layer suite test.
|
||||||
create := func() ObjectLayer {
|
execObjectLayerSuiteTestXL := func(objSuiteTest objSuiteTestType) {
|
||||||
var nDisks = 16 // Maximum disks.
|
// create temp object layer backend.
|
||||||
var erasureDisks []string
|
// returns the disk and XL object layer.
|
||||||
for i := 0; i < nDisks; i++ {
|
objLayer, erasureDisks, err := makeTestBackend("XL")
|
||||||
path, err := ioutil.TempDir(os.TempDir(), "minio-")
|
|
||||||
c.Check(err, IsNil)
|
c.Check(err, IsNil)
|
||||||
erasureDisks = append(erasureDisks, path)
|
// remove the disks.
|
||||||
}
|
defer removeRoots(erasureDisks)
|
||||||
objAPI, err := newXLObjects(erasureDisks)
|
// execute the object layer suite tests.
|
||||||
c.Check(err, IsNil)
|
objSuiteTest(c, objLayer)
|
||||||
return objAPI
|
|
||||||
}
|
|
||||||
APITestSuite(c, create)
|
|
||||||
defer removeRootsC(c, storageList)
|
|
||||||
}
|
}
|
||||||
|
// APITestSuite contains set of all object layer suite test.
|
||||||
|
// These set of test functions are called here.
|
||||||
|
APITestSuite(c, execObjectLayerSuiteTestXL)
|
||||||
|
|
||||||
func removeRootsC(c *C, roots []string) {
|
|
||||||
for _, root := range roots {
|
|
||||||
removeAll(root)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -69,36 +69,39 @@ func (r *testOneByteReadNoEOF) Read(p []byte) (n int, err error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// APITestSuite - collection of API tests.
|
// APITestSuite - collection of API tests.
|
||||||
func APITestSuite(c *check.C, create func() ObjectLayer) {
|
func APITestSuite(c *check.C, execObjLayerSuiteTest func(objSuiteTest objSuiteTestType)) {
|
||||||
testMakeBucket(c, create)
|
// List containing collection of all tests.
|
||||||
testMultipleObjectCreation(c, create)
|
testFuncList := []func(c *check.C, obj ObjectLayer){
|
||||||
testPaging(c, create)
|
testMakeBucket,
|
||||||
testObjectOverwriteWorks(c, create)
|
testMultipartObjectCreation,
|
||||||
testNonExistantBucketOperations(c, create)
|
testPaging,
|
||||||
testBucketRecreateFails(c, create)
|
testObjectOverwriteWorks,
|
||||||
testPutObject(c, create)
|
testNonExistantBucketOperations,
|
||||||
testPutObjectInSubdir(c, create)
|
testBucketRecreateFails,
|
||||||
testListBuckets(c, create)
|
testPutObject,
|
||||||
testListBucketsOrder(c, create)
|
testPutObjectInSubdir,
|
||||||
testListObjectsTestsForNonExistantBucket(c, create)
|
testListBuckets,
|
||||||
testNonExistantObjectInBucket(c, create)
|
testListBucketsOrder,
|
||||||
testGetDirectoryReturnsObjectNotFound(c, create)
|
testListObjectsTestsForNonExistantBucket,
|
||||||
testContentType(c, create)
|
testNonExistantObjectInBucket,
|
||||||
testMultipartObjectCreation(c, create)
|
testGetDirectoryReturnsObjectNotFound,
|
||||||
testMultipartObjectAbort(c, create)
|
testContentType,
|
||||||
|
testMultipartObjectAbort,
|
||||||
|
}
|
||||||
|
// iterate over list of tests and execute them.
|
||||||
|
for _, testFunc := range testFuncList {
|
||||||
|
execObjLayerSuiteTest(testFunc)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate bucket creation.
|
// Tests validate bucket creation.
|
||||||
func testMakeBucket(c *check.C, create func() ObjectLayer) {
|
func testMakeBucket(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
err := obj.MakeBucket("bucket-unknown")
|
err := obj.MakeBucket("bucket-unknown")
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate creation of part files during Multipart operation.
|
// Tests validate creation of part files during Multipart operation.
|
||||||
func testMultipartObjectCreation(c *check.C, create func() ObjectLayer) {
|
func testMultipartObjectCreation(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
err := obj.MakeBucket("bucket")
|
err := obj.MakeBucket("bucket")
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
uploadID, err := obj.NewMultipartUpload("bucket", "key", nil)
|
uploadID, err := obj.NewMultipartUpload("bucket", "key", nil)
|
||||||
@ -123,8 +126,7 @@ func testMultipartObjectCreation(c *check.C, create func() ObjectLayer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate abortion of Multipart operation.
|
// Tests validate abortion of Multipart operation.
|
||||||
func testMultipartObjectAbort(c *check.C, create func() ObjectLayer) {
|
func testMultipartObjectAbort(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
err := obj.MakeBucket("bucket")
|
err := obj.MakeBucket("bucket")
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
uploadID, err := obj.NewMultipartUpload("bucket", "key", nil)
|
uploadID, err := obj.NewMultipartUpload("bucket", "key", nil)
|
||||||
@ -155,9 +157,8 @@ func testMultipartObjectAbort(c *check.C, create func() ObjectLayer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate object creation.
|
// Tests validate object creation.
|
||||||
func testMultipleObjectCreation(c *check.C, create func() ObjectLayer) {
|
func testMultipleObjectCreation(c *check.C, obj ObjectLayer) {
|
||||||
objects := make(map[string][]byte)
|
objects := make(map[string][]byte)
|
||||||
obj := create()
|
|
||||||
err := obj.MakeBucket("bucket")
|
err := obj.MakeBucket("bucket")
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
for i := 0; i < 10; i++ {
|
for i := 0; i < 10; i++ {
|
||||||
@ -194,8 +195,7 @@ func testMultipleObjectCreation(c *check.C, create func() ObjectLayer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate creation of objects and the order of listing using various filters for ListObjects operation.
|
// Tests validate creation of objects and the order of listing using various filters for ListObjects operation.
|
||||||
func testPaging(c *check.C, create func() ObjectLayer) {
|
func testPaging(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
obj.MakeBucket("bucket")
|
obj.MakeBucket("bucket")
|
||||||
result, err := obj.ListObjects("bucket", "", "", "", 0)
|
result, err := obj.ListObjects("bucket", "", "", "", 0)
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
@ -298,8 +298,7 @@ func testPaging(c *check.C, create func() ObjectLayer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate overwriting of an existing object.
|
// Tests validate overwriting of an existing object.
|
||||||
func testObjectOverwriteWorks(c *check.C, create func() ObjectLayer) {
|
func testObjectOverwriteWorks(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
err := obj.MakeBucket("bucket")
|
err := obj.MakeBucket("bucket")
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
|
|
||||||
@ -317,16 +316,14 @@ func testObjectOverwriteWorks(c *check.C, create func() ObjectLayer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate that bucket operation on non-existent bucket fails.
|
// Tests validate that bucket operation on non-existent bucket fails.
|
||||||
func testNonExistantBucketOperations(c *check.C, create func() ObjectLayer) {
|
func testNonExistantBucketOperations(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
_, err := obj.PutObject("bucket1", "object", int64(len("one")), bytes.NewBufferString("one"), nil)
|
_, err := obj.PutObject("bucket1", "object", int64(len("one")), bytes.NewBufferString("one"), nil)
|
||||||
c.Assert(err, check.Not(check.IsNil))
|
c.Assert(err, check.Not(check.IsNil))
|
||||||
c.Assert(err.Error(), check.Equals, "Bucket not found: bucket1")
|
c.Assert(err.Error(), check.Equals, "Bucket not found: bucket1")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate that recreation of the bucket fails.
|
// Tests validate that recreation of the bucket fails.
|
||||||
func testBucketRecreateFails(c *check.C, create func() ObjectLayer) {
|
func testBucketRecreateFails(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
err := obj.MakeBucket("string")
|
err := obj.MakeBucket("string")
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
err = obj.MakeBucket("string")
|
err = obj.MakeBucket("string")
|
||||||
@ -335,8 +332,7 @@ func testBucketRecreateFails(c *check.C, create func() ObjectLayer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate PutObject without prefix.
|
// Tests validate PutObject without prefix.
|
||||||
func testPutObject(c *check.C, create func() ObjectLayer) {
|
func testPutObject(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
content := []byte("testcontent")
|
content := []byte("testcontent")
|
||||||
length := int64(len(content))
|
length := int64(len(content))
|
||||||
readerEOF := newTestReaderEOF(content)
|
readerEOF := newTestReaderEOF(content)
|
||||||
@ -360,8 +356,7 @@ func testPutObject(c *check.C, create func() ObjectLayer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate PutObject with subdirectory prefix.
|
// Tests validate PutObject with subdirectory prefix.
|
||||||
func testPutObjectInSubdir(c *check.C, create func() ObjectLayer) {
|
func testPutObjectInSubdir(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
err := obj.MakeBucket("bucket")
|
err := obj.MakeBucket("bucket")
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
|
|
||||||
@ -376,9 +371,7 @@ func testPutObjectInSubdir(c *check.C, create func() ObjectLayer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate ListBuckets.
|
// Tests validate ListBuckets.
|
||||||
func testListBuckets(c *check.C, create func() ObjectLayer) {
|
func testListBuckets(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
|
|
||||||
// test empty list.
|
// test empty list.
|
||||||
buckets, err := obj.ListBuckets()
|
buckets, err := obj.ListBuckets()
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
@ -409,11 +402,9 @@ func testListBuckets(c *check.C, create func() ObjectLayer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate the order of result of ListBuckets.
|
// Tests validate the order of result of ListBuckets.
|
||||||
func testListBucketsOrder(c *check.C, create func() ObjectLayer) {
|
func testListBucketsOrder(c *check.C, obj ObjectLayer) {
|
||||||
// if implementation contains a map, order of map keys will vary.
|
// if implementation contains a map, order of map keys will vary.
|
||||||
// this ensures they return in the same order each time.
|
// this ensures they return in the same order each time.
|
||||||
for i := 0; i < 10; i++ {
|
|
||||||
obj := create()
|
|
||||||
// add one and test exists.
|
// add one and test exists.
|
||||||
err := obj.MakeBucket("bucket1")
|
err := obj.MakeBucket("bucket1")
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
@ -425,11 +416,9 @@ func testListBucketsOrder(c *check.C, create func() ObjectLayer) {
|
|||||||
c.Assert(buckets[0].Name, check.Equals, "bucket1")
|
c.Assert(buckets[0].Name, check.Equals, "bucket1")
|
||||||
c.Assert(buckets[1].Name, check.Equals, "bucket2")
|
c.Assert(buckets[1].Name, check.Equals, "bucket2")
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Tests validate that ListObjects operation on a non-existent bucket fails as expected.
|
// Tests validate that ListObjects operation on a non-existent bucket fails as expected.
|
||||||
func testListObjectsTestsForNonExistantBucket(c *check.C, create func() ObjectLayer) {
|
func testListObjectsTestsForNonExistantBucket(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
result, err := obj.ListObjects("bucket", "", "", "", 1000)
|
result, err := obj.ListObjects("bucket", "", "", "", 1000)
|
||||||
c.Assert(err, check.Not(check.IsNil))
|
c.Assert(err, check.Not(check.IsNil))
|
||||||
c.Assert(result.IsTruncated, check.Equals, false)
|
c.Assert(result.IsTruncated, check.Equals, false)
|
||||||
@ -438,8 +427,7 @@ func testListObjectsTestsForNonExistantBucket(c *check.C, create func() ObjectLa
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate that GetObject fails on a non-existent bucket as expected.
|
// Tests validate that GetObject fails on a non-existent bucket as expected.
|
||||||
func testNonExistantObjectInBucket(c *check.C, create func() ObjectLayer) {
|
func testNonExistantObjectInBucket(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
err := obj.MakeBucket("bucket")
|
err := obj.MakeBucket("bucket")
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
|
|
||||||
@ -454,8 +442,7 @@ func testNonExistantObjectInBucket(c *check.C, create func() ObjectLayer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests validate that GetObject on an existing directory fails as expected.
|
// Tests validate that GetObject on an existing directory fails as expected.
|
||||||
func testGetDirectoryReturnsObjectNotFound(c *check.C, create func() ObjectLayer) {
|
func testGetDirectoryReturnsObjectNotFound(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
err := obj.MakeBucket("bucket")
|
err := obj.MakeBucket("bucket")
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
|
|
||||||
@ -484,8 +471,7 @@ func testGetDirectoryReturnsObjectNotFound(c *check.C, create func() ObjectLayer
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Test content-type
|
// Test content-type
|
||||||
func testContentType(c *check.C, create func() ObjectLayer) {
|
func testContentType(c *check.C, obj ObjectLayer) {
|
||||||
obj := create()
|
|
||||||
err := obj.MakeBucket("bucket")
|
err := obj.MakeBucket("bucket")
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user