2015-10-08 05:20:24 -04:00
|
|
|
/*
|
2015-10-16 14:26:01 -04:00
|
|
|
* Minio Cloud Storage, (C) 2015 Minio, Inc.
|
2015-10-08 05:20:24 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2015-10-16 14:26:01 -04:00
|
|
|
|
|
|
|
package fs
|
2015-10-08 05:20:24 -04:00
|
|
|
|
|
|
|
import (
|
2015-10-16 14:26:01 -04:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2015-10-08 05:20:24 -04:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
. "gopkg.in/check.v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test(t *testing.T) { TestingT(t) }
|
|
|
|
|
|
|
|
type MySuite struct{}
|
|
|
|
|
|
|
|
var _ = Suite(&MySuite{})
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
func (s *MySuite) TestAPISuite(c *C) {
|
|
|
|
var storageList []string
|
2015-10-17 22:17:33 -04:00
|
|
|
create := func() Filesystem {
|
2015-10-16 14:26:01 -04:00
|
|
|
path, err := ioutil.TempDir(os.TempDir(), "minio-")
|
|
|
|
c.Check(err, IsNil)
|
|
|
|
storageList = append(storageList, path)
|
2015-12-06 17:31:20 -05:00
|
|
|
store, perr := New(path)
|
2015-10-17 22:17:33 -04:00
|
|
|
store.SetMinFreeDisk(0)
|
2015-10-16 14:26:01 -04:00
|
|
|
c.Check(perr, IsNil)
|
|
|
|
return store
|
|
|
|
}
|
|
|
|
APITestSuite(c, create)
|
|
|
|
defer removeRoots(c, storageList)
|
|
|
|
}
|
|
|
|
|
|
|
|
func removeRoots(c *C, roots []string) {
|
|
|
|
for _, root := range roots {
|
|
|
|
err := os.RemoveAll(root)
|
|
|
|
c.Check(err, IsNil)
|
|
|
|
}
|
2015-10-08 05:20:24 -04:00
|
|
|
}
|