You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.3 KiB
55 lines
1.3 KiB
10 years ago
|
/*
|
||
10 years ago
|
* Minimalist Object Storage, (C) 2015 Minio, Inc.
|
||
10 years ago
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
10 years ago
|
package donut
|
||
10 years ago
|
|
||
|
import (
|
||
|
"io/ioutil"
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
10 years ago
|
"github.com/minio-io/minio/pkg/drivers"
|
||
10 years ago
|
|
||
|
. "gopkg.in/check.v1"
|
||
|
)
|
||
|
|
||
|
func Test(t *testing.T) { TestingT(t) }
|
||
|
|
||
|
type MySuite struct{}
|
||
|
|
||
|
var _ = Suite(&MySuite{})
|
||
|
|
||
|
func (s *MySuite) TestAPISuite(c *C) {
|
||
10 years ago
|
// c.Skip("Not Implemented")
|
||
10 years ago
|
var storageList []string
|
||
10 years ago
|
create := func() drivers.Driver {
|
||
10 years ago
|
path, err := ioutil.TempDir(os.TempDir(), "minio-fs-")
|
||
|
c.Check(err, IsNil)
|
||
|
storageList = append(storageList, path)
|
||
10 years ago
|
_, _, store := Start(path) // TODO Make InMemory driver
|
||
10 years ago
|
return store
|
||
|
}
|
||
10 years ago
|
drivers.APITestSuite(c, create)
|
||
10 years ago
|
removeRoots(c, storageList)
|
||
|
}
|
||
|
|
||
|
func removeRoots(c *C, roots []string) {
|
||
|
for _, root := range roots {
|
||
|
err := os.RemoveAll(root)
|
||
|
c.Check(err, IsNil)
|
||
|
}
|
||
|
}
|