X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e1902b8a0490aa6b7ffc544c1609d4d57a5110ce..e59b78c774872e33b9c69acc196989a0f565bdf4:/services/keepstore/handler_test.go diff --git a/services/keepstore/handler_test.go b/services/keepstore/handler_test.go index dc9bcb117f..c37a4d112f 100644 --- a/services/keepstore/handler_test.go +++ b/services/keepstore/handler_test.go @@ -1,3 +1,7 @@ +// Copyright (C) The Arvados Authors. All rights reserved. +// +// SPDX-License-Identifier: AGPL-3.0 + // Tests for Keep HTTP handlers: // // GetBlockHandler @@ -11,6 +15,7 @@ package main import ( "bytes" + "context" "encoding/json" "fmt" "net/http" @@ -22,8 +27,13 @@ import ( "time" "git.curoverse.com/arvados.git/sdk/go/arvados" + "git.curoverse.com/arvados.git/sdk/go/arvadostest" ) +var testCluster = &arvados.Cluster{ + ClusterID: "zzzzz", +} + // A RequestTester represents the parameters for an HTTP request to // be issued on behalf of a unit test. type RequestTester struct { @@ -48,7 +58,7 @@ func TestGetHandler(t *testing.T) { defer KeepVM.Close() vols := KeepVM.AllWritable() - if err := vols[0].Put(TestHash, TestBlock); err != nil { + if err := vols[0].Put(context.Background(), TestHash, TestBlock); err != nil { t.Error(err) } @@ -288,10 +298,10 @@ func TestIndexHandler(t *testing.T) { defer KeepVM.Close() vols := KeepVM.AllWritable() - vols[0].Put(TestHash, TestBlock) - vols[1].Put(TestHash2, TestBlock2) - vols[0].Put(TestHash+".meta", []byte("metadata")) - vols[1].Put(TestHash2+".meta", []byte("metadata")) + vols[0].Put(context.Background(), TestHash, TestBlock) + vols[1].Put(context.Background(), TestHash2, TestBlock2) + vols[0].Put(context.Background(), TestHash+".meta", []byte("metadata")) + vols[1].Put(context.Background(), TestHash2+".meta", []byte("metadata")) theConfig.systemAuthToken = "DATA MANAGER TOKEN" @@ -477,7 +487,7 @@ func TestDeleteHandler(t *testing.T) { defer KeepVM.Close() vols := KeepVM.AllWritable() - vols[0].Put(TestHash, TestBlock) + vols[0].Put(context.Background(), TestHash, TestBlock) // Explicitly set the BlobSignatureTTL to 0 for these // tests, to ensure the MockVolume deletes the blocks @@ -564,7 +574,7 @@ func TestDeleteHandler(t *testing.T) { } // Confirm the block has been deleted buf := make([]byte, BlockSize) - _, err := vols[0].Get(TestHash, buf) + _, err := vols[0].Get(context.Background(), TestHash, buf) var blockDeleted = os.IsNotExist(err) if !blockDeleted { t.Error("superuserExistingBlockReq: block not deleted") @@ -572,7 +582,7 @@ func TestDeleteHandler(t *testing.T) { // A DELETE request on a block newer than BlobSignatureTTL // should return success but leave the block on the volume. - vols[0].Put(TestHash, TestBlock) + vols[0].Put(context.Background(), TestHash, TestBlock) theConfig.BlobSignatureTTL = arvados.Duration(time.Hour) response = IssueRequest(superuserExistingBlockReq) @@ -588,7 +598,7 @@ func TestDeleteHandler(t *testing.T) { expectedDc, responseDc) } // Confirm the block has NOT been deleted. - _, err = vols[0].Get(TestHash, buf) + _, err = vols[0].Get(context.Background(), TestHash, buf) if err != nil { t.Errorf("testing delete on new block: %s\n", err) } @@ -817,7 +827,19 @@ func IssueRequest(rt *RequestTester) *httptest.ResponseRecorder { if rt.apiToken != "" { req.Header.Set("Authorization", "OAuth2 "+rt.apiToken) } - loggingRouter := MakeRESTRouter() + loggingRouter := MakeRESTRouter(testCluster) + loggingRouter.ServeHTTP(response, req) + return response +} + +func IssueHealthCheckRequest(rt *RequestTester) *httptest.ResponseRecorder { + response := httptest.NewRecorder() + body := bytes.NewReader(rt.requestBody) + req, _ := http.NewRequest(rt.method, rt.uri, body) + if rt.apiToken != "" { + req.Header.Set("Authorization", "Bearer "+rt.apiToken) + } + loggingRouter := MakeRESTRouter(testCluster) loggingRouter.ServeHTTP(response, req) return response } @@ -940,7 +962,7 @@ func TestGetHandlerClientDisconnect(t *testing.T) { KeepVM = MakeTestVolumeManager(2) defer KeepVM.Close() - if err := KeepVM.AllWritable()[0].Put(TestHash, TestBlock); err != nil { + if err := KeepVM.AllWritable()[0].Put(context.Background(), TestHash, TestBlock); err != nil { t.Error(err) } @@ -957,7 +979,7 @@ func TestGetHandlerClientDisconnect(t *testing.T) { ok := make(chan struct{}) go func() { req, _ := http.NewRequest("GET", fmt.Sprintf("/%s+%d", TestHash, len(TestBlock)), nil) - (&LoggingRESTRouter{MakeRESTRouter()}).ServeHTTP(resp, req) + MakeRESTRouter(testCluster).ServeHTTP(resp, req) ok <- struct{}{} }() @@ -985,7 +1007,7 @@ func TestGetHandlerNoBufferLeak(t *testing.T) { defer KeepVM.Close() vols := KeepVM.AllWritable() - if err := vols[0].Put(TestHash, TestBlock); err != nil { + if err := vols[0].Put(context.Background(), TestHash, TestBlock); err != nil { t.Error(err) } @@ -1040,7 +1062,7 @@ func TestUntrashHandler(t *testing.T) { KeepVM = MakeTestVolumeManager(2) defer KeepVM.Close() vols := KeepVM.AllWritable() - vols[0].Put(TestHash, TestBlock) + vols[0].Put(context.Background(), TestHash, TestBlock) theConfig.systemAuthToken = "DATA MANAGER TOKEN" @@ -1089,7 +1111,7 @@ func TestUntrashHandler(t *testing.T) { response = IssueRequest(datamanagerWrongMethodReq) ExpectStatusCode(t, "Only PUT method is supported for untrash", - http.StatusBadRequest, + http.StatusMethodNotAllowed, response) // datamanagerReq => StatusOK @@ -1135,3 +1157,21 @@ func TestUntrashHandlerWithNoWritableVolumes(t *testing.T) { http.StatusNotFound, response) } + +func TestHealthCheckPing(t *testing.T) { + theConfig.ManagementToken = arvadostest.ManagementToken + pingReq := &RequestTester{ + method: "GET", + uri: "/_health/ping", + apiToken: arvadostest.ManagementToken, + } + response := IssueHealthCheckRequest(pingReq) + ExpectStatusCode(t, + "", + http.StatusOK, + response) + want := `{"health":"OK"}` + if !strings.Contains(response.Body.String(), want) { + t.Errorf("expected response to include %s: got %s", want, response.Body.String()) + } +}