2014-10-21 22:02:20 +00:00
|
|
|
package testsuites
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2014-12-09 02:22:08 +00:00
|
|
|
"crypto/sha1"
|
2014-12-05 19:46:41 +00:00
|
|
|
"io"
|
2014-10-21 22:02:20 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"math/rand"
|
2015-01-07 16:31:38 +00:00
|
|
|
"net/http"
|
2014-11-20 22:50:51 +00:00
|
|
|
"os"
|
2014-10-21 22:02:20 +00:00
|
|
|
"path"
|
|
|
|
"sort"
|
2015-10-02 23:19:06 +00:00
|
|
|
"strings"
|
2014-12-03 04:43:31 +00:00
|
|
|
"sync"
|
2014-10-21 22:02:20 +00:00
|
|
|
"testing"
|
2014-12-04 00:37:46 +00:00
|
|
|
"time"
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-10-05 23:39:38 +00:00
|
|
|
"gopkg.in/check.v1"
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
"github.com/docker/distribution/context"
|
2015-02-11 02:14:23 +00:00
|
|
|
storagedriver "github.com/docker/distribution/registry/storage/driver"
|
2014-10-21 22:02:20 +00:00
|
|
|
)
|
|
|
|
|
2014-11-17 23:44:07 +00:00
|
|
|
// Test hooks up gocheck into the "go test" runner.
|
|
|
|
func Test(t *testing.T) { check.TestingT(t) }
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-06-29 23:39:45 +00:00
|
|
|
// RegisterSuite registers an in-process storage driver test suite with
|
2014-11-20 22:50:51 +00:00
|
|
|
// the go test runner.
|
2015-06-29 23:39:45 +00:00
|
|
|
func RegisterSuite(driverConstructor DriverConstructor, skipCheck SkipCheck) {
|
2014-11-17 23:44:07 +00:00
|
|
|
check.Suite(&DriverSuite{
|
2014-10-21 22:02:20 +00:00
|
|
|
Constructor: driverConstructor,
|
2014-10-27 20:24:07 +00:00
|
|
|
SkipCheck: skipCheck,
|
2015-04-27 22:58:58 +00:00
|
|
|
ctx: context.Background(),
|
2014-10-21 22:02:20 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// SkipCheck is a function used to determine if a test suite should be skipped.
|
|
|
|
// If a SkipCheck returns a non-empty skip reason, the suite is skipped with
|
|
|
|
// the given reason.
|
2014-10-27 20:24:07 +00:00
|
|
|
type SkipCheck func() (reason string)
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// NeverSkip is a default SkipCheck which never skips the suite.
|
2014-10-29 19:14:19 +00:00
|
|
|
var NeverSkip SkipCheck = func() string { return "" }
|
2014-10-27 20:24:07 +00:00
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// DriverConstructor is a function which returns a new
|
|
|
|
// storagedriver.StorageDriver.
|
2014-10-21 22:02:20 +00:00
|
|
|
type DriverConstructor func() (storagedriver.StorageDriver, error)
|
2014-10-29 19:14:19 +00:00
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// DriverTeardown is a function which cleans up a suite's
|
|
|
|
// storagedriver.StorageDriver.
|
2014-10-21 22:02:20 +00:00
|
|
|
type DriverTeardown func() error
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// DriverSuite is a gocheck test suite designed to test a
|
2015-06-29 23:39:45 +00:00
|
|
|
// storagedriver.StorageDriver. The intended way to create a DriverSuite is
|
|
|
|
// with RegisterSuite.
|
2014-10-21 22:02:20 +00:00
|
|
|
type DriverSuite struct {
|
|
|
|
Constructor DriverConstructor
|
|
|
|
Teardown DriverTeardown
|
2014-10-27 20:24:07 +00:00
|
|
|
SkipCheck
|
2014-10-21 22:02:20 +00:00
|
|
|
storagedriver.StorageDriver
|
2015-04-27 22:58:58 +00:00
|
|
|
ctx context.Context
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// SetUpSuite sets up the gocheck test suite.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) SetUpSuite(c *check.C) {
|
2014-10-27 20:24:07 +00:00
|
|
|
if reason := suite.SkipCheck(); reason != "" {
|
|
|
|
c.Skip(reason)
|
|
|
|
}
|
2014-10-21 22:02:20 +00:00
|
|
|
d, err := suite.Constructor()
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
suite.StorageDriver = d
|
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// TearDownSuite tears down the gocheck test suite.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TearDownSuite(c *check.C) {
|
2014-10-21 22:02:20 +00:00
|
|
|
if suite.Teardown != nil {
|
|
|
|
err := suite.Teardown()
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-11 22:11:47 +00:00
|
|
|
// TearDownTest tears down the gocheck test.
|
|
|
|
// This causes the suite to abort if any files are left around in the storage
|
|
|
|
// driver.
|
|
|
|
func (suite *DriverSuite) TearDownTest(c *check.C) {
|
2015-04-27 22:58:58 +00:00
|
|
|
files, _ := suite.StorageDriver.List(suite.ctx, "/")
|
2014-12-11 22:11:47 +00:00
|
|
|
if len(files) > 0 {
|
|
|
|
c.Fatalf("Storage driver did not clean up properly. Offending files: %#v", files)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-10 21:11:17 +00:00
|
|
|
// TestRootExists ensures that all storage drivers have a root path by default.
|
|
|
|
func (suite *DriverSuite) TestRootExists(c *check.C) {
|
|
|
|
_, err := suite.StorageDriver.List(suite.ctx, "/")
|
|
|
|
if err != nil {
|
|
|
|
c.Fatalf(`the root path "/" should always exist: %v`, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-11 22:54:04 +00:00
|
|
|
// TestValidPaths checks that various valid file paths are accepted by the
|
|
|
|
// storage driver.
|
|
|
|
func (suite *DriverSuite) TestValidPaths(c *check.C) {
|
|
|
|
contents := randomContents(64)
|
2015-02-02 21:17:33 +00:00
|
|
|
validFiles := []string{
|
|
|
|
"/a",
|
|
|
|
"/2",
|
|
|
|
"/aa",
|
|
|
|
"/a.a",
|
|
|
|
"/0-9/abcdefg",
|
|
|
|
"/abcdefg/z.75",
|
|
|
|
"/abc/1.2.3.4.5-6_zyx/123.z/4",
|
|
|
|
"/docker/docker-registry",
|
|
|
|
"/123.abc",
|
|
|
|
"/abc./abc",
|
|
|
|
"/.abc",
|
|
|
|
"/a--b",
|
|
|
|
"/a-.b",
|
2015-04-07 21:14:45 +00:00
|
|
|
"/_.abc",
|
|
|
|
"/Docker/docker-registry",
|
|
|
|
"/Abc/Cba"}
|
2014-12-11 22:54:04 +00:00
|
|
|
|
|
|
|
for _, filename := range validFiles {
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, filename, contents)
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
2014-12-11 22:54:04 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
received, err := suite.StorageDriver.GetContent(suite.ctx, filename)
|
2014-12-11 22:54:04 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(received, check.DeepEquals, contents)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-19 14:09:32 +00:00
|
|
|
func (suite *DriverSuite) deletePath(c *check.C, path string) {
|
|
|
|
for tries := 2; tries > 0; tries-- {
|
|
|
|
err := suite.StorageDriver.Delete(suite.ctx, path)
|
|
|
|
if _, ok := err.(storagedriver.PathNotFoundError); ok {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
paths, err := suite.StorageDriver.List(suite.ctx, path)
|
|
|
|
if len(paths) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
time.Sleep(time.Second * 2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-11 22:54:04 +00:00
|
|
|
// TestInvalidPaths checks that various invalid file paths are rejected by the
|
|
|
|
// storage driver.
|
|
|
|
func (suite *DriverSuite) TestInvalidPaths(c *check.C) {
|
|
|
|
contents := randomContents(64)
|
2015-02-02 21:17:33 +00:00
|
|
|
invalidFiles := []string{
|
|
|
|
"",
|
|
|
|
"/",
|
|
|
|
"abc",
|
|
|
|
"123.abc",
|
|
|
|
"//bcd",
|
2015-04-07 21:14:45 +00:00
|
|
|
"/abc_123/"}
|
2014-12-11 22:54:04 +00:00
|
|
|
|
|
|
|
for _, filename := range invalidFiles {
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, filename, contents)
|
2016-02-11 00:26:29 +00:00
|
|
|
// only delete if file was successfully written
|
2016-01-19 14:09:32 +00:00
|
|
|
if err == nil {
|
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
|
|
|
}
|
2014-12-11 22:54:04 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.InvalidPathError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-12-11 22:54:04 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, filename)
|
2014-12-11 22:54:04 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.InvalidPathError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-12-11 22:54:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// TestWriteRead1 tests a simple write-read workflow.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestWriteRead1(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
2014-10-21 22:02:20 +00:00
|
|
|
contents := []byte("a")
|
2014-11-20 22:50:51 +00:00
|
|
|
suite.writeReadCompare(c, filename, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// TestWriteRead2 tests a simple write-read workflow with unicode data.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestWriteRead2(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
2014-10-21 22:02:20 +00:00
|
|
|
contents := []byte("\xc3\x9f")
|
2014-11-20 22:50:51 +00:00
|
|
|
suite.writeReadCompare(c, filename, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// TestWriteRead3 tests a simple write-read workflow with a small string.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestWriteRead3(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
|
|
|
contents := randomContents(32)
|
2014-11-20 22:50:51 +00:00
|
|
|
suite.writeReadCompare(c, filename, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// TestWriteRead4 tests a simple write-read workflow with 1MB of data.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestWriteRead4(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
|
|
|
contents := randomContents(1024 * 1024)
|
|
|
|
suite.writeReadCompare(c, filename, contents)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestWriteReadNonUTF8 tests that non-utf8 data may be written to the storage
|
|
|
|
// driver safely.
|
|
|
|
func (suite *DriverSuite) TestWriteReadNonUTF8(c *check.C) {
|
|
|
|
filename := randomPath(32)
|
|
|
|
contents := []byte{0x80, 0x80, 0x80, 0x80}
|
|
|
|
suite.writeReadCompare(c, filename, contents)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestTruncate tests that putting smaller contents than an original file does
|
|
|
|
// remove the excess contents.
|
|
|
|
func (suite *DriverSuite) TestTruncate(c *check.C) {
|
|
|
|
filename := randomPath(32)
|
|
|
|
contents := randomContents(1024 * 1024)
|
|
|
|
suite.writeReadCompare(c, filename, contents)
|
|
|
|
|
|
|
|
contents = randomContents(1024)
|
2014-11-20 22:50:51 +00:00
|
|
|
suite.writeReadCompare(c, filename, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// TestReadNonexistent tests reading content from an empty path.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestReadNonexistent(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err := suite.StorageDriver.GetContent(suite.ctx, filename)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
2014-11-19 01:41:48 +00:00
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// TestWriteReadStreams1 tests a simple write-read streaming workflow.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestWriteReadStreams1(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
2014-10-21 22:02:20 +00:00
|
|
|
contents := []byte("a")
|
2014-11-20 22:50:51 +00:00
|
|
|
suite.writeReadCompareStreams(c, filename, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 23:44:07 +00:00
|
|
|
// TestWriteReadStreams2 tests a simple write-read streaming workflow with
|
2014-11-20 22:50:51 +00:00
|
|
|
// unicode data.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestWriteReadStreams2(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
2014-10-21 22:02:20 +00:00
|
|
|
contents := []byte("\xc3\x9f")
|
2014-11-20 22:50:51 +00:00
|
|
|
suite.writeReadCompareStreams(c, filename, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 23:44:07 +00:00
|
|
|
// TestWriteReadStreams3 tests a simple write-read streaming workflow with a
|
2014-11-20 22:50:51 +00:00
|
|
|
// small amount of data.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestWriteReadStreams3(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
|
|
|
contents := randomContents(32)
|
2014-11-20 22:50:51 +00:00
|
|
|
suite.writeReadCompareStreams(c, filename, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 23:44:07 +00:00
|
|
|
// TestWriteReadStreams4 tests a simple write-read streaming workflow with 1MB
|
2014-11-20 22:50:51 +00:00
|
|
|
// of data.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestWriteReadStreams4(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
|
|
|
contents := randomContents(1024 * 1024)
|
|
|
|
suite.writeReadCompareStreams(c, filename, contents)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestWriteReadStreamsNonUTF8 tests that non-utf8 data may be written to the
|
|
|
|
// storage driver safely.
|
|
|
|
func (suite *DriverSuite) TestWriteReadStreamsNonUTF8(c *check.C) {
|
|
|
|
filename := randomPath(32)
|
|
|
|
contents := []byte{0x80, 0x80, 0x80, 0x80}
|
2014-11-20 22:50:51 +00:00
|
|
|
suite.writeReadCompareStreams(c, filename, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 02:22:08 +00:00
|
|
|
// TestWriteReadLargeStreams tests that a 5GB file may be written to the storage
|
|
|
|
// driver safely.
|
|
|
|
func (suite *DriverSuite) TestWriteReadLargeStreams(c *check.C) {
|
|
|
|
if testing.Short() {
|
|
|
|
c.Skip("Skipping test in short mode")
|
|
|
|
}
|
|
|
|
|
|
|
|
filename := randomPath(32)
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
2014-12-09 02:22:08 +00:00
|
|
|
|
|
|
|
checksum := sha1.New()
|
2015-01-18 01:08:04 +00:00
|
|
|
var fileSize int64 = 5 * 1024 * 1024 * 1024
|
|
|
|
|
|
|
|
contents := newRandReader(fileSize)
|
2016-02-08 22:29:21 +00:00
|
|
|
|
|
|
|
writer, err := suite.StorageDriver.Writer(suite.ctx, filename, false)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
written, err := io.Copy(writer, io.TeeReader(contents, checksum))
|
2015-01-18 01:08:04 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(written, check.Equals, fileSize)
|
2014-12-09 02:22:08 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
err = writer.Commit()
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
err = writer.Close()
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
reader, err := suite.StorageDriver.Reader(suite.ctx, filename, 0)
|
2014-12-09 02:22:08 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2015-07-17 06:55:31 +00:00
|
|
|
defer reader.Close()
|
2014-12-09 02:22:08 +00:00
|
|
|
|
|
|
|
writtenChecksum := sha1.New()
|
|
|
|
io.Copy(writtenChecksum, reader)
|
|
|
|
|
|
|
|
c.Assert(writtenChecksum.Sum(nil), check.DeepEquals, checksum.Sum(nil))
|
|
|
|
}
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
// TestReaderWithOffset tests that the appropriate data is streamed when
|
2014-12-04 00:37:46 +00:00
|
|
|
// reading with a given offset.
|
2016-02-08 22:29:21 +00:00
|
|
|
func (suite *DriverSuite) TestReaderWithOffset(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2014-12-04 00:37:46 +00:00
|
|
|
chunkSize := int64(32)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2014-12-09 02:22:08 +00:00
|
|
|
contentsChunk1 := randomContents(chunkSize)
|
|
|
|
contentsChunk2 := randomContents(chunkSize)
|
|
|
|
contentsChunk3 := randomContents(chunkSize)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, filename, append(append(contentsChunk1, contentsChunk2...), contentsChunk3...))
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
reader, err := suite.StorageDriver.Reader(suite.ctx, filename, 0)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-12-04 00:37:46 +00:00
|
|
|
defer reader.Close()
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2014-12-04 00:37:46 +00:00
|
|
|
readContents, err := ioutil.ReadAll(reader)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-12-04 00:37:46 +00:00
|
|
|
|
|
|
|
c.Assert(readContents, check.DeepEquals, append(append(contentsChunk1, contentsChunk2...), contentsChunk3...))
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
reader, err = suite.StorageDriver.Reader(suite.ctx, filename, chunkSize)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-12-04 00:37:46 +00:00
|
|
|
defer reader.Close()
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2014-12-04 00:37:46 +00:00
|
|
|
readContents, err = ioutil.ReadAll(reader)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(readContents, check.DeepEquals, append(contentsChunk2, contentsChunk3...))
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
reader, err = suite.StorageDriver.Reader(suite.ctx, filename, chunkSize*2)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-12-04 00:37:46 +00:00
|
|
|
defer reader.Close()
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2014-12-04 00:37:46 +00:00
|
|
|
readContents, err = ioutil.ReadAll(reader)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(readContents, check.DeepEquals, contentsChunk3)
|
2014-12-05 19:46:41 +00:00
|
|
|
|
|
|
|
// Ensure we get invalid offest for negative offsets.
|
2016-02-08 22:29:21 +00:00
|
|
|
reader, err = suite.StorageDriver.Reader(suite.ctx, filename, -1)
|
2014-12-05 19:46:41 +00:00
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.InvalidOffsetError{})
|
|
|
|
c.Assert(err.(storagedriver.InvalidOffsetError).Offset, check.Equals, int64(-1))
|
|
|
|
c.Assert(err.(storagedriver.InvalidOffsetError).Path, check.Equals, filename)
|
|
|
|
c.Assert(reader, check.IsNil)
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-12-05 19:46:41 +00:00
|
|
|
|
|
|
|
// Read past the end of the content and make sure we get a reader that
|
|
|
|
// returns 0 bytes and io.EOF
|
2016-02-08 22:29:21 +00:00
|
|
|
reader, err = suite.StorageDriver.Reader(suite.ctx, filename, chunkSize*3)
|
2014-12-05 19:46:41 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
defer reader.Close()
|
|
|
|
|
|
|
|
buf := make([]byte, chunkSize)
|
|
|
|
n, err := reader.Read(buf)
|
|
|
|
c.Assert(err, check.Equals, io.EOF)
|
|
|
|
c.Assert(n, check.Equals, 0)
|
|
|
|
|
|
|
|
// Check the N-1 boundary condition, ensuring we get 1 byte then io.EOF.
|
2016-02-08 22:29:21 +00:00
|
|
|
reader, err = suite.StorageDriver.Reader(suite.ctx, filename, chunkSize*3-1)
|
2014-12-05 19:46:41 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
defer reader.Close()
|
|
|
|
|
|
|
|
n, err = reader.Read(buf)
|
|
|
|
c.Assert(n, check.Equals, 1)
|
|
|
|
|
|
|
|
// We don't care whether the io.EOF comes on the this read or the first
|
|
|
|
// zero read, but the only error acceptable here is io.EOF.
|
|
|
|
if err != nil {
|
|
|
|
c.Assert(err, check.Equals, io.EOF)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Any more reads should result in zero bytes and io.EOF
|
|
|
|
n, err = reader.Read(buf)
|
|
|
|
c.Assert(n, check.Equals, 0)
|
|
|
|
c.Assert(err, check.Equals, io.EOF)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 21:38:51 +00:00
|
|
|
// TestContinueStreamAppendLarge tests that a stream write can be appended to without
|
|
|
|
// corrupting the data with a large chunk size.
|
|
|
|
func (suite *DriverSuite) TestContinueStreamAppendLarge(c *check.C) {
|
|
|
|
suite.testContinueStreamAppend(c, int64(10*1024*1024))
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestContinueStreamAppendSmall is the same as TestContinueStreamAppendLarge, but only
|
|
|
|
// with a tiny chunk size in order to test corner cases for some cloud storage drivers.
|
|
|
|
func (suite *DriverSuite) TestContinueStreamAppendSmall(c *check.C) {
|
|
|
|
suite.testContinueStreamAppend(c, int64(32))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *DriverSuite) testContinueStreamAppend(c *check.C, chunkSize int64) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2014-12-09 02:22:08 +00:00
|
|
|
contentsChunk1 := randomContents(chunkSize)
|
|
|
|
contentsChunk2 := randomContents(chunkSize)
|
|
|
|
contentsChunk3 := randomContents(chunkSize)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2014-12-04 00:37:46 +00:00
|
|
|
fullContents := append(append(contentsChunk1, contentsChunk2...), contentsChunk3...)
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
writer, err := suite.StorageDriver.Writer(suite.ctx, filename, false)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
nn, err := io.Copy(writer, bytes.NewReader(contentsChunk1))
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(nn, check.Equals, int64(len(contentsChunk1)))
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
err = writer.Close()
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-02-12 17:49:37 +00:00
|
|
|
curSize := writer.Size()
|
|
|
|
c.Assert(curSize, check.Equals, int64(len(contentsChunk1)))
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
writer, err = suite.StorageDriver.Writer(suite.ctx, filename, true)
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2016-02-08 22:29:21 +00:00
|
|
|
c.Assert(writer.Size(), check.Equals, curSize)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
nn, err = io.Copy(writer, bytes.NewReader(contentsChunk2))
|
2015-01-26 21:38:51 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(nn, check.Equals, int64(len(contentsChunk2)))
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
err = writer.Close()
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-02-12 17:49:37 +00:00
|
|
|
curSize = writer.Size()
|
|
|
|
c.Assert(curSize, check.Equals, 2*chunkSize)
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
writer, err = suite.StorageDriver.Writer(suite.ctx, filename, true)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2016-02-08 22:29:21 +00:00
|
|
|
c.Assert(writer.Size(), check.Equals, curSize)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
nn, err = io.Copy(writer, bytes.NewReader(fullContents[curSize:]))
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2016-02-08 22:29:21 +00:00
|
|
|
c.Assert(nn, check.Equals, int64(len(fullContents[curSize:])))
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
err = writer.Commit()
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
err = writer.Close()
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
received, err := suite.StorageDriver.GetContent(suite.ctx, filename)
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(received, check.DeepEquals, fullContents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 23:44:07 +00:00
|
|
|
// TestReadNonexistentStream tests that reading a stream for a nonexistent path
|
2014-11-20 22:50:51 +00:00
|
|
|
// fails.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestReadNonexistentStream(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
2014-12-10 18:51:07 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
_, err := suite.StorageDriver.Reader(suite.ctx, filename, 0)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
2014-11-19 01:41:48 +00:00
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-12-10 18:51:07 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
_, err = suite.StorageDriver.Reader(suite.ctx, filename, 64)
|
2014-12-10 18:51:07 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// TestList checks the returned list of keys after populating a directory tree.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestList(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
rootDirectory := "/" + randomFilename(int64(8+rand.Intn(8)))
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, rootDirectory)
|
2014-10-24 23:36:17 +00:00
|
|
|
|
2015-11-13 21:47:07 +00:00
|
|
|
doesnotexist := path.Join(rootDirectory, "nonexistent")
|
|
|
|
_, err := suite.StorageDriver.List(suite.ctx, doesnotexist)
|
|
|
|
c.Assert(err, check.Equals, storagedriver.PathNotFoundError{
|
|
|
|
Path: doesnotexist,
|
|
|
|
DriverName: suite.StorageDriver.Name(),
|
|
|
|
})
|
|
|
|
|
2014-12-09 02:22:08 +00:00
|
|
|
parentDirectory := rootDirectory + "/" + randomFilename(int64(8+rand.Intn(8)))
|
2014-10-21 22:02:20 +00:00
|
|
|
childFiles := make([]string, 50)
|
|
|
|
for i := 0; i < len(childFiles); i++ {
|
2014-12-09 02:22:08 +00:00
|
|
|
childFile := parentDirectory + "/" + randomFilename(int64(8+rand.Intn(8)))
|
2014-10-21 22:02:20 +00:00
|
|
|
childFiles[i] = childFile
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, childFile, randomContents(32))
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
sort.Strings(childFiles)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
keys, err := suite.StorageDriver.List(suite.ctx, "/")
|
2014-11-20 22:11:49 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(keys, check.DeepEquals, []string{rootDirectory})
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
keys, err = suite.StorageDriver.List(suite.ctx, rootDirectory)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(keys, check.DeepEquals, []string{parentDirectory})
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
keys, err = suite.StorageDriver.List(suite.ctx, parentDirectory)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
|
|
|
sort.Strings(keys)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(keys, check.DeepEquals, childFiles)
|
2014-12-05 19:46:41 +00:00
|
|
|
|
|
|
|
// A few checks to add here (check out #819 for more discussion on this):
|
|
|
|
// 1. Ensure that all paths are absolute.
|
|
|
|
// 2. Ensure that listings only include direct children.
|
|
|
|
// 3. Ensure that we only respond to directory listings that end with a slash (maybe?).
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 23:44:07 +00:00
|
|
|
// TestMove checks that a moved object no longer exists at the source path and
|
2014-11-20 22:50:51 +00:00
|
|
|
// does exist at the destination.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestMove(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
contents := randomContents(32)
|
|
|
|
sourcePath := randomPath(32)
|
|
|
|
destPath := randomPath(32)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(sourcePath))
|
|
|
|
defer suite.deletePath(c, firstPart(destPath))
|
2014-10-24 23:36:17 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, sourcePath, contents)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.Move(suite.ctx, sourcePath, destPath)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
received, err := suite.StorageDriver.GetContent(suite.ctx, destPath)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(received, check.DeepEquals, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, sourcePath)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
2014-11-19 01:41:48 +00:00
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-12-10 18:53:51 +00:00
|
|
|
// TestMoveOverwrite checks that a moved object no longer exists at the source
|
|
|
|
// path and overwrites the contents at the destination.
|
|
|
|
func (suite *DriverSuite) TestMoveOverwrite(c *check.C) {
|
|
|
|
sourcePath := randomPath(32)
|
|
|
|
destPath := randomPath(32)
|
|
|
|
sourceContents := randomContents(32)
|
|
|
|
destContents := randomContents(64)
|
|
|
|
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(sourcePath))
|
|
|
|
defer suite.deletePath(c, firstPart(destPath))
|
2014-12-10 18:53:51 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, sourcePath, sourceContents)
|
2014-12-10 18:53:51 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.PutContent(suite.ctx, destPath, destContents)
|
2014-12-10 18:53:51 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.Move(suite.ctx, sourcePath, destPath)
|
2014-12-10 18:53:51 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
received, err := suite.StorageDriver.GetContent(suite.ctx, destPath)
|
2014-12-10 18:53:51 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(received, check.DeepEquals, sourceContents)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, sourcePath)
|
2014-12-10 18:53:51 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-12-10 18:53:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TestMoveNonexistent checks that moving a nonexistent key fails and does not
|
|
|
|
// delete the data at the destination path.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestMoveNonexistent(c *check.C) {
|
2014-12-10 18:53:51 +00:00
|
|
|
contents := randomContents(32)
|
2014-12-09 02:22:08 +00:00
|
|
|
sourcePath := randomPath(32)
|
|
|
|
destPath := randomPath(32)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(destPath))
|
2014-12-10 18:53:51 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, destPath, contents)
|
2014-12-10 18:53:51 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.Move(suite.ctx, sourcePath, destPath)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
2014-11-19 01:41:48 +00:00
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-12-10 18:53:51 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
received, err := suite.StorageDriver.GetContent(suite.ctx, destPath)
|
2014-12-10 18:53:51 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(received, check.DeepEquals, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2015-04-02 01:45:13 +00:00
|
|
|
// TestMoveInvalid provides various checks for invalid moves.
|
|
|
|
func (suite *DriverSuite) TestMoveInvalid(c *check.C) {
|
|
|
|
contents := randomContents(32)
|
|
|
|
|
|
|
|
// Create a regular file.
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, "/notadir", contents)
|
2015-04-02 01:45:13 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, "/notadir")
|
2015-04-02 01:45:13 +00:00
|
|
|
|
|
|
|
// Now try to move a non-existent file under it.
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.Move(suite.ctx, "/notadir/foo", "/notadir/bar")
|
2015-04-02 01:45:13 +00:00
|
|
|
c.Assert(err, check.NotNil) // non-nil error
|
|
|
|
}
|
|
|
|
|
2014-11-17 23:44:07 +00:00
|
|
|
// TestDelete checks that the delete operation removes data from the storage
|
|
|
|
// driver
|
|
|
|
func (suite *DriverSuite) TestDelete(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
|
|
|
contents := randomContents(32)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
2014-10-24 23:36:17 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, filename, contents)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.Delete(suite.ctx, filename)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, filename)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
2014-11-19 01:41:48 +00:00
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2015-01-07 16:31:38 +00:00
|
|
|
// TestURLFor checks that the URLFor method functions properly, but only if it
|
|
|
|
// is implemented
|
|
|
|
func (suite *DriverSuite) TestURLFor(c *check.C) {
|
|
|
|
filename := randomPath(32)
|
|
|
|
contents := randomContents(32)
|
|
|
|
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
2015-01-07 16:31:38 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, filename, contents)
|
2015-01-07 16:31:38 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
url, err := suite.StorageDriver.URLFor(suite.ctx, filename, nil)
|
2015-11-02 21:23:53 +00:00
|
|
|
if _, ok := err.(storagedriver.ErrUnsupportedMethod); ok {
|
2015-01-07 16:31:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
response, err := http.Get(url)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
defer response.Body.Close()
|
|
|
|
|
|
|
|
read, err := ioutil.ReadAll(response.Body)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(read, check.DeepEquals, contents)
|
2015-01-14 19:31:11 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
url, err = suite.StorageDriver.URLFor(suite.ctx, filename, map[string]interface{}{"method": "HEAD"})
|
2015-11-02 21:23:53 +00:00
|
|
|
if _, ok := err.(storagedriver.ErrUnsupportedMethod); ok {
|
2015-01-14 19:31:11 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
response, err = http.Head(url)
|
|
|
|
c.Assert(response.StatusCode, check.Equals, 200)
|
|
|
|
c.Assert(response.ContentLength, check.Equals, int64(32))
|
2015-01-07 16:31:38 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// TestDeleteNonexistent checks that removing a nonexistent key fails.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestDeleteNonexistent(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
filename := randomPath(32)
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.Delete(suite.ctx, filename)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
2014-11-19 01:41:48 +00:00
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// TestDeleteFolder checks that deleting a folder removes all child elements.
|
2014-11-17 23:44:07 +00:00
|
|
|
func (suite *DriverSuite) TestDeleteFolder(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
dirname := randomPath(32)
|
|
|
|
filename1 := randomPath(32)
|
|
|
|
filename2 := randomPath(32)
|
|
|
|
filename3 := randomPath(32)
|
|
|
|
contents := randomContents(32)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(dirname))
|
2014-10-24 23:36:17 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, path.Join(dirname, filename1), contents)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.PutContent(suite.ctx, path.Join(dirname, filename2), contents)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.PutContent(suite.ctx, path.Join(dirname, filename3), contents)
|
2014-12-09 02:22:08 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.Delete(suite.ctx, path.Join(dirname, filename1))
|
2014-12-09 02:22:08 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, path.Join(dirname, filename1))
|
2014-12-09 02:22:08 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-12-09 02:22:08 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, path.Join(dirname, filename2))
|
2014-12-09 02:22:08 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, path.Join(dirname, filename3))
|
2014-12-09 02:22:08 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.Delete(suite.ctx, dirname)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, path.Join(dirname, filename1))
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
2014-11-19 01:41:48 +00:00
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, path.Join(dirname, filename2))
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
2014-11-19 01:41:48 +00:00
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-12-09 02:22:08 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, path.Join(dirname, filename3))
|
2014-12-09 02:22:08 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2016-10-05 23:39:38 +00:00
|
|
|
// TestDeleteOnlyDeletesSubpaths checks that deleting path A does not
|
|
|
|
// delete path B when A is a prefix of B but B is not a subpath of A (so that
|
|
|
|
// deleting "/a" does not delete "/ab"). This matters for services like S3 that
|
|
|
|
// do not implement directories.
|
|
|
|
func (suite *DriverSuite) TestDeleteOnlyDeletesSubpaths(c *check.C) {
|
|
|
|
dirname := randomPath(32)
|
|
|
|
filename := randomPath(32)
|
|
|
|
contents := randomContents(32)
|
|
|
|
|
|
|
|
defer suite.deletePath(c, firstPart(dirname))
|
|
|
|
|
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, path.Join(dirname, filename), contents)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
err = suite.StorageDriver.PutContent(suite.ctx, path.Join(dirname, filename+"suffix"), contents)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
err = suite.StorageDriver.PutContent(suite.ctx, path.Join(dirname, dirname, filename), contents)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
err = suite.StorageDriver.PutContent(suite.ctx, path.Join(dirname, dirname+"suffix", filename), contents)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
err = suite.StorageDriver.Delete(suite.ctx, path.Join(dirname, filename))
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, path.Join(dirname, filename))
|
|
|
|
c.Assert(err, check.NotNil)
|
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
|
|
|
|
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, path.Join(dirname, filename+"suffix"))
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
err = suite.StorageDriver.Delete(suite.ctx, path.Join(dirname, dirname))
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, path.Join(dirname, dirname, filename))
|
|
|
|
c.Assert(err, check.NotNil)
|
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
|
|
|
|
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, path.Join(dirname, dirname+"suffix", filename))
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
}
|
|
|
|
|
2014-12-06 03:20:42 +00:00
|
|
|
// TestStatCall runs verifies the implementation of the storagedriver's Stat call.
|
2014-12-04 00:37:46 +00:00
|
|
|
func (suite *DriverSuite) TestStatCall(c *check.C) {
|
2014-12-09 02:22:08 +00:00
|
|
|
content := randomContents(4096)
|
|
|
|
dirPath := randomPath(32)
|
|
|
|
fileName := randomFilename(32)
|
2014-12-04 00:37:46 +00:00
|
|
|
filePath := path.Join(dirPath, fileName)
|
|
|
|
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(dirPath))
|
2014-12-09 02:22:08 +00:00
|
|
|
|
2014-12-04 00:37:46 +00:00
|
|
|
// Call on non-existent file/dir, check error.
|
2015-04-27 22:58:58 +00:00
|
|
|
fi, err := suite.StorageDriver.Stat(suite.ctx, dirPath)
|
2014-12-10 18:55:33 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-12-10 18:55:33 +00:00
|
|
|
c.Assert(fi, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
fi, err = suite.StorageDriver.Stat(suite.ctx, filePath)
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(err, check.NotNil)
|
|
|
|
c.Assert(err, check.FitsTypeOf, storagedriver.PathNotFoundError{})
|
2015-10-02 23:19:06 +00:00
|
|
|
c.Assert(strings.Contains(err.Error(), suite.Name()), check.Equals, true)
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(fi, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.PutContent(suite.ctx, filePath, content)
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
// Call on regular file, check results
|
2015-04-27 22:58:58 +00:00
|
|
|
fi, err = suite.StorageDriver.Stat(suite.ctx, filePath)
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(fi, check.NotNil)
|
|
|
|
c.Assert(fi.Path(), check.Equals, filePath)
|
|
|
|
c.Assert(fi.Size(), check.Equals, int64(len(content)))
|
|
|
|
c.Assert(fi.IsDir(), check.Equals, false)
|
2015-01-18 07:19:04 +00:00
|
|
|
createdTime := fi.ModTime()
|
2014-12-04 00:37:46 +00:00
|
|
|
|
2015-01-18 07:19:04 +00:00
|
|
|
// Sleep and modify the file
|
|
|
|
time.Sleep(time.Second * 10)
|
|
|
|
content = randomContents(4096)
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.PutContent(suite.ctx, filePath, content)
|
2015-01-18 07:19:04 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2015-04-27 22:58:58 +00:00
|
|
|
fi, err = suite.StorageDriver.Stat(suite.ctx, filePath)
|
2015-01-18 07:19:04 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(fi, check.NotNil)
|
|
|
|
time.Sleep(time.Second * 5) // allow changes to propagate (eventual consistency)
|
|
|
|
|
|
|
|
// Check if the modification time is after the creation time.
|
|
|
|
// In case of cloud storage services, storage frontend nodes might have
|
|
|
|
// time drift between them, however that should be solved with sleeping
|
|
|
|
// before update.
|
|
|
|
modTime := fi.ModTime()
|
|
|
|
if !modTime.After(createdTime) {
|
|
|
|
c.Errorf("modtime (%s) is before the creation time (%s)", modTime, createdTime)
|
2014-12-04 00:37:46 +00:00
|
|
|
}
|
|
|
|
|
2015-01-18 07:19:04 +00:00
|
|
|
// Call on directory (do not check ModTime as dirs don't need to support it)
|
2015-04-27 22:58:58 +00:00
|
|
|
fi, err = suite.StorageDriver.Stat(suite.ctx, dirPath)
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(fi, check.NotNil)
|
|
|
|
c.Assert(fi.Path(), check.Equals, dirPath)
|
|
|
|
c.Assert(fi.Size(), check.Equals, int64(0))
|
|
|
|
c.Assert(fi.IsDir(), check.Equals, true)
|
|
|
|
}
|
|
|
|
|
2015-01-18 07:42:10 +00:00
|
|
|
// TestPutContentMultipleTimes checks that if storage driver can overwrite the content
|
|
|
|
// in the subsequent puts. Validates that PutContent does not have to work
|
2016-02-08 22:29:21 +00:00
|
|
|
// with an offset like Writer does and overwrites the file entirely
|
2015-01-18 07:42:10 +00:00
|
|
|
// rather than writing the data to the [0,len(data)) of the file.
|
|
|
|
func (suite *DriverSuite) TestPutContentMultipleTimes(c *check.C) {
|
|
|
|
filename := randomPath(32)
|
|
|
|
contents := randomContents(4096)
|
|
|
|
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, filename, contents)
|
2015-01-18 07:42:10 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
contents = randomContents(2048) // upload a different, smaller file
|
2015-04-27 22:58:58 +00:00
|
|
|
err = suite.StorageDriver.PutContent(suite.ctx, filename, contents)
|
2015-01-18 07:42:10 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
readContents, err := suite.StorageDriver.GetContent(suite.ctx, filename)
|
2015-01-18 07:42:10 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(readContents, check.DeepEquals, contents)
|
|
|
|
}
|
|
|
|
|
2014-12-10 18:57:47 +00:00
|
|
|
// TestConcurrentStreamReads checks that multiple clients can safely read from
|
|
|
|
// the same file simultaneously with various offsets.
|
|
|
|
func (suite *DriverSuite) TestConcurrentStreamReads(c *check.C) {
|
|
|
|
var filesize int64 = 128 * 1024 * 1024
|
|
|
|
|
|
|
|
if testing.Short() {
|
|
|
|
filesize = 10 * 1024 * 1024
|
|
|
|
c.Log("Reducing file size to 10MB for short mode")
|
|
|
|
}
|
|
|
|
|
|
|
|
filename := randomPath(32)
|
|
|
|
contents := randomContents(filesize)
|
|
|
|
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
2014-12-10 18:57:47 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, filename, contents)
|
2014-12-10 18:57:47 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
|
|
|
readContents := func() {
|
|
|
|
defer wg.Done()
|
|
|
|
offset := rand.Int63n(int64(len(contents)))
|
2016-02-08 22:29:21 +00:00
|
|
|
reader, err := suite.StorageDriver.Reader(suite.ctx, filename, offset)
|
2014-12-10 18:57:47 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
readContents, err := ioutil.ReadAll(reader)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(readContents, check.DeepEquals, contents[offset:])
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Add(10)
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
go readContents()
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
// TestConcurrentFileStreams checks that multiple *os.File objects can be passed
|
2016-02-08 22:29:21 +00:00
|
|
|
// in to Writer concurrently without hanging.
|
2014-11-20 22:50:51 +00:00
|
|
|
func (suite *DriverSuite) TestConcurrentFileStreams(c *check.C) {
|
2014-12-11 00:20:14 +00:00
|
|
|
numStreams := 32
|
|
|
|
|
|
|
|
if testing.Short() {
|
|
|
|
numStreams = 8
|
|
|
|
c.Log("Reducing number of streams to 8 for short mode")
|
|
|
|
}
|
|
|
|
|
2014-12-03 04:43:31 +00:00
|
|
|
var wg sync.WaitGroup
|
2014-11-20 22:50:51 +00:00
|
|
|
|
2014-12-03 03:01:00 +00:00
|
|
|
testStream := func(size int64) {
|
2014-12-03 04:43:31 +00:00
|
|
|
defer wg.Done()
|
2014-11-20 22:50:51 +00:00
|
|
|
suite.testFileStreams(c, size)
|
|
|
|
}
|
|
|
|
|
2014-12-11 00:20:14 +00:00
|
|
|
wg.Add(numStreams)
|
|
|
|
for i := numStreams; i > 0; i-- {
|
|
|
|
go testStream(int64(numStreams) * 1024 * 1024)
|
|
|
|
}
|
2014-11-20 22:50:51 +00:00
|
|
|
|
2014-12-03 04:43:31 +00:00
|
|
|
wg.Wait()
|
2014-11-20 22:50:51 +00:00
|
|
|
}
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
// TODO (brianbland): evaluate the relevancy of this test
|
2014-12-21 15:46:52 +00:00
|
|
|
// TestEventualConsistency checks that if stat says that a file is a certain size, then
|
|
|
|
// you can freely read from the file (this is the only guarantee that the driver needs to provide)
|
2016-02-08 22:29:21 +00:00
|
|
|
// func (suite *DriverSuite) TestEventualConsistency(c *check.C) {
|
|
|
|
// if testing.Short() {
|
|
|
|
// c.Skip("Skipping test in short mode")
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// filename := randomPath(32)
|
|
|
|
// defer suite.deletePath(c, firstPart(filename))
|
|
|
|
//
|
|
|
|
// var offset int64
|
|
|
|
// var misswrites int
|
|
|
|
// var chunkSize int64 = 32
|
|
|
|
//
|
|
|
|
// for i := 0; i < 1024; i++ {
|
|
|
|
// contents := randomContents(chunkSize)
|
|
|
|
// read, err := suite.StorageDriver.Writer(suite.ctx, filename, offset, bytes.NewReader(contents))
|
|
|
|
// c.Assert(err, check.IsNil)
|
|
|
|
//
|
|
|
|
// fi, err := suite.StorageDriver.Stat(suite.ctx, filename)
|
|
|
|
// c.Assert(err, check.IsNil)
|
|
|
|
//
|
|
|
|
// // We are most concerned with being able to read data as soon as Stat declares
|
|
|
|
// // it is uploaded. This is the strongest guarantee that some drivers (that guarantee
|
|
|
|
// // at best eventual consistency) absolutely need to provide.
|
|
|
|
// if fi.Size() == offset+chunkSize {
|
|
|
|
// reader, err := suite.StorageDriver.Reader(suite.ctx, filename, offset)
|
|
|
|
// c.Assert(err, check.IsNil)
|
|
|
|
//
|
|
|
|
// readContents, err := ioutil.ReadAll(reader)
|
|
|
|
// c.Assert(err, check.IsNil)
|
|
|
|
//
|
|
|
|
// c.Assert(readContents, check.DeepEquals, contents)
|
|
|
|
//
|
|
|
|
// reader.Close()
|
|
|
|
// offset += read
|
|
|
|
// } else {
|
|
|
|
// misswrites++
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// if misswrites > 0 {
|
|
|
|
// c.Log("There were " + string(misswrites) + " occurrences of a write not being instantly available.")
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// c.Assert(misswrites, check.Not(check.Equals), 1024)
|
|
|
|
// }
|
2014-12-21 15:46:52 +00:00
|
|
|
|
2014-12-16 20:01:27 +00:00
|
|
|
// BenchmarkPutGetEmptyFiles benchmarks PutContent/GetContent for 0B files
|
|
|
|
func (suite *DriverSuite) BenchmarkPutGetEmptyFiles(c *check.C) {
|
|
|
|
suite.benchmarkPutGetFiles(c, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkPutGet1KBFiles benchmarks PutContent/GetContent for 1KB files
|
|
|
|
func (suite *DriverSuite) BenchmarkPutGet1KBFiles(c *check.C) {
|
|
|
|
suite.benchmarkPutGetFiles(c, 1024)
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkPutGet1MBFiles benchmarks PutContent/GetContent for 1MB files
|
|
|
|
func (suite *DriverSuite) BenchmarkPutGet1MBFiles(c *check.C) {
|
|
|
|
suite.benchmarkPutGetFiles(c, 1024*1024)
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkPutGet1GBFiles benchmarks PutContent/GetContent for 1GB files
|
|
|
|
func (suite *DriverSuite) BenchmarkPutGet1GBFiles(c *check.C) {
|
|
|
|
suite.benchmarkPutGetFiles(c, 1024*1024*1024)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *DriverSuite) benchmarkPutGetFiles(c *check.C, size int64) {
|
|
|
|
c.SetBytes(size)
|
|
|
|
parentDir := randomPath(8)
|
|
|
|
defer func() {
|
|
|
|
c.StopTimer()
|
2015-04-27 22:58:58 +00:00
|
|
|
suite.StorageDriver.Delete(suite.ctx, firstPart(parentDir))
|
2014-12-16 20:01:27 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
for i := 0; i < c.N; i++ {
|
|
|
|
filename := path.Join(parentDir, randomPath(32))
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, filename, randomContents(size))
|
2014-12-16 20:01:27 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
_, err = suite.StorageDriver.GetContent(suite.ctx, filename)
|
2014-12-16 20:01:27 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
// BenchmarkStreamEmptyFiles benchmarks Writer/Reader for 0B files
|
2014-12-16 20:01:27 +00:00
|
|
|
func (suite *DriverSuite) BenchmarkStreamEmptyFiles(c *check.C) {
|
|
|
|
suite.benchmarkStreamFiles(c, 0)
|
|
|
|
}
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
// BenchmarkStream1KBFiles benchmarks Writer/Reader for 1KB files
|
2014-12-16 20:01:27 +00:00
|
|
|
func (suite *DriverSuite) BenchmarkStream1KBFiles(c *check.C) {
|
|
|
|
suite.benchmarkStreamFiles(c, 1024)
|
|
|
|
}
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
// BenchmarkStream1MBFiles benchmarks Writer/Reader for 1MB files
|
2014-12-16 20:01:27 +00:00
|
|
|
func (suite *DriverSuite) BenchmarkStream1MBFiles(c *check.C) {
|
|
|
|
suite.benchmarkStreamFiles(c, 1024*1024)
|
|
|
|
}
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
// BenchmarkStream1GBFiles benchmarks Writer/Reader for 1GB files
|
2014-12-16 20:01:27 +00:00
|
|
|
func (suite *DriverSuite) BenchmarkStream1GBFiles(c *check.C) {
|
|
|
|
suite.benchmarkStreamFiles(c, 1024*1024*1024)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *DriverSuite) benchmarkStreamFiles(c *check.C, size int64) {
|
|
|
|
c.SetBytes(size)
|
|
|
|
parentDir := randomPath(8)
|
|
|
|
defer func() {
|
|
|
|
c.StopTimer()
|
2015-04-27 22:58:58 +00:00
|
|
|
suite.StorageDriver.Delete(suite.ctx, firstPart(parentDir))
|
2014-12-16 20:01:27 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
for i := 0; i < c.N; i++ {
|
|
|
|
filename := path.Join(parentDir, randomPath(32))
|
2016-02-08 22:29:21 +00:00
|
|
|
writer, err := suite.StorageDriver.Writer(suite.ctx, filename, false)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
written, err := io.Copy(writer, bytes.NewReader(randomContents(size)))
|
2014-12-16 20:01:27 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(written, check.Equals, size)
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
err = writer.Commit()
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
err = writer.Close()
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
rc, err := suite.StorageDriver.Reader(suite.ctx, filename, 0)
|
2014-12-16 20:01:27 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
rc.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkList5Files benchmarks List for 5 small files
|
|
|
|
func (suite *DriverSuite) BenchmarkList5Files(c *check.C) {
|
|
|
|
suite.benchmarkListFiles(c, 5)
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkList50Files benchmarks List for 50 small files
|
|
|
|
func (suite *DriverSuite) BenchmarkList50Files(c *check.C) {
|
|
|
|
suite.benchmarkListFiles(c, 50)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *DriverSuite) benchmarkListFiles(c *check.C, numFiles int64) {
|
|
|
|
parentDir := randomPath(8)
|
|
|
|
defer func() {
|
|
|
|
c.StopTimer()
|
2015-04-27 22:58:58 +00:00
|
|
|
suite.StorageDriver.Delete(suite.ctx, firstPart(parentDir))
|
2014-12-16 20:01:27 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
for i := int64(0); i < numFiles; i++ {
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, path.Join(parentDir, randomPath(32)), nil)
|
2014-12-16 20:01:27 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.ResetTimer()
|
|
|
|
for i := 0; i < c.N; i++ {
|
2015-04-27 22:58:58 +00:00
|
|
|
files, err := suite.StorageDriver.List(suite.ctx, parentDir)
|
2014-12-16 20:01:27 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(int64(len(files)), check.Equals, numFiles)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkDelete5Files benchmarks Delete for 5 small files
|
|
|
|
func (suite *DriverSuite) BenchmarkDelete5Files(c *check.C) {
|
|
|
|
suite.benchmarkDeleteFiles(c, 5)
|
|
|
|
}
|
|
|
|
|
|
|
|
// BenchmarkDelete50Files benchmarks Delete for 50 small files
|
|
|
|
func (suite *DriverSuite) BenchmarkDelete50Files(c *check.C) {
|
|
|
|
suite.benchmarkDeleteFiles(c, 50)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *DriverSuite) benchmarkDeleteFiles(c *check.C, numFiles int64) {
|
|
|
|
for i := 0; i < c.N; i++ {
|
|
|
|
parentDir := randomPath(8)
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(parentDir))
|
2014-12-16 20:01:27 +00:00
|
|
|
|
|
|
|
c.StopTimer()
|
|
|
|
for j := int64(0); j < numFiles; j++ {
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, path.Join(parentDir, randomPath(32)), nil)
|
2014-12-16 20:01:27 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
}
|
|
|
|
c.StartTimer()
|
|
|
|
|
|
|
|
// This is the operation we're benchmarking
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.Delete(suite.ctx, firstPart(parentDir))
|
2014-12-16 20:01:27 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-03 03:01:00 +00:00
|
|
|
func (suite *DriverSuite) testFileStreams(c *check.C, size int64) {
|
2014-11-20 22:50:51 +00:00
|
|
|
tf, err := ioutil.TempFile("", "tf")
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
defer os.Remove(tf.Name())
|
2014-12-11 00:20:14 +00:00
|
|
|
defer tf.Close()
|
2014-11-20 22:50:51 +00:00
|
|
|
|
2014-12-10 18:57:47 +00:00
|
|
|
filename := randomPath(32)
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
2014-11-20 22:50:51 +00:00
|
|
|
|
2014-12-09 02:22:08 +00:00
|
|
|
contents := randomContents(size)
|
2014-11-20 22:50:51 +00:00
|
|
|
|
|
|
|
_, err = tf.Write(contents)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
tf.Sync()
|
|
|
|
tf.Seek(0, os.SEEK_SET)
|
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
writer, err := suite.StorageDriver.Writer(suite.ctx, filename, false)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
nn, err := io.Copy(writer, tf)
|
2014-12-22 22:24:45 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(nn, check.Equals, size)
|
2014-11-20 22:50:51 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
err = writer.Commit()
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
err = writer.Close()
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
reader, err := suite.StorageDriver.Reader(suite.ctx, filename, 0)
|
2014-11-20 22:50:51 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
defer reader.Close()
|
|
|
|
|
|
|
|
readContents, err := ioutil.ReadAll(reader)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
c.Assert(readContents, check.DeepEquals, contents)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *DriverSuite) writeReadCompare(c *check.C, filename string, contents []byte) {
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
2014-10-24 23:36:17 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
err := suite.StorageDriver.PutContent(suite.ctx, filename, contents)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2015-04-27 22:58:58 +00:00
|
|
|
readContents, err := suite.StorageDriver.GetContent(suite.ctx, filename)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(readContents, check.DeepEquals, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 22:50:51 +00:00
|
|
|
func (suite *DriverSuite) writeReadCompareStreams(c *check.C, filename string, contents []byte) {
|
2016-01-19 14:09:32 +00:00
|
|
|
defer suite.deletePath(c, firstPart(filename))
|
2014-10-24 23:36:17 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
writer, err := suite.StorageDriver.Writer(suite.ctx, filename, false)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
nn, err := io.Copy(writer, bytes.NewReader(contents))
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-12-04 00:37:46 +00:00
|
|
|
c.Assert(nn, check.Equals, int64(len(contents)))
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2016-02-08 22:29:21 +00:00
|
|
|
err = writer.Commit()
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
err = writer.Close()
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
|
|
|
reader, err := suite.StorageDriver.Reader(suite.ctx, filename, 0)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
defer reader.Close()
|
|
|
|
|
|
|
|
readContents, err := ioutil.ReadAll(reader)
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(err, check.IsNil)
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2014-11-17 23:44:07 +00:00
|
|
|
c.Assert(readContents, check.DeepEquals, contents)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 02:22:08 +00:00
|
|
|
var filenameChars = []byte("abcdefghijklmnopqrstuvwxyz0123456789")
|
2014-12-11 22:11:47 +00:00
|
|
|
var separatorChars = []byte("._-")
|
2014-12-09 02:22:08 +00:00
|
|
|
|
|
|
|
func randomPath(length int64) string {
|
2014-12-11 22:11:47 +00:00
|
|
|
path := "/"
|
2014-12-09 02:22:08 +00:00
|
|
|
for int64(len(path)) < length {
|
2015-01-07 01:16:43 +00:00
|
|
|
chunkLength := rand.Int63n(length-int64(len(path))) + 1
|
2014-12-09 02:22:08 +00:00
|
|
|
chunk := randomFilename(chunkLength)
|
|
|
|
path += chunk
|
2015-01-07 01:16:43 +00:00
|
|
|
remaining := length - int64(len(path))
|
|
|
|
if remaining == 1 {
|
2014-12-09 02:22:08 +00:00
|
|
|
path += randomFilename(1)
|
2015-01-07 01:16:43 +00:00
|
|
|
} else if remaining > 1 {
|
2014-12-09 02:22:08 +00:00
|
|
|
path += "/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return path
|
|
|
|
}
|
2014-10-21 22:02:20 +00:00
|
|
|
|
2014-12-09 02:22:08 +00:00
|
|
|
func randomFilename(length int64) string {
|
2014-10-21 22:02:20 +00:00
|
|
|
b := make([]byte, length)
|
2014-12-11 22:11:47 +00:00
|
|
|
wasSeparator := true
|
2014-10-21 22:02:20 +00:00
|
|
|
for i := range b {
|
2014-12-11 22:11:47 +00:00
|
|
|
if !wasSeparator && i < len(b)-1 && rand.Intn(4) == 0 {
|
|
|
|
b[i] = separatorChars[rand.Intn(len(separatorChars))]
|
|
|
|
wasSeparator = true
|
|
|
|
} else {
|
|
|
|
b[i] = filenameChars[rand.Intn(len(filenameChars))]
|
|
|
|
wasSeparator = false
|
|
|
|
}
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
|
|
|
return string(b)
|
|
|
|
}
|
2014-12-09 02:22:08 +00:00
|
|
|
|
2015-12-08 02:54:22 +00:00
|
|
|
// randomBytes pre-allocates all of the memory sizes needed for the test. If
|
|
|
|
// anything panics while accessing randomBytes, just make this number bigger.
|
2016-01-15 09:22:43 +00:00
|
|
|
var randomBytes = make([]byte, 128<<20)
|
2015-12-08 02:54:22 +00:00
|
|
|
|
|
|
|
func init() {
|
2016-08-09 00:16:23 +00:00
|
|
|
_, _ = rand.Read(randomBytes) // always returns len(randomBytes) and nil error
|
2015-12-08 02:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func randomContents(length int64) []byte {
|
|
|
|
return randomBytes[:length]
|
2014-12-09 02:22:08 +00:00
|
|
|
}
|
|
|
|
|
2015-01-18 01:08:04 +00:00
|
|
|
type randReader struct {
|
|
|
|
r int64
|
|
|
|
m sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rr *randReader) Read(p []byte) (n int, err error) {
|
|
|
|
rr.m.Lock()
|
|
|
|
defer rr.m.Unlock()
|
2015-12-08 02:54:22 +00:00
|
|
|
|
2016-02-04 08:14:35 +00:00
|
|
|
toread := int64(len(p))
|
|
|
|
if toread > rr.r {
|
|
|
|
toread = rr.r
|
|
|
|
}
|
|
|
|
n = copy(p, randomContents(toread))
|
2015-12-08 02:54:22 +00:00
|
|
|
rr.r -= int64(n)
|
|
|
|
|
|
|
|
if rr.r <= 0 {
|
2015-01-18 01:08:04 +00:00
|
|
|
err = io.EOF
|
|
|
|
}
|
2015-12-08 02:54:22 +00:00
|
|
|
|
2015-01-18 01:08:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func newRandReader(n int64) *randReader {
|
|
|
|
return &randReader{r: n}
|
|
|
|
}
|
|
|
|
|
2014-12-09 02:22:08 +00:00
|
|
|
func firstPart(filePath string) string {
|
2014-12-16 20:01:27 +00:00
|
|
|
if filePath == "" {
|
|
|
|
return "/"
|
|
|
|
}
|
2014-12-09 02:22:08 +00:00
|
|
|
for {
|
|
|
|
if filePath[len(filePath)-1] == '/' {
|
|
|
|
filePath = filePath[:len(filePath)-1]
|
|
|
|
}
|
|
|
|
|
|
|
|
dir, file := path.Split(filePath)
|
|
|
|
if dir == "" && file == "" {
|
|
|
|
return "/"
|
|
|
|
}
|
2014-12-11 22:11:47 +00:00
|
|
|
if dir == "/" || dir == "" {
|
|
|
|
return "/" + file
|
2014-12-09 02:22:08 +00:00
|
|
|
}
|
|
|
|
if file == "" {
|
|
|
|
return dir
|
|
|
|
}
|
|
|
|
filePath = dir
|
|
|
|
}
|
|
|
|
}
|