X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2bbb912c6a41bf8046cf36a77b40541f224b703d..f5bd38d4b168540ddb0e33db9e35a51ec5d60c17:/services/keepstore/azure_blob_volume_test.go diff --git a/services/keepstore/azure_blob_volume_test.go b/services/keepstore/azure_blob_volume_test.go index 439b402214..5d556b3e8c 100644 --- a/services/keepstore/azure_blob_volume_test.go +++ b/services/keepstore/azure_blob_volume_test.go @@ -74,6 +74,7 @@ func (h *azStubHandler) PutRaw(container, hash string, data []byte) { h.blobs[container+"|"+hash] = &azBlob{ Data: data, Mtime: time.Now(), + Metadata: make(map[string]string), Uncommitted: make(map[string][]byte), } } @@ -136,14 +137,23 @@ func (h *azStubHandler) ServeHTTP(rw http.ResponseWriter, r *http.Request) { h.blobs[container+"|"+hash] = &azBlob{ Mtime: time.Now(), Uncommitted: make(map[string][]byte), + Metadata: make(map[string]string), Etag: makeEtag(), } h.unlockAndRace() } + metadata := make(map[string]string) + for k, v := range r.Header { + if strings.HasPrefix(strings.ToLower(k), "x-ms-meta-") { + name := k[len("x-ms-meta-"):] + metadata[strings.ToLower(name)] = v[0] + } + } h.blobs[container+"|"+hash] = &azBlob{ Data: body, Mtime: time.Now(), Uncommitted: make(map[string][]byte), + Metadata: metadata, Etag: makeEtag(), } rw.WriteHeader(http.StatusCreated) @@ -196,11 +206,22 @@ func (h *azStubHandler) ServeHTTP(rw http.ResponseWriter, r *http.Request) { blob.Metadata = make(map[string]string) for k, v := range r.Header { if strings.HasPrefix(strings.ToLower(k), "x-ms-meta-") { - blob.Metadata[k] = v[0] + name := k[len("x-ms-meta-"):] + blob.Metadata[strings.ToLower(name)] = v[0] } } blob.Mtime = time.Now() blob.Etag = makeEtag() + case (r.Method == "GET" || r.Method == "HEAD") && r.Form.Get("comp") == "metadata" && hash != "": + // "Get Blob Metadata" API + if !blobExists { + rw.WriteHeader(http.StatusNotFound) + return + } + for k, v := range blob.Metadata { + rw.Header().Set(fmt.Sprintf("x-ms-meta-%s", k), v) + } + return case (r.Method == "GET" || r.Method == "HEAD") && hash != "": // "Get Blob" API if !blobExists { @@ -265,14 +286,20 @@ func (h *azStubHandler) ServeHTTP(rw http.ResponseWriter, r *http.Request) { } if len(resp.Blobs) > 0 || marker == "" || marker == hash { blob := h.blobs[container+"|"+hash] - resp.Blobs = append(resp.Blobs, storage.Blob{ + bmeta := map[string]string(nil) + if r.Form.Get("include") == "metadata" { + bmeta = blob.Metadata + } + b := storage.Blob{ Name: hash, Properties: storage.BlobProperties{ LastModified: blob.Mtime.Format(time.RFC1123), ContentLength: int64(len(blob.Data)), Etag: blob.Etag, }, - }) + Metadata: bmeta, + } + resp.Blobs = append(resp.Blobs, b) } } buf, err := xml.Marshal(resp) @@ -425,13 +452,12 @@ func TestAzureBlobVolumeRangeFenceposts(t *testing.T) { if err != nil { t.Error(err) } - gotData, err := v.Get(hash) + gotData := make([]byte, len(data)) + gotLen, err := v.Get(hash, gotData) if err != nil { t.Error(err) } gotHash := fmt.Sprintf("%x", md5.Sum(gotData)) - gotLen := len(gotData) - bufs.Put(gotData) if gotLen != size { t.Error("length mismatch: got %d != %d", gotLen, size) } @@ -477,11 +503,10 @@ func TestAzureBlobVolumeCreateBlobRace(t *testing.T) { // Wait for the stub's Put to create the empty blob v.azHandler.race <- continuePut go func() { - buf, err := v.Get(TestHash) + buf := make([]byte, len(TestBlock)) + _, err := v.Get(TestHash, buf) if err != nil { t.Error(err) - } else { - bufs.Put(buf) } close(allDone) }() @@ -521,15 +546,15 @@ func TestAzureBlobVolumeCreateBlobRaceDeadline(t *testing.T) { allDone := make(chan struct{}) go func() { defer close(allDone) - buf, err := v.Get(TestHash) + buf := make([]byte, BlockSize) + n, err := v.Get(TestHash, buf) if err != nil { t.Error(err) return } - if len(buf) != 0 { - t.Errorf("Got %+q, expected empty buf", buf) + if n != 0 { + t.Errorf("Got %+q, expected empty buf", buf[:n]) } - bufs.Put(buf) }() select { case <-allDone: