mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
5f80edf232
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 ```
70 lines
1.8 KiB
Go
70 lines
1.8 KiB
Go
/*
|
|
* 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.
|
|
*/
|
|
|
|
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() objectAPI {
|
|
path, err := ioutil.TempDir(os.TempDir(), "minio-")
|
|
c.Check(err, IsNil)
|
|
storageAPI, err := newStorageAPI(path)
|
|
c.Check(err, IsNil)
|
|
objAPI := newObjectLayer(storageAPI)
|
|
storageList = append(storageList, path)
|
|
return objAPI
|
|
}
|
|
APITestSuite(c, create)
|
|
defer removeRoots(c, storageList)
|
|
}
|
|
|
|
func (s *MySuite) TestXLAPISuite(c *C) {
|
|
var storageList []string
|
|
create := func() objectAPI {
|
|
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)
|
|
}
|
|
storageList = append(storageList, erasureDisks...)
|
|
storageAPI, err := newStorageAPI(erasureDisks...)
|
|
c.Check(err, IsNil)
|
|
objAPI := newObjectLayer(storageAPI)
|
|
return objAPI
|
|
}
|
|
APITestSuite(c, create)
|
|
defer removeRoots(c, storageList)
|
|
}
|
|
|
|
func removeRoots(c *C, roots []string) {
|
|
for _, root := range roots {
|
|
os.RemoveAll(root)
|
|
}
|
|
}
|