X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/589de3bdd1e9f4f7a2cc64ad502e4d8e77cdd2c8..1e4630ddb8015d72978aae1be334cce2f8ca20d4:/services/keep-balance/main_test.go diff --git a/services/keep-balance/main_test.go b/services/keep-balance/main_test.go index 157ee4574b..b154f6e998 100644 --- a/services/keep-balance/main_test.go +++ b/services/keep-balance/main_test.go @@ -1,9 +1,16 @@ +// Copyright (C) The Arvados Authors. All rights reserved. +// +// SPDX-License-Identifier: AGPL-3.0 + package main import ( + "bytes" + "io/ioutil" + "net" + "net/http" "time" - "github.com/ghodss/yaml" check "gopkg.in/check.v1" ) @@ -11,32 +18,68 @@ var _ = check.Suite(&mainSuite{}) type mainSuite struct{} -func (s *mainSuite) TestExampleJSON(c *check.C) { - var config Config - c.Check(yaml.Unmarshal(exampleConfigFile, &config), check.IsNil) - c.Check(config.KeepServiceTypes, check.DeepEquals, []string{"disk"}) - c.Check(config.Client.AuthToken, check.Equals, "xyzzy") - c.Check(time.Duration(config.RunPeriod), check.Equals, 600*time.Second) +func (s *mainSuite) TestVersionFlag(c *check.C) { + var stdout, stderr bytes.Buffer + runCommand("keep-balance", []string{"-version"}, nil, &stdout, &stderr) + c.Check(stderr.String(), check.Equals, "") + c.Log(stdout.String()) } -func (s *mainSuite) TestConfigJSONWithKeepServiceList(c *check.C) { - var config Config - c.Check(yaml.Unmarshal([]byte(`{ - "Client": { - "APIHost": "zzzzz.arvadosapi.com:443", - "AuthToken": "xyzzy", - "Insecure": false - }, - "KeepServiceList": { - "items": [ - {"uuid":"zzzzz-bi64l-abcdefghijklmno", "service_type":"disk", "service_host":"a.zzzzz.arvadosapi.com", "service_port":12345}, - {"uuid":"zzzzz-bi64l-bcdefghijklmnop", "service_type":"blob", "service_host":"b.zzzzz.arvadosapi.com", "service_port":12345} - ] - }, - "RunPeriod": "600s" - }`), &config), check.IsNil) - c.Assert(len(config.KeepServiceList.Items), check.Equals, 2) - c.Check(config.KeepServiceList.Items[0].UUID, check.Equals, "zzzzz-bi64l-abcdefghijklmno") - c.Check(config.KeepServiceList.Items[0].ServicePort, check.Equals, 12345) - c.Check(config.Client.AuthToken, check.Equals, "xyzzy") +func (s *mainSuite) TestHTTPServer(c *check.C) { + ln, err := net.Listen("tcp", ":0") + if err != nil { + c.Fatal(err) + } + _, p, err := net.SplitHostPort(ln.Addr().String()) + c.Check(err, check.IsNil) + ln.Close() + config := "Clusters:\n zzzzz:\n ManagementToken: abcdefg\n Services: {Keepbalance: {InternalURLs: {'http://localhost:" + p + "/': {}}}}\n" + + var stdout bytes.Buffer + go runCommand("keep-balance", []string{"-config", "-"}, bytes.NewBufferString(config), &stdout, &stdout) + done := make(chan struct{}) + go func() { + defer close(done) + for { + time.Sleep(time.Second / 10) + req, err := http.NewRequest(http.MethodGet, "http://:"+p+"/metrics", nil) + if err != nil { + c.Fatal(err) + return + } + req.Header.Set("Authorization", "Bearer abcdefg") + resp, err := http.DefaultClient.Do(req) + if err != nil { + c.Logf("error %s", err) + continue + } + defer resp.Body.Close() + if resp.StatusCode != http.StatusOK { + c.Logf("http status %d", resp.StatusCode) + continue + } + buf, err := ioutil.ReadAll(resp.Body) + if err != nil { + c.Logf("read body: %s", err) + continue + } + c.Check(string(buf), check.Matches, `(?ms).*arvados_keepbalance_sweep_seconds_sum.*`) + return + } + }() + select { + case <-done: + case <-time.After(time.Second): + c.Log(stdout.String()) + c.Fatal("timeout") + } + + // Check non-metrics URL that gets passed through to us from + // service.Command + req, err := http.NewRequest(http.MethodGet, "http://:"+p+"/not-metrics", nil) + c.Assert(err, check.IsNil) + resp, err := http.DefaultClient.Do(req) + c.Check(err, check.IsNil) + defer resp.Body.Close() + c.Check(resp.StatusCode, check.Equals, http.StatusNotFound) }