func (s *StorageBlobSuite) TestBlobCopy(c *chk.C) { if testing.Short() { c.Skip("skipping blob copy in short mode, no SLA on async operation") } cli := getBlobClient(c) cnt := randContainer() src := randString(20) dst := randString(20) body := []byte(randString(1024)) c.Assert(cli.CreateContainer(cnt, ContainerAccessTypePrivate), chk.IsNil) defer cli.deleteContainer(cnt) c.Assert(cli.putSingleBlockBlob(cnt, src, body), chk.IsNil) defer cli.DeleteBlob(cnt, src) c.Assert(cli.CopyBlob(cnt, dst, cli.GetBlobURL(cnt, src)), chk.IsNil) defer cli.DeleteBlob(cnt, dst) blobBody, err := cli.GetBlob(cnt, dst) c.Assert(err, chk.IsNil) b, err := ioutil.ReadAll(blobBody) defer blobBody.Close() c.Assert(err, chk.IsNil) c.Assert(b, chk.DeepEquals, body) }