Merge pull request #313 from stevvooe/move-panic-fix

registry/storage/driver/inmemory: avoid crash on invalid Move arguments
This commit is contained in:
Stephen Day 2015-04-02 13:56:40 -07:00
commit 277c68d51e
2 changed files with 21 additions and 3 deletions

View file

@ -212,12 +212,17 @@ func (d *dir) move(src, dst string) error {
return errNotExists
}
s, ok := sp.(*dir).children[srcFilename]
spd, ok := sp.(*dir)
if !ok {
return errIsNotDir // paranoid.
}
s, ok := spd.children[srcFilename]
if !ok {
return errNotExists
}
delete(sp.(*dir).children, srcFilename)
delete(spd.children, srcFilename)
switch n := s.(type) {
case *dir:

View file

@ -15,7 +15,6 @@ import (
"time"
storagedriver "github.com/docker/distribution/registry/storage/driver"
"gopkg.in/check.v1"
)
@ -591,6 +590,20 @@ func (suite *DriverSuite) TestMoveNonexistent(c *check.C) {
c.Assert(received, check.DeepEquals, contents)
}
// TestMoveInvalid provides various checks for invalid moves.
func (suite *DriverSuite) TestMoveInvalid(c *check.C) {
contents := randomContents(32)
// Create a regular file.
err := suite.StorageDriver.PutContent("/notadir", contents)
c.Assert(err, check.IsNil)
defer suite.StorageDriver.Delete("/notadir")
// Now try to move a non-existent file under it.
err = suite.StorageDriver.Move("/notadir/foo", "/notadir/bar")
c.Assert(err, check.NotNil) // non-nil error
}
// TestDelete checks that the delete operation removes data from the storage
// driver
func (suite *DriverSuite) TestDelete(c *check.C) {