|
|
|
/*
|
|
|
|
* Minio Cloud Storage, (C) 2015, 2016 Minio, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
fs: Break fs package to top-level and introduce ObjectAPI interface.
ObjectAPI interface brings in changes needed for XL ObjectAPI layer.
The new interface for any ObjectAPI layer is as below
```
// ObjectAPI interface.
type ObjectAPI interface {
// Bucket resource API.
DeleteBucket(bucket string) *probe.Error
ListBuckets() ([]BucketInfo, *probe.Error)
MakeBucket(bucket string) *probe.Error
GetBucketInfo(bucket string) (BucketInfo, *probe.Error)
// Bucket query API.
ListObjects(bucket, prefix, marker, delimiter string, maxKeys int) (ListObjectsResult, *probe.Error)
ListMultipartUploads(bucket string, resources BucketMultipartResourcesMetadata) (BucketMultipartResourcesMetadata, *probe.Error)
// Object resource API.
GetObject(bucket, object string, startOffset int64) (io.ReadCloser, *probe.Error)
GetObjectInfo(bucket, object string) (ObjectInfo, *probe.Error)
PutObject(bucket string, object string, size int64, data io.Reader, metadata map[string]string) (ObjectInfo, *probe.Error)
DeleteObject(bucket, object string) *probe.Error
// Object query API.
NewMultipartUpload(bucket, object string) (string, *probe.Error)
PutObjectPart(bucket, object, uploadID string, partID int, size int64, data io.Reader, md5Hex string) (string, *probe.Error)
ListObjectParts(bucket, object string, resources ObjectResourcesMetadata) (ObjectResourcesMetadata, *probe.Error)
CompleteMultipartUpload(bucket string, object string, uploadID string, parts []CompletePart) (ObjectInfo, *probe.Error)
AbortMultipartUpload(bucket, object, uploadID string) *probe.Error
}
```
9 years ago
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
. "gopkg.in/check.v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
type MySuite struct{}
|
|
|
|
|
|
|
|
var _ = Suite(&MySuite{})
|
|
|
|
|
|
|
|
func (s *MySuite) TestFSAPISuite(c *C) {
|
|
|
|
var storageList []string
|
|
|
|
create := func() ObjectLayer {
|
|
|
|
path, err := ioutil.TempDir(os.TempDir(), "minio-")
|
|
|
|
c.Check(err, IsNil)
|
|
|
|
objAPI, err := newFSObjects(path)
|
routers: Fix a crash while initializing network fs. (#1382)
Crash happens when 'minio server filename' a file name is
provided instead of a directory on command line argument.
```
panic: runtime error: slice bounds out of range
goroutine 1 [running]:
panic(0x5eb460, 0xc82000e0b0)
/usr/local/opt/go/libexec/src/runtime/panic.go:464 +0x3e6
main.splitNetPath(0x7fff5fbff9bd, 0x7, 0x0, 0x0, 0x0, 0x0)
/Users/harsha/mygo/src/github.com/minio/minio/network-fs.go:49 +0xb7
main.newNetworkFS(0x7fff5fbff9bd, 0x7, 0x0, 0x0, 0x0, 0x0)
/Users/harsha/mygo/src/github.com/minio/minio/network-fs.go:90 +0x20a
main.configureServerHandler(0xc82024e1c8, 0x5, 0xc8200640e0, 0x1, 0x1, 0x0, 0x0)
/Users/harsha/mygo/src/github.com/minio/minio/routers.go:43 +0x6ce
main.configureServer(0xc82024e1c8, 0x5, 0xc8200640e0, 0x1, 0x1, 0x5)
/Users/harsha/mygo/src/github.com/minio/minio/server-main.go:86 +0x67
```
9 years ago
|
|
|
c.Check(err, IsNil)
|
|
|
|
storageList = append(storageList, path)
|
|
|
|
return objAPI
|
|
|
|
}
|
|
|
|
APITestSuite(c, create)
|
|
|
|
defer removeRoots(c, storageList)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MySuite) TestXLAPISuite(c *C) {
|
|
|
|
var storageList []string
|
|
|
|
|
|
|
|
// Initialize name space lock.
|
|
|
|
initNSLock()
|
|
|
|
|
|
|
|
create := func() ObjectLayer {
|
|
|
|
var nDisks = 16 // Maximum disks.
|
|
|
|
var erasureDisks []string
|
|
|
|
for i := 0; i < nDisks; i++ {
|
|
|
|
path, err := ioutil.TempDir(os.TempDir(), "minio-")
|
|
|
|
c.Check(err, IsNil)
|
|
|
|
erasureDisks = append(erasureDisks, path)
|
|
|
|
}
|
|
|
|
objAPI, err := newXLObjects(erasureDisks...)
|
|
|
|
c.Check(err, IsNil)
|
|
|
|
return objAPI
|
|
|
|
}
|
|
|
|
APITestSuite(c, create)
|
|
|
|
defer removeRoots(c, storageList)
|
|
|
|
}
|
|
|
|
|
|
|
|
func removeRoots(c *C, roots []string) {
|
|
|
|
for _, root := range roots {
|
|
|
|
os.RemoveAll(root)
|
|
|
|
}
|
|
|
|
}
|