1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
package storage
import (
chk "gopkg.in/check.v1"
)
type StorageFileSuite struct{}
var _ = chk.Suite(&StorageFileSuite{})
func getFileClient(c *chk.C) FileServiceClient {
return getBasicClient(c).GetFileService()
}
func (s *StorageFileSuite) Test_pathForFileShare(c *chk.C) {
c.Assert(pathForFileShare("foo"), chk.Equals, "/foo")
}
func (s *StorageFileSuite) TestCreateShareDeleteShare(c *chk.C) {
cli := getFileClient(c)
name := randShare()
c.Assert(cli.CreateShare(name), chk.IsNil)
c.Assert(cli.DeleteShare(name), chk.IsNil)
}
func (s *StorageFileSuite) TestCreateShareIfNotExists(c *chk.C) {
cli := getFileClient(c)
name := randShare()
defer cli.DeleteShare(name)
// First create
ok, err := cli.CreateShareIfNotExists(name)
c.Assert(err, chk.IsNil)
c.Assert(ok, chk.Equals, true)
// Second create, should not give errors
ok, err = cli.CreateShareIfNotExists(name)
c.Assert(err, chk.IsNil)
c.Assert(ok, chk.Equals, false)
}
func (s *StorageFileSuite) TestDeleteShareIfNotExists(c *chk.C) {
cli := getFileClient(c)
name := randShare()
// delete non-existing share
ok, err := cli.DeleteShareIfExists(name)
c.Assert(err, chk.IsNil)
c.Assert(ok, chk.Equals, false)
c.Assert(cli.CreateShare(name), chk.IsNil)
// delete existing share
ok, err = cli.DeleteShareIfExists(name)
c.Assert(err, chk.IsNil)
c.Assert(ok, chk.Equals, true)
}
const testSharePrefix = "zzzzztest"
func randShare() string {
return testSharePrefix + randString(32-len(testSharePrefix))
}
|