21611: Remove log-to-logs-table code.
[arvados.git] / lib / crunchrun / crunchrun_test.go
index 5cb982e1bbf9e5de77df1903f278878212a4d443..58ae1c190c75d5455f36924963502780427dc169 100644 (file)
@@ -14,7 +14,6 @@ import (
        "io"
        "io/fs"
        "io/ioutil"
-       "log"
        "math/rand"
        "net/http"
        "net/http/httptest"
@@ -121,7 +120,6 @@ type ArvTestClient struct {
        Content []arvadosclient.Dict
        arvados.Container
        secretMounts []byte
-       Logs         map[string]*bytes.Buffer
        sync.Mutex
        WasSetRunning bool
        callraw       bool
@@ -207,14 +205,7 @@ func (client *ArvTestClient) Create(resourceType string,
        client.Content = append(client.Content, parameters)
 
        if resourceType == "logs" {
-               et := parameters["log"].(arvadosclient.Dict)["event_type"].(string)
-               if client.Logs == nil {
-                       client.Logs = make(map[string]*bytes.Buffer)
-               }
-               if client.Logs[et] == nil {
-                       client.Logs[et] = &bytes.Buffer{}
-               }
-               client.Logs[et].Write([]byte(parameters["log"].(arvadosclient.Dict)["properties"].(map[string]string)["text"]))
+               panic("logs.create called")
        }
 
        if resourceType == "collections" && output != nil {
@@ -607,29 +598,6 @@ func (*KeepReadErrorTestClient) ManifestFileReader(m manifest.Manifest, filename
        return ErrorReader{}, nil
 }
 
-type ClosableBuffer struct {
-       bytes.Buffer
-}
-
-func (*ClosableBuffer) Close() error {
-       return nil
-}
-
-type TestLogs struct {
-       Stdout ClosableBuffer
-       Stderr ClosableBuffer
-}
-
-func (tl *TestLogs) NewTestLoggingWriter(logstr string) (io.WriteCloser, error) {
-       if logstr == "stdout" {
-               return &tl.Stdout, nil
-       }
-       if logstr == "stderr" {
-               return &tl.Stderr, nil
-       }
-       return nil, errors.New("???")
-}
-
 func dockerLog(fd byte, msg string) []byte {
        by := []byte(msg)
        header := make([]byte, 8+len(by))
@@ -645,8 +613,6 @@ func (s *TestSuite) TestRunContainer(c *C) {
                return 0
        }
 
-       var logs TestLogs
-       s.runner.NewLogWriter = logs.NewTestLoggingWriter
        s.runner.Container.ContainerImage = arvadostest.DockerImage112PDH
        s.runner.Container.Command = []string{"./hw"}
        s.runner.Container.OutputStorageClasses = []string{"default"}
@@ -663,8 +629,8 @@ func (s *TestSuite) TestRunContainer(c *C) {
        err = s.runner.WaitFinish()
        c.Assert(err, IsNil)
 
-       c.Check(logs.Stdout.String(), Matches, ".*Hello world\n")
-       c.Check(logs.Stderr.String(), Equals, "")
+       c.Check(logFileContent(c, s.runner, "stdout.txt"), Matches, `Hello world\n`)
+       c.Check(logFileContent(c, s.runner, "stderr.txt"), Matches, ``)
 }
 
 func (s *TestSuite) TestCommitLogs(c *C) {
@@ -673,7 +639,9 @@ func (s *TestSuite) TestCommitLogs(c *C) {
        defer kc.Close()
        cr, err := NewContainerRunner(s.client, api, kc, "zzzzz-zzzzz-zzzzzzzzzzzzzzz")
        c.Assert(err, IsNil)
-       cr.CrunchLog.Timestamper = (&TestTimestamper{}).Timestamp
+       f, err := cr.openLogFile("crunch-run")
+       c.Assert(err, IsNil)
+       cr.CrunchLog = newLogWriter(newTestTimestamper(f))
 
        cr.CrunchLog.Print("Hello world!")
        cr.CrunchLog.Print("Goodbye")
@@ -682,10 +650,10 @@ func (s *TestSuite) TestCommitLogs(c *C) {
        err = cr.CommitLogs()
        c.Check(err, IsNil)
 
-       c.Check(api.Calls, Equals, 2)
-       c.Check(api.Content[1]["ensure_unique_name"], Equals, true)
-       c.Check(api.Content[1]["collection"].(arvadosclient.Dict)["name"], Equals, "logs for zzzzz-zzzzz-zzzzzzzzzzzzzzz")
-       c.Check(api.Content[1]["collection"].(arvadosclient.Dict)["manifest_text"], Equals, ". 744b2e4553123b02fa7b452ec5c18993+123 0:123:crunch-run.txt\n")
+       c.Check(api.Calls, Equals, 1)
+       c.Check(api.Content[0]["ensure_unique_name"], Equals, true)
+       c.Check(api.Content[0]["collection"].(arvadosclient.Dict)["name"], Equals, "logs for zzzzz-zzzzz-zzzzzzzzzzzzzzz")
+       c.Check(api.Content[0]["collection"].(arvadosclient.Dict)["manifest_text"], Equals, ". 744b2e4553123b02fa7b452ec5c18993+123 0:123:crunch-run.txt\n")
        c.Check(*cr.LogsPDH, Equals, "63da7bdacf08c40f604daad80c261e9a+60")
 }
 
@@ -806,10 +774,7 @@ func (s *TestSuite) fullRunHelper(c *C, record string, extraMounts []string, fn
        }
 
        if err != nil {
-               for k, v := range s.api.Logs {
-                       c.Log(k)
-                       c.Log(v.String())
-               }
+               dumpAllLogFiles(c, s.runner)
        }
 
        return s.api, s.runner, realTemp
@@ -844,7 +809,7 @@ func (s *TestSuite) TestFullRunHello(c *C) {
 
        c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
        c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
-       c.Check(s.api.Logs["stdout"].String(), Matches, ".*hello world\n")
+       c.Check(logFileContent(c, s.runner, "stdout.txt"), Matches, "hello world\n")
        c.Check(s.testDispatcherKeepClient.StorageClasses, DeepEquals, []string{"default"})
        c.Check(s.testContainerKeepClient.StorageClasses, DeepEquals, []string{"default"})
 }
@@ -935,13 +900,13 @@ func (s *TestSuite) testSpotInterruptionNotice(c *C, failureRate float64) {
                time.Sleep(time.Second)
                return 0
        })
-       c.Check(s.api.Logs["crunch-run"].String(), Matches, `(?ms).*Checking for spot interruptions every 125ms using instance metadata at http://.*`)
-       c.Check(s.api.Logs["crunch-run"].String(), Matches, `(?ms).*Error checking spot interruptions: 503 Service Unavailable.*`)
+       c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, `(?ms).*Checking for spot interruptions every 125ms using instance metadata at http://.*`)
+       c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, `(?ms).*Error checking spot interruptions: 503 Service Unavailable.*`)
        if failureRate == 1 {
-               c.Check(s.api.Logs["crunch-run"].String(), Matches, `(?ms).*Giving up on checking spot interruptions after too many consecutive failures.*`)
+               c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, `(?ms).*Giving up on checking spot interruptions after too many consecutive failures.*`)
        } else {
                text := `Cloud provider scheduled instance stop at ` + stoptime.Load().(time.Time).Format(time.RFC3339)
-               c.Check(s.api.Logs["crunch-run"].String(), Matches, `(?ms).*`+text+`.*`)
+               c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, `(?ms).*`+text+`.*`)
                c.Check(s.api.CalledWith("container.runtime_status.warning", "preemption notice"), NotNil)
                c.Check(s.api.CalledWith("container.runtime_status.warningDetail", text), NotNil)
                c.Check(s.api.CalledWith("container.runtime_status.preemptionNotice", text), NotNil)
@@ -966,7 +931,7 @@ func (s *TestSuite) TestRunTimeExceeded(c *C) {
        })
 
        c.Check(s.api.CalledWith("container.state", "Cancelled"), NotNil)
-       c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*maximum run time exceeded.*")
+       c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, "(?ms).*maximum run time exceeded.*")
 }
 
 func (s *TestSuite) TestContainerWaitFails(c *C) {
@@ -984,7 +949,7 @@ func (s *TestSuite) TestContainerWaitFails(c *C) {
        })
 
        c.Check(s.api.CalledWith("container.state", "Cancelled"), NotNil)
-       c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*Container is not running.*")
+       c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, "(?ms).*Container is not running.*")
 }
 
 func (s *TestSuite) TestCrunchstat(c *C) {
@@ -1007,11 +972,10 @@ func (s *TestSuite) TestCrunchstat(c *C) {
        c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
        c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
 
-       c.Assert(s.api.Logs["crunchstat"], NotNil)
-       c.Check(s.api.Logs["crunchstat"].String(), Matches, `(?ms).*mem \d+ swap \d+ pgmajfault \d+ rss.*`)
+       c.Check(logFileContent(c, s.runner, "crunchstat.txt"), Matches, `(?ms).*mem \d+ swap \d+ pgmajfault \d+ rss.*`)
 
        // Check that we called (*crunchstat.Reporter)Stop().
-       c.Check(s.api.Logs["crunch-run"].String(), Matches, `(?ms).*Maximum crunch-run memory rss usage was \d+ bytes\n.*`)
+       c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, `(?ms).*Maximum crunch-run memory rss usage was \d+ bytes\n.*`)
 }
 
 func (s *TestSuite) TestNodeInfoLog(c *C) {
@@ -1032,19 +996,16 @@ func (s *TestSuite) TestNodeInfoLog(c *C) {
        c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
        c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
 
-       buf, err := fs.ReadFile(arvados.FS(s.runner.LogCollection), "/node.json")
-       c.Assert(err, IsNil)
-       json := string(buf)
+       json := logFileContent(c, s.runner, "node.json")
        c.Check(json, Matches, `(?ms).*"ProviderType": *"a1\.2xlarge".*`)
        c.Check(json, Matches, `(?ms).*"Price": *1\.2.*`)
 
-       c.Assert(s.api.Logs["node-info"], NotNil)
-       json = s.api.Logs["node-info"].String()
-       c.Check(json, Matches, `(?ms).*Host Information.*`)
-       c.Check(json, Matches, `(?ms).*CPU Information.*`)
-       c.Check(json, Matches, `(?ms).*Memory Information.*`)
-       c.Check(json, Matches, `(?ms).*Disk Space.*`)
-       c.Check(json, Matches, `(?ms).*Disk INodes.*`)
+       nodeinfo := logFileContent(c, s.runner, "node-info.txt")
+       c.Check(nodeinfo, Matches, `(?ms).*Host Information.*`)
+       c.Check(nodeinfo, Matches, `(?ms).*CPU Information.*`)
+       c.Check(nodeinfo, Matches, `(?ms).*Memory Information.*`)
+       c.Check(nodeinfo, Matches, `(?ms).*Disk Space.*`)
+       c.Check(nodeinfo, Matches, `(?ms).*Disk INodes.*`)
 }
 
 func (s *TestSuite) TestLogVersionAndRuntime(c *C) {
@@ -1062,11 +1023,10 @@ func (s *TestSuite) TestLogVersionAndRuntime(c *C) {
                return 0
        })
 
-       c.Assert(s.api.Logs["crunch-run"], NotNil)
-       c.Check(s.api.Logs["crunch-run"].String(), Matches, `(?ms).*crunch-run \S+ \(go\S+\) start.*`)
-       c.Check(s.api.Logs["crunch-run"].String(), Matches, `(?ms).*crunch-run process has uid=\d+\(.+\) gid=\d+\(.+\) groups=\d+\(.+\)(,\d+\(.+\))*\n.*`)
-       c.Check(s.api.Logs["crunch-run"].String(), Matches, `(?ms).*Executing container: zzzzz-zzzzz-zzzzzzzzzzzzzzz.*`)
-       c.Check(s.api.Logs["crunch-run"].String(), Matches, `(?ms).*Using container runtime: stub.*`)
+       c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, `(?ms).*crunch-run \S+ \(go\S+\) start.*`)
+       c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, `(?ms).*crunch-run process has uid=\d+\(.+\) gid=\d+\(.+\) groups=\d+\(.+\)(,\d+\(.+\))*\n.*`)
+       c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, `(?ms).*Executing container: zzzzz-zzzzz-zzzzzzzzzzzzzzz.*`)
+       c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, `(?ms).*Using container runtime: stub.*`)
 }
 
 func (s *TestSuite) testLogRSSThresholds(c *C, ram int64, expected []int, notExpected int) {
@@ -1082,8 +1042,9 @@ func (s *TestSuite) testLogRSSThresholds(c *C, ram int64, expected []int, notExp
                "runtime_constraints": {"ram": `+fmt.Sprintf("%d", ram)+`},
                "state": "Locked"
        }`, nil, func() int { return 0 })
-       c.Logf("=== crunchstat logs\n%s\n", s.api.Logs["crunchstat"].String())
-       logs := s.api.Logs["crunch-run"].String()
+       logs := logFileContent(c, s.runner, "crunch-run.txt")
+       c.Log("=== crunchstat logs")
+       c.Log(logs)
        pattern := logLineStart + `Container using over %d%% of memory \(rss %d/%d bytes\)`
        var threshold int
        for _, threshold = range expected {
@@ -1121,7 +1082,7 @@ func (s *TestSuite) TestLogMaximaAfterRun(c *C) {
         "runtime_constraints": {"ram": `+fmt.Sprintf("%d", s.debian12MemoryCurrent*10)+`},
         "state": "Locked"
     }`, nil, func() int { return 0 })
-       logs := s.api.Logs["crunch-run"].String()
+       logs := logFileContent(c, s.runner, "crunch-run.txt")
        for _, expected := range []string{
                `Maximum disk usage was \d+%, \d+/\d+ bytes`,
                fmt.Sprintf(`Maximum container memory swap usage was %d bytes`, s.debian12SwapCurrent),
@@ -1189,8 +1150,7 @@ func (s *TestSuite) TestContainerRecordLog(c *C) {
        c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
        c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
 
-       c.Assert(s.api.Logs["container"], NotNil)
-       c.Check(s.api.Logs["container"].String(), Matches, `(?ms).*container_image.*`)
+       c.Check(logFileContent(c, s.runner, "container.json"), Matches, `(?ms).*container_image.*`)
 }
 
 func (s *TestSuite) TestFullRunStderr(c *C) {
@@ -1215,8 +1175,8 @@ func (s *TestSuite) TestFullRunStderr(c *C) {
        c.Check(final["container"].(arvadosclient.Dict)["exit_code"], Equals, 1)
        c.Check(final["container"].(arvadosclient.Dict)["log"], NotNil)
 
-       c.Check(s.api.Logs["stdout"].String(), Matches, ".*hello\n")
-       c.Check(s.api.Logs["stderr"].String(), Matches, ".*world\n")
+       c.Check(logFileContent(c, s.runner, "stdout.txt"), Matches, ".*hello\n")
+       c.Check(logFileContent(c, s.runner, "stderr.txt"), Matches, ".*world\n")
 }
 
 func (s *TestSuite) TestFullRunDefaultCwd(c *C) {
@@ -1237,8 +1197,7 @@ func (s *TestSuite) TestFullRunDefaultCwd(c *C) {
 
        c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
        c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
-       c.Log(s.api.Logs["stdout"])
-       c.Check(s.api.Logs["stdout"].String(), Matches, `.*workdir=""\n`)
+       c.Check(logFileContent(c, s.runner, "stdout.txt"), Matches, `.*workdir=""`)
 }
 
 func (s *TestSuite) TestFullRunSetCwd(c *C) {
@@ -1259,7 +1218,7 @@ func (s *TestSuite) TestFullRunSetCwd(c *C) {
 
        c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
        c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
-       c.Check(s.api.Logs["stdout"].String(), Matches, ".*/bin\n")
+       c.Check(logFileContent(c, s.runner, "stdout.txt"), Matches, ".*/bin\n")
 }
 
 func (s *TestSuite) TestFullRunSetOutputStorageClasses(c *C) {
@@ -1281,7 +1240,7 @@ func (s *TestSuite) TestFullRunSetOutputStorageClasses(c *C) {
 
        c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
        c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
-       c.Check(s.api.Logs["stdout"].String(), Matches, ".*/bin\n")
+       c.Check(logFileContent(c, s.runner, "stdout.txt"), Matches, ".*/bin\n")
        c.Check(s.testDispatcherKeepClient.StorageClasses, DeepEquals, []string{"foo", "bar"})
        c.Check(s.testContainerKeepClient.StorageClasses, DeepEquals, []string{"foo", "bar"})
 }
@@ -1378,14 +1337,11 @@ func (s *TestSuite) testStopContainer(c *C) {
        case err = <-done:
                c.Check(err, IsNil)
        }
-       for k, v := range s.api.Logs {
-               c.Log(k)
-               c.Log(v.String(), "\n")
-       }
+       dumpAllLogFiles(c, s.runner)
 
        c.Check(s.api.CalledWith("container.log", nil), NotNil)
        c.Check(s.api.CalledWith("container.state", "Cancelled"), NotNil)
-       c.Check(s.api.Logs["stdout"].String(), Matches, "(?ms).*foo\n$")
+       c.Check(logFileContent(c, s.runner, "stdout.txt"), Matches, "(?ms).*foo\n$")
 }
 
 func (s *TestSuite) TestFullRunSetEnv(c *C) {
@@ -1406,7 +1362,7 @@ func (s *TestSuite) TestFullRunSetEnv(c *C) {
 
        c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
        c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
-       c.Check(s.api.Logs["stdout"].String(), Matches, `.*map\[FROBIZ:bilbo\]\n`)
+       c.Check(logFileContent(c, s.runner, "stdout.txt"), Matches, `.*map\[FROBIZ:bilbo\]`)
 }
 
 type ArvMountCmdLine struct {
@@ -1831,7 +1787,7 @@ func (s *TestSuite) TestFullRunWithAPI(c *C) {
        })
        c.Check(s.api.CalledWith("container.exit_code", 3), NotNil)
        c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
-       c.Check(s.api.Logs["crunch-run"].String(), Matches, `(?ms).*status code 3\n.*`)
+       c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, `(?ms).*status code 3\n.*`)
 }
 
 func (s *TestSuite) TestFullRunSetOutput(c *C) {
@@ -1886,7 +1842,7 @@ func (s *TestSuite) TestArvMountRuntimeStatusWarning(c *C) {
        c.Check(s.api.CalledWith("container.runtime_status.warning", "arv-mount: Keep write error"), NotNil)
        c.Check(s.api.CalledWith("container.runtime_status.warningDetail", "Test: Keep write error: I am a teapot"), NotNil)
        c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
-       c.Check(s.api.Logs["crunch-run"].String(), Matches, `(?ms).*Container exited with status code 137 \(signal 9, SIGKILL\).*`)
+       c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, `(?ms).*Container exited with status code 137 \(signal 9, SIGKILL\).*`)
 }
 
 func (s *TestSuite) TestStdoutWithExcludeFromOutputMountPointUnderOutputDir(c *C) {
@@ -2196,13 +2152,14 @@ func (s *TestSuite) TestFullBrokenDocker(c *C) {
     "state": "Locked"
 }`, nil, func() int { return 0 })
                c.Check(s.api.CalledWith("container.state", nextState), NotNil)
-               c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*unable to run containers.*")
+               logs := logFileContent(c, s.runner, "crunch-run.txt")
+               c.Check(logs, Matches, "(?ms).*unable to run containers.*")
                if s.runner.brokenNodeHook != "" {
-                       c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*Running broken node hook.*")
-                       c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*killme.*")
-                       c.Check(s.api.Logs["crunch-run"].String(), Not(Matches), "(?ms).*Writing /var/lock/crunch-run-broken to mark node as broken.*")
+                       c.Check(logs, Matches, "(?ms).*Running broken node hook.*")
+                       c.Check(logs, Matches, "(?ms).*killme.*")
+                       c.Check(logs, Not(Matches), "(?ms).*Writing /var/lock/crunch-run-broken to mark node as broken.*")
                } else {
-                       c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*Writing /var/lock/crunch-run-broken to mark node as broken.*")
+                       c.Check(logs, Matches, "(?ms).*Writing /var/lock/crunch-run-broken to mark node as broken.*")
                }
        }
 }
@@ -2227,7 +2184,7 @@ func (s *TestSuite) TestBadCommand(c *C) {
     "state": "Locked"
 }`, nil, func() int { return 0 })
                c.Check(s.api.CalledWith("container.state", "Cancelled"), NotNil)
-               c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*Possible causes:.*is missing.*")
+               c.Check(logFileContent(c, s.runner, "crunch-run.txt"), Matches, "(?ms).*Possible causes:.*is missing.*")
        }
 }
 
@@ -2337,7 +2294,7 @@ func (s *TestSuite) TestCalculateCost(c *C) {
        cr := s.runner
        cr.costStartTime = now.Add(-time.Hour)
        var logbuf bytes.Buffer
-       cr.CrunchLog.Immediate = log.New(&logbuf, "", 0)
+       cr.CrunchLog = newLogWriter(&logbuf)
 
        // if there's no InstanceType env var, cost is calculated as 0
        os.Unsetenv("InstanceType")
@@ -2463,3 +2420,20 @@ type FakeProcess struct {
 func (fp FakeProcess) CmdlineSlice() ([]string, error) {
        return fp.cmdLine, nil
 }
+
+func logFileContent(c *C, cr *ContainerRunner, fnm string) string {
+       buf, err := fs.ReadFile(arvados.FS(cr.LogCollection), fnm)
+       c.Assert(err, IsNil)
+       return string(buf)
+}
+
+func dumpAllLogFiles(c *C, cr *ContainerRunner) {
+       d, err := cr.LogCollection.OpenFile("/", os.O_RDONLY, 0)
+       c.Assert(err, IsNil)
+       fis, err := d.Readdir(-1)
+       c.Assert(err, IsNil)
+       for _, fi := range fis {
+               c.Logf("=== %s", fi.Name())
+               c.Log(logFileContent(c, cr, fi.Name()))
+       }
+}