1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
25 "git.arvados.org/arvados.git/sdk/go/arvados"
26 "git.arvados.org/arvados.git/sdk/go/arvadosclient"
27 "git.arvados.org/arvados.git/sdk/go/arvadostest"
28 "git.arvados.org/arvados.git/sdk/go/manifest"
29 "golang.org/x/net/context"
34 // Gocheck boilerplate
35 func TestCrunchExec(t *testing.T) {
39 var _ = Suite(&TestSuite{})
41 type TestSuite struct {
42 client *arvados.Client
44 runner *ContainerRunner
45 executor *stubExecutor
47 testDispatcherKeepClient KeepTestClient
48 testContainerKeepClient KeepTestClient
51 func (s *TestSuite) SetUpTest(c *C) {
53 s.client = arvados.NewClientFromEnv()
54 s.executor = &stubExecutor{}
56 s.api = &ArvTestClient{}
57 s.runner, err = NewContainerRunner(s.client, s.api, &s.testDispatcherKeepClient, "zzzzz-zzzzz-zzzzzzzzzzzzzzz")
59 s.runner.executor = s.executor
60 s.runner.MkArvClient = func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error) {
61 return s.api, &s.testContainerKeepClient, s.client, nil
63 s.runner.RunArvMount = func(cmd []string, tok string) (*exec.Cmd, error) {
64 s.runner.ArvMountPoint = s.keepmount
67 s.keepmount = c.MkDir()
68 err = os.Mkdir(s.keepmount+"/by_id", 0755)
70 err = os.Mkdir(s.keepmount+"/by_id/"+arvadostest.DockerImage112PDH, 0755)
72 err = ioutil.WriteFile(s.keepmount+"/by_id/"+arvadostest.DockerImage112PDH+"/"+arvadostest.DockerImage112Filename, []byte("#notarealtarball"), 0644)
73 err = os.Mkdir(s.keepmount+"/by_id/"+fakeInputCollectionPDH, 0755)
75 err = ioutil.WriteFile(s.keepmount+"/by_id/"+fakeInputCollectionPDH+"/input.json", []byte(`{"input":true}`), 0644)
77 s.runner.ArvMountPoint = s.keepmount
80 type ArvTestClient struct {
83 Content []arvadosclient.Dict
86 Logs map[string]*bytes.Buffer
92 type KeepTestClient struct {
95 StorageClasses []string
98 type stubExecutor struct {
104 created containerSpec
106 waitSleep time.Duration
115 func (e *stubExecutor) ImageLoaded(imageID string) bool { return e.imageLoaded }
116 func (e *stubExecutor) LoadImage(filename string) error { e.loaded = filename; return e.loadErr }
117 func (e *stubExecutor) Create(spec containerSpec) error { e.created = spec; return e.createErr }
118 func (e *stubExecutor) Start() error { e.exit = make(chan int, 1); go e.runFunc(); return e.startErr }
119 func (e *stubExecutor) CgroupID() string { return "cgroupid" }
120 func (e *stubExecutor) Stop() error { e.stopped = true; go func() { e.exit <- -1 }(); return e.stopErr }
121 func (e *stubExecutor) Close() { e.closed = true }
122 func (e *stubExecutor) Wait(context.Context) (int, error) {
123 return <-e.exit, e.waitErr
126 const fakeInputCollectionPDH = "ffffffffaaaaaaaa88888888eeeeeeee+1234"
128 var hwManifest = ". 82ab40c24fc8df01798e57ba66795bb1+841216+Aa124ac75e5168396c73c0a18eda641a4f41791c0@569fa8c3 0:841216:9c31ee32b3d15268a0754e8edc74d4f815ee014b693bc5109058e431dd5caea7.tar\n"
129 var hwPDH = "a45557269dcb65a6b78f9ac061c0850b+120"
130 var hwImageID = "9c31ee32b3d15268a0754e8edc74d4f815ee014b693bc5109058e431dd5caea7"
132 var otherManifest = ". 68a84f561b1d1708c6baff5e019a9ab3+46+Ae5d0af96944a3690becb1decdf60cc1c937f556d@5693216f 0:46:md5sum.txt\n"
133 var otherPDH = "a3e8f74c6f101eae01fa08bfb4e49b3a+54"
135 var normalizedManifestWithSubdirs = `. 3e426d509afffb85e06c4c96a7c15e91+27+Aa124ac75e5168396c73c0abcdefgh11234567890@569fa8c3 0:9:file1_in_main.txt 9:18:file2_in_main.txt 0:27:zzzzz-8i9sb-bcdefghijkdhvnk.log.txt
136 ./subdir1 3e426d509afffb85e06c4c96a7c15e91+27+Aa124ac75e5168396cabcdefghij6419876543234@569fa8c4 0:9:file1_in_subdir1.txt 9:18:file2_in_subdir1.txt
137 ./subdir1/subdir2 3e426d509afffb85e06c4c96a7c15e91+27+Aa124ac75e5168396c73c0bcdefghijk544332211@569fa8c5 0:9:file1_in_subdir2.txt 9:18:file2_in_subdir2.txt
140 var normalizedWithSubdirsPDH = "a0def87f80dd594d4675809e83bd4f15+367"
142 var denormalizedManifestWithSubdirs = ". 3e426d509afffb85e06c4c96a7c15e91+27+Aa124ac75e5168396c73c0abcdefgh11234567890@569fa8c3 0:9:file1_in_main.txt 9:18:file2_in_main.txt 0:27:zzzzz-8i9sb-bcdefghijkdhvnk.log.txt 0:10:subdir1/file1_in_subdir1.txt 10:17:subdir1/file2_in_subdir1.txt\n"
143 var denormalizedWithSubdirsPDH = "b0def87f80dd594d4675809e83bd4f15+367"
145 var fakeAuthUUID = "zzzzz-gj3su-55pqoyepgi2glem"
146 var fakeAuthToken = "a3ltuwzqcu2u4sc0q7yhpc2w7s00fdcqecg5d6e0u3pfohmbjt"
148 func (client *ArvTestClient) Create(resourceType string,
149 parameters arvadosclient.Dict,
150 output interface{}) error {
153 defer client.Mutex.Unlock()
156 client.Content = append(client.Content, parameters)
158 if resourceType == "logs" {
159 et := parameters["log"].(arvadosclient.Dict)["event_type"].(string)
160 if client.Logs == nil {
161 client.Logs = make(map[string]*bytes.Buffer)
163 if client.Logs[et] == nil {
164 client.Logs[et] = &bytes.Buffer{}
166 client.Logs[et].Write([]byte(parameters["log"].(arvadosclient.Dict)["properties"].(map[string]string)["text"]))
169 if resourceType == "collections" && output != nil {
170 mt := parameters["collection"].(arvadosclient.Dict)["manifest_text"].(string)
171 outmap := output.(*arvados.Collection)
172 outmap.PortableDataHash = fmt.Sprintf("%x+%d", md5.Sum([]byte(mt)), len(mt))
173 outmap.UUID = fmt.Sprintf("zzzzz-4zz18-%15.15x", md5.Sum([]byte(mt)))
179 func (client *ArvTestClient) Call(method, resourceType, uuid, action string, parameters arvadosclient.Dict, output interface{}) error {
181 case method == "GET" && resourceType == "containers" && action == "auth":
182 return json.Unmarshal([]byte(`{
183 "kind": "arvados#api_client_authorization",
184 "uuid": "`+fakeAuthUUID+`",
185 "api_token": "`+fakeAuthToken+`"
187 case method == "GET" && resourceType == "containers" && action == "secret_mounts":
188 if client.secretMounts != nil {
189 return json.Unmarshal(client.secretMounts, output)
191 return json.Unmarshal([]byte(`{"secret_mounts":{}}`), output)
193 return fmt.Errorf("Not found")
197 func (client *ArvTestClient) CallRaw(method, resourceType, uuid, action string,
198 parameters arvadosclient.Dict) (reader io.ReadCloser, err error) {
200 if method == "GET" && resourceType == "nodes" && uuid == "" && action == "" {
202 "kind": "arvados#nodeList",
204 "uuid": "zzzzz-7ekkf-2z3mc76g2q73aio",
205 "hostname": "compute2",
206 "properties": {"total_cpu_cores": 16}
208 } else if method == "GET" && resourceType == "containers" && action == "" && !client.callraw {
210 j, err = json.Marshal(map[string]interface{}{
211 "items": []interface{}{client.Container},
212 "kind": "arvados#nodeList",
215 j, err = json.Marshal(client.Container)
219 "command": ["sleep", "1"],
220 "container_image": "` + arvadostest.DockerImage112PDH + `",
223 "mounts": {"/tmp": {"kind": "tmp"}, "/json": {"kind": "json", "content": {"number": 123456789123456789}}},
224 "output_path": "/tmp",
226 "runtime_constraints": {}
229 return ioutil.NopCloser(bytes.NewReader(j)), err
232 func (client *ArvTestClient) Get(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error {
233 if resourceType == "collections" {
235 output.(*arvados.Collection).ManifestText = hwManifest
236 } else if uuid == otherPDH {
237 output.(*arvados.Collection).ManifestText = otherManifest
238 } else if uuid == normalizedWithSubdirsPDH {
239 output.(*arvados.Collection).ManifestText = normalizedManifestWithSubdirs
240 } else if uuid == denormalizedWithSubdirsPDH {
241 output.(*arvados.Collection).ManifestText = denormalizedManifestWithSubdirs
244 if resourceType == "containers" {
245 (*output.(*arvados.Container)) = client.Container
250 func (client *ArvTestClient) Update(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) (err error) {
252 defer client.Mutex.Unlock()
254 client.Content = append(client.Content, parameters)
255 if resourceType == "containers" {
256 if parameters["container"].(arvadosclient.Dict)["state"] == "Running" {
257 client.WasSetRunning = true
259 } else if resourceType == "collections" {
260 mt := parameters["collection"].(arvadosclient.Dict)["manifest_text"].(string)
261 output.(*arvados.Collection).UUID = uuid
262 output.(*arvados.Collection).PortableDataHash = fmt.Sprintf("%x", md5.Sum([]byte(mt)))
267 var discoveryMap = map[string]interface{}{
268 "defaultTrashLifetime": float64(1209600),
269 "crunchLimitLogBytesPerJob": float64(67108864),
270 "crunchLogThrottleBytes": float64(65536),
271 "crunchLogThrottlePeriod": float64(60),
272 "crunchLogThrottleLines": float64(1024),
273 "crunchLogPartialLineThrottlePeriod": float64(5),
274 "crunchLogBytesPerEvent": float64(4096),
275 "crunchLogSecondsBetweenEvents": float64(1),
278 func (client *ArvTestClient) Discovery(key string) (interface{}, error) {
279 return discoveryMap[key], nil
282 // CalledWith returns the parameters from the first API call whose
283 // parameters match jpath/string. E.g., CalledWith(c, "foo.bar",
284 // "baz") returns parameters with parameters["foo"]["bar"]=="baz". If
285 // no call matches, it returns nil.
286 func (client *ArvTestClient) CalledWith(jpath string, expect interface{}) arvadosclient.Dict {
288 for _, content := range client.Content {
289 var v interface{} = content
290 for _, k := range strings.Split(jpath, ".") {
291 if dict, ok := v.(arvadosclient.Dict); !ok {
304 func (client *KeepTestClient) LocalLocator(locator string) (string, error) {
308 func (client *KeepTestClient) BlockWrite(_ context.Context, opts arvados.BlockWriteOptions) (arvados.BlockWriteResponse, error) {
309 client.Content = opts.Data
310 return arvados.BlockWriteResponse{
311 Locator: fmt.Sprintf("%x+%d", md5.Sum(opts.Data), len(opts.Data)),
315 func (client *KeepTestClient) ReadAt(string, []byte, int) (int, error) {
316 return 0, errors.New("not implemented")
319 func (client *KeepTestClient) ClearBlockCache() {
322 func (client *KeepTestClient) Close() {
326 func (client *KeepTestClient) SetStorageClasses(sc []string) {
327 client.StorageClasses = sc
330 type FileWrapper struct {
335 func (fw FileWrapper) Readdir(n int) ([]os.FileInfo, error) {
336 return nil, errors.New("not implemented")
339 func (fw FileWrapper) Seek(int64, int) (int64, error) {
340 return 0, errors.New("not implemented")
343 func (fw FileWrapper) Size() int64 {
347 func (fw FileWrapper) Stat() (os.FileInfo, error) {
348 return nil, errors.New("not implemented")
351 func (fw FileWrapper) Truncate(int64) error {
352 return errors.New("not implemented")
355 func (fw FileWrapper) Write([]byte) (int, error) {
356 return 0, errors.New("not implemented")
359 func (fw FileWrapper) Sync() error {
360 return errors.New("not implemented")
363 func (client *KeepTestClient) ManifestFileReader(m manifest.Manifest, filename string) (arvados.File, error) {
364 if filename == hwImageID+".tar" {
365 rdr := ioutil.NopCloser(&bytes.Buffer{})
367 return FileWrapper{rdr, 1321984}, nil
368 } else if filename == "/file1_in_main.txt" {
369 rdr := ioutil.NopCloser(strings.NewReader("foo"))
371 return FileWrapper{rdr, 3}, nil
376 func (s *TestSuite) TestLoadImage(c *C) {
377 s.runner.Container.ContainerImage = arvadostest.DockerImage112PDH
378 s.runner.Container.Mounts = map[string]arvados.Mount{
379 "/out": {Kind: "tmp", Writable: true},
381 s.runner.Container.OutputPath = "/out"
383 _, err := s.runner.SetupMounts()
386 imageID, err := s.runner.LoadImage()
388 c.Check(s.executor.loaded, Matches, ".*"+regexp.QuoteMeta(arvadostest.DockerImage112Filename))
389 c.Check(imageID, Equals, strings.TrimSuffix(arvadostest.DockerImage112Filename, ".tar"))
391 s.runner.Container.ContainerImage = arvadostest.DockerImage112PDH
392 s.executor.imageLoaded = false
393 s.executor.loaded = ""
394 s.executor.loadErr = errors.New("bork")
395 imageID, err = s.runner.LoadImage()
396 c.Check(err, ErrorMatches, ".*bork")
397 c.Check(s.executor.loaded, Matches, ".*"+regexp.QuoteMeta(arvadostest.DockerImage112Filename))
399 s.runner.Container.ContainerImage = fakeInputCollectionPDH
400 s.executor.imageLoaded = false
401 s.executor.loaded = ""
402 s.executor.loadErr = nil
403 imageID, err = s.runner.LoadImage()
404 c.Check(err, ErrorMatches, "image collection does not include a \\.tar image file")
405 c.Check(s.executor.loaded, Equals, "")
407 // if executor reports image is already loaded, LoadImage should not be called
408 s.runner.Container.ContainerImage = arvadostest.DockerImage112PDH
409 s.executor.imageLoaded = true
410 s.executor.loaded = ""
411 s.executor.loadErr = nil
412 imageID, err = s.runner.LoadImage()
414 c.Check(s.executor.loaded, Equals, "")
415 c.Check(imageID, Equals, strings.TrimSuffix(arvadostest.DockerImage112Filename, ".tar"))
418 type ArvErrorTestClient struct{}
420 func (ArvErrorTestClient) Create(resourceType string,
421 parameters arvadosclient.Dict,
422 output interface{}) error {
426 func (ArvErrorTestClient) Call(method, resourceType, uuid, action string, parameters arvadosclient.Dict, output interface{}) error {
427 if method == "GET" && resourceType == "containers" && action == "auth" {
430 return errors.New("ArvError")
433 func (ArvErrorTestClient) CallRaw(method, resourceType, uuid, action string,
434 parameters arvadosclient.Dict) (reader io.ReadCloser, err error) {
435 return nil, errors.New("ArvError")
438 func (ArvErrorTestClient) Get(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) error {
439 return errors.New("ArvError")
442 func (ArvErrorTestClient) Update(resourceType string, uuid string, parameters arvadosclient.Dict, output interface{}) (err error) {
446 func (ArvErrorTestClient) Discovery(key string) (interface{}, error) {
447 return discoveryMap[key], nil
450 type KeepErrorTestClient struct {
454 func (*KeepErrorTestClient) ManifestFileReader(manifest.Manifest, string) (arvados.File, error) {
455 return nil, errors.New("KeepError")
458 func (*KeepErrorTestClient) BlockWrite(context.Context, arvados.BlockWriteOptions) (arvados.BlockWriteResponse, error) {
459 return arvados.BlockWriteResponse{}, errors.New("KeepError")
462 func (*KeepErrorTestClient) LocalLocator(string) (string, error) {
463 return "", errors.New("KeepError")
466 type KeepReadErrorTestClient struct {
470 func (*KeepReadErrorTestClient) ReadAt(string, []byte, int) (int, error) {
471 return 0, errors.New("KeepError")
474 type ErrorReader struct {
478 func (ErrorReader) Read(p []byte) (n int, err error) {
479 return 0, errors.New("ErrorReader")
482 func (ErrorReader) Seek(int64, int) (int64, error) {
483 return 0, errors.New("ErrorReader")
486 func (KeepReadErrorTestClient) ManifestFileReader(m manifest.Manifest, filename string) (arvados.File, error) {
487 return ErrorReader{}, nil
490 type ClosableBuffer struct {
494 func (*ClosableBuffer) Close() error {
498 type TestLogs struct {
499 Stdout ClosableBuffer
500 Stderr ClosableBuffer
503 func (tl *TestLogs) NewTestLoggingWriter(logstr string) (io.WriteCloser, error) {
504 if logstr == "stdout" {
505 return &tl.Stdout, nil
507 if logstr == "stderr" {
508 return &tl.Stderr, nil
510 return nil, errors.New("???")
513 func dockerLog(fd byte, msg string) []byte {
515 header := make([]byte, 8+len(by))
517 header[7] = byte(len(by))
522 func (s *TestSuite) TestRunContainer(c *C) {
523 s.executor.runFunc = func() {
524 fmt.Fprintf(s.executor.created.Stdout, "Hello world\n")
529 s.runner.NewLogWriter = logs.NewTestLoggingWriter
530 s.runner.Container.ContainerImage = arvadostest.DockerImage112PDH
531 s.runner.Container.Command = []string{"./hw"}
532 s.runner.Container.OutputStorageClasses = []string{"default"}
534 imageID, err := s.runner.LoadImage()
537 err = s.runner.CreateContainer(imageID, nil)
540 err = s.runner.StartContainer()
543 err = s.runner.WaitFinish()
546 c.Check(logs.Stdout.String(), Matches, ".*Hello world\n")
547 c.Check(logs.Stderr.String(), Equals, "")
550 func (s *TestSuite) TestCommitLogs(c *C) {
551 api := &ArvTestClient{}
552 kc := &KeepTestClient{}
554 cr, err := NewContainerRunner(s.client, api, kc, "zzzzz-zzzzz-zzzzzzzzzzzzzzz")
556 cr.CrunchLog.Timestamper = (&TestTimestamper{}).Timestamp
558 cr.CrunchLog.Print("Hello world!")
559 cr.CrunchLog.Print("Goodbye")
560 cr.finalState = "Complete"
562 err = cr.CommitLogs()
565 c.Check(api.Calls, Equals, 2)
566 c.Check(api.Content[1]["ensure_unique_name"], Equals, true)
567 c.Check(api.Content[1]["collection"].(arvadosclient.Dict)["name"], Equals, "logs for zzzzz-zzzzz-zzzzzzzzzzzzzzz")
568 c.Check(api.Content[1]["collection"].(arvadosclient.Dict)["manifest_text"], Equals, ". 744b2e4553123b02fa7b452ec5c18993+123 0:123:crunch-run.txt\n")
569 c.Check(*cr.LogsPDH, Equals, "63da7bdacf08c40f604daad80c261e9a+60")
572 func (s *TestSuite) TestUpdateContainerRunning(c *C) {
573 api := &ArvTestClient{}
574 kc := &KeepTestClient{}
576 cr, err := NewContainerRunner(s.client, api, kc, "zzzzz-zzzzz-zzzzzzzzzzzzzzz")
579 err = cr.UpdateContainerRunning()
582 c.Check(api.Content[0]["container"].(arvadosclient.Dict)["state"], Equals, "Running")
585 func (s *TestSuite) TestUpdateContainerComplete(c *C) {
586 api := &ArvTestClient{}
587 kc := &KeepTestClient{}
589 cr, err := NewContainerRunner(s.client, api, kc, "zzzzz-zzzzz-zzzzzzzzzzzzzzz")
592 cr.LogsPDH = new(string)
593 *cr.LogsPDH = "d3a229d2fe3690c2c3e75a71a153c6a3+60"
595 cr.ExitCode = new(int)
597 cr.finalState = "Complete"
599 err = cr.UpdateContainerFinal()
602 c.Check(api.Content[0]["container"].(arvadosclient.Dict)["log"], Equals, *cr.LogsPDH)
603 c.Check(api.Content[0]["container"].(arvadosclient.Dict)["exit_code"], Equals, *cr.ExitCode)
604 c.Check(api.Content[0]["container"].(arvadosclient.Dict)["state"], Equals, "Complete")
607 func (s *TestSuite) TestUpdateContainerCancelled(c *C) {
608 api := &ArvTestClient{}
609 kc := &KeepTestClient{}
611 cr, err := NewContainerRunner(s.client, api, kc, "zzzzz-zzzzz-zzzzzzzzzzzzzzz")
614 cr.finalState = "Cancelled"
616 err = cr.UpdateContainerFinal()
619 c.Check(api.Content[0]["container"].(arvadosclient.Dict)["log"], IsNil)
620 c.Check(api.Content[0]["container"].(arvadosclient.Dict)["exit_code"], IsNil)
621 c.Check(api.Content[0]["container"].(arvadosclient.Dict)["state"], Equals, "Cancelled")
624 // Used by the TestFullRun*() test below to DRY up boilerplate setup to do full
625 // dress rehearsal of the Run() function, starting from a JSON container record.
626 func (s *TestSuite) fullRunHelper(c *C, record string, extraMounts []string, exitCode int, fn func()) (*ArvTestClient, *ContainerRunner, string) {
627 err := json.Unmarshal([]byte(record), &s.api.Container)
629 initialState := s.api.Container.State
632 SecretMounts map[string]arvados.Mount `json:"secret_mounts"`
634 err = json.Unmarshal([]byte(record), &sm)
636 secretMounts, err := json.Marshal(sm)
638 c.Logf("SecretMounts decoded %v json %q", sm, secretMounts)
640 s.executor.runFunc = func() {
642 s.executor.exit <- exitCode
645 s.runner.statInterval = 100 * time.Millisecond
646 s.runner.containerWatchdogInterval = time.Second
647 am := &ArvMountCmdLine{}
648 s.runner.RunArvMount = am.ArvMountTest
650 realTemp := c.MkDir()
652 s.runner.MkTempDir = func(_, prefix string) (string, error) {
654 d := fmt.Sprintf("%s/%s%d", realTemp, prefix, tempcount)
655 err := os.Mkdir(d, os.ModePerm)
656 if err != nil && strings.Contains(err.Error(), ": file exists") {
657 // Test case must have pre-populated the tempdir
662 s.runner.MkArvClient = func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error) {
663 return &ArvTestClient{secretMounts: secretMounts}, &s.testContainerKeepClient, nil, nil
666 if extraMounts != nil && len(extraMounts) > 0 {
667 err := s.runner.SetupArvMountPoint("keep")
670 for _, m := range extraMounts {
671 os.MkdirAll(s.runner.ArvMountPoint+"/by_id/"+m, os.ModePerm)
676 if s.api.CalledWith("container.state", "Complete") != nil {
679 if s.executor.loadErr == nil && s.executor.createErr == nil && initialState != "Running" {
680 c.Check(s.api.WasSetRunning, Equals, true)
681 var lastupdate arvadosclient.Dict
682 for _, content := range s.api.Content {
683 if content["container"] != nil {
684 lastupdate = content["container"].(arvadosclient.Dict)
687 if lastupdate["log"] == nil {
688 c.Errorf("no container update with non-nil log -- updates were: %v", s.api.Content)
693 for k, v := range s.api.Logs {
699 return s.api, s.runner, realTemp
702 func (s *TestSuite) TestFullRunHello(c *C) {
703 s.runner.enableMemoryLimit = true
704 s.runner.networkMode = "default"
705 s.fullRunHelper(c, `{
706 "command": ["echo", "hello world"],
707 "container_image": "`+arvadostest.DockerImage112PDH+`",
709 "environment": {"foo":"bar","baz":"waz"},
710 "mounts": {"/tmp": {"kind": "tmp"} },
711 "output_path": "/tmp",
713 "runtime_constraints": {"vcpus":1,"ram":1000000},
715 "output_storage_classes": ["default"]
717 c.Check(s.executor.created.Command, DeepEquals, []string{"echo", "hello world"})
718 c.Check(s.executor.created.Image, Equals, "sha256:d8309758b8fe2c81034ffc8a10c36460b77db7bc5e7b448c4e5b684f9d95a678")
719 c.Check(s.executor.created.Env, DeepEquals, map[string]string{"foo": "bar", "baz": "waz"})
720 c.Check(s.executor.created.VCPUs, Equals, 1)
721 c.Check(s.executor.created.RAM, Equals, int64(1000000))
722 c.Check(s.executor.created.NetworkMode, Equals, "default")
723 c.Check(s.executor.created.EnableNetwork, Equals, false)
724 fmt.Fprintln(s.executor.created.Stdout, "hello world")
727 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
728 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
729 c.Check(s.api.Logs["stdout"].String(), Matches, ".*hello world\n")
730 c.Check(s.testDispatcherKeepClient.StorageClasses, DeepEquals, []string{"default"})
731 c.Check(s.testContainerKeepClient.StorageClasses, DeepEquals, []string{"default"})
734 func (s *TestSuite) TestRunAlreadyRunning(c *C) {
736 s.fullRunHelper(c, `{
737 "command": ["sleep", "3"],
738 "container_image": "`+arvadostest.DockerImage112PDH+`",
741 "mounts": {"/tmp": {"kind": "tmp"} },
742 "output_path": "/tmp",
744 "runtime_constraints": {},
745 "scheduling_parameters":{"max_run_time": 1},
750 c.Check(s.api.CalledWith("container.state", "Cancelled"), IsNil)
751 c.Check(s.api.CalledWith("container.state", "Complete"), IsNil)
752 c.Check(ran, Equals, false)
755 func (s *TestSuite) TestRunTimeExceeded(c *C) {
756 s.fullRunHelper(c, `{
757 "command": ["sleep", "3"],
758 "container_image": "`+arvadostest.DockerImage112PDH+`",
761 "mounts": {"/tmp": {"kind": "tmp"} },
762 "output_path": "/tmp",
764 "runtime_constraints": {},
765 "scheduling_parameters":{"max_run_time": 1},
768 time.Sleep(3 * time.Second)
771 c.Check(s.api.CalledWith("container.state", "Cancelled"), NotNil)
772 c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*maximum run time exceeded.*")
775 func (s *TestSuite) TestContainerWaitFails(c *C) {
776 s.fullRunHelper(c, `{
777 "command": ["sleep", "3"],
778 "container_image": "`+arvadostest.DockerImage112PDH+`",
780 "mounts": {"/tmp": {"kind": "tmp"} },
781 "output_path": "/tmp",
785 s.executor.waitErr = errors.New("Container is not running")
788 c.Check(s.api.CalledWith("container.state", "Cancelled"), NotNil)
789 c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*Container is not running.*")
792 func (s *TestSuite) TestCrunchstat(c *C) {
793 s.fullRunHelper(c, `{
794 "command": ["sleep", "1"],
795 "container_image": "`+arvadostest.DockerImage112PDH+`",
798 "mounts": {"/tmp": {"kind": "tmp"} },
799 "output_path": "/tmp",
801 "runtime_constraints": {},
804 time.Sleep(time.Second)
807 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
808 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
810 // We didn't actually start a container, so crunchstat didn't
811 // find accounting files and therefore didn't log any stats.
812 // It should have logged a "can't find accounting files"
813 // message after one poll interval, though, so we can confirm
815 c.Assert(s.api.Logs["crunchstat"], NotNil)
816 c.Check(s.api.Logs["crunchstat"].String(), Matches, `(?ms).*cgroup stats files have not appeared after 100ms.*`)
818 // The "files never appeared" log assures us that we called
819 // (*crunchstat.Reporter)Stop(), and that we set it up with
820 // the correct container ID "abcde":
821 c.Check(s.api.Logs["crunchstat"].String(), Matches, `(?ms).*cgroup stats files never appeared for cgroupid\n`)
824 func (s *TestSuite) TestNodeInfoLog(c *C) {
825 os.Setenv("SLURMD_NODENAME", "compute2")
826 s.fullRunHelper(c, `{
827 "command": ["sleep", "1"],
828 "container_image": "`+arvadostest.DockerImage112PDH+`",
831 "mounts": {"/tmp": {"kind": "tmp"} },
832 "output_path": "/tmp",
834 "runtime_constraints": {},
838 time.Sleep(time.Second)
841 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
842 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
844 c.Assert(s.api.Logs["node"], NotNil)
845 json := s.api.Logs["node"].String()
846 c.Check(json, Matches, `(?ms).*"uuid": *"zzzzz-7ekkf-2z3mc76g2q73aio".*`)
847 c.Check(json, Matches, `(?ms).*"total_cpu_cores": *16.*`)
848 c.Check(json, Not(Matches), `(?ms).*"info":.*`)
850 c.Assert(s.api.Logs["node-info"], NotNil)
851 json = s.api.Logs["node-info"].String()
852 c.Check(json, Matches, `(?ms).*Host Information.*`)
853 c.Check(json, Matches, `(?ms).*CPU Information.*`)
854 c.Check(json, Matches, `(?ms).*Memory Information.*`)
855 c.Check(json, Matches, `(?ms).*Disk Space.*`)
856 c.Check(json, Matches, `(?ms).*Disk INodes.*`)
859 func (s *TestSuite) TestContainerRecordLog(c *C) {
860 s.fullRunHelper(c, `{
861 "command": ["sleep", "1"],
862 "container_image": "`+arvadostest.DockerImage112PDH+`",
865 "mounts": {"/tmp": {"kind": "tmp"} },
866 "output_path": "/tmp",
868 "runtime_constraints": {},
872 time.Sleep(time.Second)
875 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
876 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
878 c.Assert(s.api.Logs["container"], NotNil)
879 c.Check(s.api.Logs["container"].String(), Matches, `(?ms).*container_image.*`)
882 func (s *TestSuite) TestFullRunStderr(c *C) {
883 s.fullRunHelper(c, `{
884 "command": ["/bin/sh", "-c", "echo hello ; echo world 1>&2 ; exit 1"],
885 "container_image": "`+arvadostest.DockerImage112PDH+`",
888 "mounts": {"/tmp": {"kind": "tmp"} },
889 "output_path": "/tmp",
891 "runtime_constraints": {},
894 fmt.Fprintln(s.executor.created.Stdout, "hello")
895 fmt.Fprintln(s.executor.created.Stderr, "world")
898 final := s.api.CalledWith("container.state", "Complete")
899 c.Assert(final, NotNil)
900 c.Check(final["container"].(arvadosclient.Dict)["exit_code"], Equals, 1)
901 c.Check(final["container"].(arvadosclient.Dict)["log"], NotNil)
903 c.Check(s.api.Logs["stdout"].String(), Matches, ".*hello\n")
904 c.Check(s.api.Logs["stderr"].String(), Matches, ".*world\n")
907 func (s *TestSuite) TestFullRunDefaultCwd(c *C) {
908 s.fullRunHelper(c, `{
910 "container_image": "`+arvadostest.DockerImage112PDH+`",
913 "mounts": {"/tmp": {"kind": "tmp"} },
914 "output_path": "/tmp",
916 "runtime_constraints": {},
919 fmt.Fprintf(s.executor.created.Stdout, "workdir=%q", s.executor.created.WorkingDir)
922 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
923 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
924 c.Log(s.api.Logs["stdout"])
925 c.Check(s.api.Logs["stdout"].String(), Matches, `.*workdir=""\n`)
928 func (s *TestSuite) TestFullRunSetCwd(c *C) {
929 s.fullRunHelper(c, `{
931 "container_image": "`+arvadostest.DockerImage112PDH+`",
934 "mounts": {"/tmp": {"kind": "tmp"} },
935 "output_path": "/tmp",
937 "runtime_constraints": {},
940 fmt.Fprintln(s.executor.created.Stdout, s.executor.created.WorkingDir)
943 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
944 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
945 c.Check(s.api.Logs["stdout"].String(), Matches, ".*/bin\n")
948 func (s *TestSuite) TestFullRunSetOutputStorageClasses(c *C) {
949 s.fullRunHelper(c, `{
951 "container_image": "`+arvadostest.DockerImage112PDH+`",
954 "mounts": {"/tmp": {"kind": "tmp"} },
955 "output_path": "/tmp",
957 "runtime_constraints": {},
959 "output_storage_classes": ["foo", "bar"]
961 fmt.Fprintln(s.executor.created.Stdout, s.executor.created.WorkingDir)
964 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
965 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
966 c.Check(s.api.Logs["stdout"].String(), Matches, ".*/bin\n")
967 c.Check(s.testDispatcherKeepClient.StorageClasses, DeepEquals, []string{"foo", "bar"})
968 c.Check(s.testContainerKeepClient.StorageClasses, DeepEquals, []string{"foo", "bar"})
971 func (s *TestSuite) TestStopOnSignal(c *C) {
972 s.executor.runFunc = func() {
973 s.executor.created.Stdout.Write([]byte("foo\n"))
974 s.runner.SigChan <- syscall.SIGINT
976 s.testStopContainer(c)
979 func (s *TestSuite) TestStopOnArvMountDeath(c *C) {
980 s.executor.runFunc = func() {
981 s.executor.created.Stdout.Write([]byte("foo\n"))
982 s.runner.ArvMountExit <- nil
983 close(s.runner.ArvMountExit)
985 s.runner.ArvMountExit = make(chan error)
986 s.testStopContainer(c)
989 func (s *TestSuite) testStopContainer(c *C) {
991 "command": ["/bin/sh", "-c", "echo foo && sleep 30 && echo bar"],
992 "container_image": "` + arvadostest.DockerImage112PDH + `",
995 "mounts": {"/tmp": {"kind": "tmp"} },
996 "output_path": "/tmp",
998 "runtime_constraints": {},
1002 err := json.Unmarshal([]byte(record), &s.api.Container)
1003 c.Assert(err, IsNil)
1005 s.runner.RunArvMount = func([]string, string) (*exec.Cmd, error) { return nil, nil }
1006 s.runner.MkArvClient = func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error) {
1007 return &ArvTestClient{}, &KeepTestClient{}, nil, nil
1010 done := make(chan error)
1012 done <- s.runner.Run()
1015 case <-time.After(20 * time.Second):
1016 pprof.Lookup("goroutine").WriteTo(os.Stderr, 1)
1017 c.Fatal("timed out")
1021 for k, v := range s.api.Logs {
1023 c.Log(v.String(), "\n")
1026 c.Check(s.api.CalledWith("container.log", nil), NotNil)
1027 c.Check(s.api.CalledWith("container.state", "Cancelled"), NotNil)
1028 c.Check(s.api.Logs["stdout"].String(), Matches, "(?ms).*foo\n$")
1031 func (s *TestSuite) TestFullRunSetEnv(c *C) {
1032 s.fullRunHelper(c, `{
1033 "command": ["/bin/sh", "-c", "echo $FROBIZ"],
1034 "container_image": "`+arvadostest.DockerImage112PDH+`",
1036 "environment": {"FROBIZ": "bilbo"},
1037 "mounts": {"/tmp": {"kind": "tmp"} },
1038 "output_path": "/tmp",
1040 "runtime_constraints": {},
1042 }`, nil, 0, func() {
1043 fmt.Fprintf(s.executor.created.Stdout, "%v", s.executor.created.Env)
1046 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
1047 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
1048 c.Check(s.api.Logs["stdout"].String(), Matches, `.*map\[FROBIZ:bilbo\]\n`)
1051 type ArvMountCmdLine struct {
1056 func (am *ArvMountCmdLine) ArvMountTest(c []string, token string) (*exec.Cmd, error) {
1062 func stubCert(temp string) string {
1063 path := temp + "/ca-certificates.crt"
1064 crt, _ := os.Create(path)
1066 arvadosclient.CertFiles = []string{path}
1070 func (s *TestSuite) TestSetupMounts(c *C) {
1072 am := &ArvMountCmdLine{}
1073 cr.RunArvMount = am.ArvMountTest
1074 cr.ContainerArvClient = &ArvTestClient{}
1075 cr.ContainerKeepClient = &KeepTestClient{}
1076 cr.Container.OutputStorageClasses = []string{"default"}
1078 realTemp := c.MkDir()
1079 certTemp := c.MkDir()
1080 stubCertPath := stubCert(certTemp)
1081 cr.parentTemp = realTemp
1084 cr.MkTempDir = func(_ string, prefix string) (string, error) {
1086 d := fmt.Sprintf("%s/%s%d", realTemp, prefix, i)
1087 err := os.Mkdir(d, os.ModePerm)
1088 if err != nil && strings.Contains(err.Error(), ": file exists") {
1089 // Test case must have pre-populated the tempdir
1095 checkEmpty := func() {
1096 // Should be deleted.
1097 _, err := os.Stat(realTemp)
1098 c.Assert(os.IsNotExist(err), Equals, true)
1100 // Now recreate it for the next test.
1101 c.Assert(os.Mkdir(realTemp, 0777), IsNil)
1106 cr.ArvMountPoint = ""
1107 cr.Container.Mounts = make(map[string]arvados.Mount)
1108 cr.Container.Mounts["/tmp"] = arvados.Mount{Kind: "tmp"}
1109 cr.Container.OutputPath = "/tmp"
1110 cr.statInterval = 5 * time.Second
1111 bindmounts, err := cr.SetupMounts()
1113 c.Check(am.Cmd, DeepEquals, []string{"--foreground", "--allow-other",
1114 "--read-write", "--storage-classes", "default", "--crunchstat-interval=5",
1115 "--mount-by-pdh", "by_id", realTemp + "/keep1"})
1116 c.Check(bindmounts, DeepEquals, map[string]bindmount{"/tmp": {realTemp + "/tmp2", false}})
1117 os.RemoveAll(cr.ArvMountPoint)
1124 cr.ArvMountPoint = ""
1125 cr.Container.Mounts = make(map[string]arvados.Mount)
1126 cr.Container.Mounts["/out"] = arvados.Mount{Kind: "tmp"}
1127 cr.Container.Mounts["/tmp"] = arvados.Mount{Kind: "tmp"}
1128 cr.Container.OutputPath = "/out"
1129 cr.Container.OutputStorageClasses = []string{"foo", "bar"}
1131 bindmounts, err := cr.SetupMounts()
1133 c.Check(am.Cmd, DeepEquals, []string{"--foreground", "--allow-other",
1134 "--read-write", "--storage-classes", "foo,bar", "--crunchstat-interval=5",
1135 "--mount-by-pdh", "by_id", realTemp + "/keep1"})
1136 c.Check(bindmounts, DeepEquals, map[string]bindmount{"/out": {realTemp + "/tmp2", false}, "/tmp": {realTemp + "/tmp3", false}})
1137 os.RemoveAll(cr.ArvMountPoint)
1144 cr.ArvMountPoint = ""
1145 cr.Container.Mounts = make(map[string]arvados.Mount)
1146 cr.Container.Mounts["/tmp"] = arvados.Mount{Kind: "tmp"}
1147 cr.Container.OutputPath = "/tmp"
1148 cr.Container.RuntimeConstraints.API = true
1149 cr.Container.OutputStorageClasses = []string{"default"}
1151 bindmounts, err := cr.SetupMounts()
1153 c.Check(am.Cmd, DeepEquals, []string{"--foreground", "--allow-other",
1154 "--read-write", "--storage-classes", "default", "--crunchstat-interval=5",
1155 "--mount-by-pdh", "by_id", realTemp + "/keep1"})
1156 c.Check(bindmounts, DeepEquals, map[string]bindmount{"/tmp": {realTemp + "/tmp2", false}, "/etc/arvados/ca-certificates.crt": {stubCertPath, true}})
1157 os.RemoveAll(cr.ArvMountPoint)
1161 cr.Container.RuntimeConstraints.API = false
1166 cr.ArvMountPoint = ""
1167 cr.Container.Mounts = map[string]arvados.Mount{
1168 "/keeptmp": {Kind: "collection", Writable: true},
1170 cr.Container.OutputPath = "/keeptmp"
1172 os.MkdirAll(realTemp+"/keep1/tmp0", os.ModePerm)
1174 bindmounts, err := cr.SetupMounts()
1176 c.Check(am.Cmd, DeepEquals, []string{"--foreground", "--allow-other",
1177 "--read-write", "--storage-classes", "default", "--crunchstat-interval=5",
1178 "--mount-tmp", "tmp0", "--mount-by-pdh", "by_id", realTemp + "/keep1"})
1179 c.Check(bindmounts, DeepEquals, map[string]bindmount{"/keeptmp": {realTemp + "/keep1/tmp0", false}})
1180 os.RemoveAll(cr.ArvMountPoint)
1187 cr.ArvMountPoint = ""
1188 cr.Container.Mounts = map[string]arvados.Mount{
1189 "/keepinp": {Kind: "collection", PortableDataHash: "59389a8f9ee9d399be35462a0f92541c+53"},
1190 "/keepout": {Kind: "collection", Writable: true},
1192 cr.Container.OutputPath = "/keepout"
1194 os.MkdirAll(realTemp+"/keep1/by_id/59389a8f9ee9d399be35462a0f92541c+53", os.ModePerm)
1195 os.MkdirAll(realTemp+"/keep1/tmp0", os.ModePerm)
1197 bindmounts, err := cr.SetupMounts()
1199 c.Check(am.Cmd, DeepEquals, []string{"--foreground", "--allow-other",
1200 "--read-write", "--storage-classes", "default", "--crunchstat-interval=5",
1201 "--mount-tmp", "tmp0", "--mount-by-pdh", "by_id", realTemp + "/keep1"})
1202 c.Check(bindmounts, DeepEquals, map[string]bindmount{
1203 "/keepinp": {realTemp + "/keep1/by_id/59389a8f9ee9d399be35462a0f92541c+53", true},
1204 "/keepout": {realTemp + "/keep1/tmp0", false},
1206 os.RemoveAll(cr.ArvMountPoint)
1213 cr.ArvMountPoint = ""
1214 cr.Container.RuntimeConstraints.KeepCacheRAM = 512
1215 cr.Container.Mounts = map[string]arvados.Mount{
1216 "/keepinp": {Kind: "collection", PortableDataHash: "59389a8f9ee9d399be35462a0f92541c+53"},
1217 "/keepout": {Kind: "collection", Writable: true},
1219 cr.Container.OutputPath = "/keepout"
1221 os.MkdirAll(realTemp+"/keep1/by_id/59389a8f9ee9d399be35462a0f92541c+53", os.ModePerm)
1222 os.MkdirAll(realTemp+"/keep1/tmp0", os.ModePerm)
1224 bindmounts, err := cr.SetupMounts()
1226 c.Check(am.Cmd, DeepEquals, []string{"--foreground", "--allow-other",
1227 "--read-write", "--storage-classes", "default", "--crunchstat-interval=5",
1228 "--file-cache", "512", "--mount-tmp", "tmp0", "--mount-by-pdh", "by_id", realTemp + "/keep1"})
1229 c.Check(bindmounts, DeepEquals, map[string]bindmount{
1230 "/keepinp": {realTemp + "/keep1/by_id/59389a8f9ee9d399be35462a0f92541c+53", true},
1231 "/keepout": {realTemp + "/keep1/tmp0", false},
1233 os.RemoveAll(cr.ArvMountPoint)
1238 for _, test := range []struct {
1242 {in: "foo", out: `"foo"`},
1243 {in: nil, out: `null`},
1244 {in: map[string]int64{"foo": 123456789123456789}, out: `{"foo":123456789123456789}`},
1247 cr.ArvMountPoint = ""
1248 cr.Container.Mounts = map[string]arvados.Mount{
1249 "/mnt/test.json": {Kind: "json", Content: test.in},
1251 bindmounts, err := cr.SetupMounts()
1253 c.Check(bindmounts, DeepEquals, map[string]bindmount{
1254 "/mnt/test.json": {realTemp + "/json2/mountdata.json", true},
1256 content, err := ioutil.ReadFile(realTemp + "/json2/mountdata.json")
1258 c.Check(content, DeepEquals, []byte(test.out))
1259 os.RemoveAll(cr.ArvMountPoint)
1264 for _, test := range []struct {
1268 {in: "foo", out: `foo`},
1269 {in: nil, out: "error"},
1270 {in: map[string]int64{"foo": 123456789123456789}, out: "error"},
1273 cr.ArvMountPoint = ""
1274 cr.Container.Mounts = map[string]arvados.Mount{
1275 "/mnt/test.txt": {Kind: "text", Content: test.in},
1277 bindmounts, err := cr.SetupMounts()
1278 if test.out == "error" {
1279 c.Check(err.Error(), Equals, "content for mount \"/mnt/test.txt\" must be a string")
1282 c.Check(bindmounts, DeepEquals, map[string]bindmount{
1283 "/mnt/test.txt": {realTemp + "/text2/mountdata.text", true},
1285 content, err := ioutil.ReadFile(realTemp + "/text2/mountdata.text")
1287 c.Check(content, DeepEquals, []byte(test.out))
1289 os.RemoveAll(cr.ArvMountPoint)
1294 // Read-only mount points are allowed underneath output_dir mount point
1297 cr.ArvMountPoint = ""
1298 cr.Container.Mounts = make(map[string]arvados.Mount)
1299 cr.Container.Mounts = map[string]arvados.Mount{
1300 "/tmp": {Kind: "tmp"},
1301 "/tmp/foo": {Kind: "collection"},
1303 cr.Container.OutputPath = "/tmp"
1305 os.MkdirAll(realTemp+"/keep1/tmp0", os.ModePerm)
1307 bindmounts, err := cr.SetupMounts()
1309 c.Check(am.Cmd, DeepEquals, []string{"--foreground", "--allow-other",
1310 "--read-write", "--storage-classes", "default", "--crunchstat-interval=5",
1311 "--file-cache", "512", "--mount-tmp", "tmp0", "--mount-by-pdh", "by_id", realTemp + "/keep1"})
1312 c.Check(bindmounts, DeepEquals, map[string]bindmount{
1313 "/tmp": {realTemp + "/tmp2", false},
1314 "/tmp/foo": {realTemp + "/keep1/tmp0", true},
1316 os.RemoveAll(cr.ArvMountPoint)
1321 // Writable mount points copied to output_dir mount point
1324 cr.ArvMountPoint = ""
1325 cr.Container.Mounts = make(map[string]arvados.Mount)
1326 cr.Container.Mounts = map[string]arvados.Mount{
1327 "/tmp": {Kind: "tmp"},
1328 "/tmp/foo": {Kind: "collection",
1329 PortableDataHash: "59389a8f9ee9d399be35462a0f92541c+53",
1331 "/tmp/bar": {Kind: "collection",
1332 PortableDataHash: "59389a8f9ee9d399be35462a0f92541d+53",
1336 cr.Container.OutputPath = "/tmp"
1338 os.MkdirAll(realTemp+"/keep1/by_id/59389a8f9ee9d399be35462a0f92541c+53", os.ModePerm)
1339 os.MkdirAll(realTemp+"/keep1/by_id/59389a8f9ee9d399be35462a0f92541d+53/baz", os.ModePerm)
1341 rf, _ := os.Create(realTemp + "/keep1/by_id/59389a8f9ee9d399be35462a0f92541d+53/baz/quux")
1342 rf.Write([]byte("bar"))
1345 _, err := cr.SetupMounts()
1347 _, err = os.Stat(cr.HostOutputDir + "/foo")
1349 _, err = os.Stat(cr.HostOutputDir + "/bar/quux")
1351 os.RemoveAll(cr.ArvMountPoint)
1356 // Only mount points of kind 'collection' are allowed underneath output_dir mount point
1359 cr.ArvMountPoint = ""
1360 cr.Container.Mounts = make(map[string]arvados.Mount)
1361 cr.Container.Mounts = map[string]arvados.Mount{
1362 "/tmp": {Kind: "tmp"},
1363 "/tmp/foo": {Kind: "tmp"},
1365 cr.Container.OutputPath = "/tmp"
1367 _, err := cr.SetupMounts()
1368 c.Check(err, NotNil)
1369 c.Check(err, ErrorMatches, `only mount points of kind 'collection', 'text' or 'json' are supported underneath the output_path.*`)
1370 os.RemoveAll(cr.ArvMountPoint)
1375 // Only mount point of kind 'collection' is allowed for stdin
1378 cr.ArvMountPoint = ""
1379 cr.Container.Mounts = make(map[string]arvados.Mount)
1380 cr.Container.Mounts = map[string]arvados.Mount{
1381 "stdin": {Kind: "tmp"},
1384 _, err := cr.SetupMounts()
1385 c.Check(err, NotNil)
1386 c.Check(err, ErrorMatches, `unsupported mount kind 'tmp' for stdin.*`)
1387 os.RemoveAll(cr.ArvMountPoint)
1395 cr.ArvMountPoint = ""
1396 (*GitMountSuite)(nil).useTestGitServer(c)
1397 cr.token = arvadostest.ActiveToken
1398 cr.Container.Mounts = make(map[string]arvados.Mount)
1399 cr.Container.Mounts = map[string]arvados.Mount{
1402 UUID: arvadostest.Repository2UUID,
1403 Commit: "fd3531f42995344f36c30b79f55f27b502f3d344",
1408 UUID: arvadostest.Repository2UUID,
1409 Commit: "5ebfab0522851df01fec11ec55a6d0f4877b542e",
1413 cr.Container.OutputPath = "/tmp"
1415 bindmounts, err := cr.SetupMounts()
1418 for path, mount := range bindmounts {
1419 c.Check(mount.ReadOnly, Equals, !cr.Container.Mounts[path].Writable, Commentf("%s %#v", path, mount))
1422 data, err := ioutil.ReadFile(bindmounts["/tip"].HostPath + "/dir1/dir2/file with mode 0644")
1424 c.Check(string(data), Equals, "\000\001\002\003")
1425 _, err = ioutil.ReadFile(bindmounts["/tip"].HostPath + "/file only on testbranch")
1426 c.Check(err, FitsTypeOf, &os.PathError{})
1427 c.Check(os.IsNotExist(err), Equals, true)
1429 data, err = ioutil.ReadFile(bindmounts["/non-tip"].HostPath + "/dir1/dir2/file with mode 0644")
1431 c.Check(string(data), Equals, "\000\001\002\003")
1432 data, err = ioutil.ReadFile(bindmounts["/non-tip"].HostPath + "/file only on testbranch")
1434 c.Check(string(data), Equals, "testfile\n")
1441 func (s *TestSuite) TestStdout(c *C) {
1443 "command": ["/bin/sh", "-c", "echo $FROBIZ"],
1444 "container_image": "` + arvadostest.DockerImage112PDH + `",
1446 "environment": {"FROBIZ": "bilbo"},
1447 "mounts": {"/tmp": {"kind": "tmp"}, "stdout": {"kind": "file", "path": "/tmp/a/b/c.out"} },
1448 "output_path": "/tmp",
1450 "runtime_constraints": {},
1454 s.fullRunHelper(c, helperRecord, nil, 0, func() {
1455 fmt.Fprintln(s.executor.created.Stdout, s.executor.created.Env["FROBIZ"])
1458 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
1459 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
1460 c.Check(s.runner.ContainerArvClient.(*ArvTestClient).CalledWith("collection.manifest_text", "./a/b 307372fa8fd5c146b22ae7a45b49bc31+6 0:6:c.out\n"), NotNil)
1463 // Used by the TestStdoutWithWrongPath*()
1464 func (s *TestSuite) stdoutErrorRunHelper(c *C, record string, fn func()) (*ArvTestClient, *ContainerRunner, error) {
1465 err := json.Unmarshal([]byte(record), &s.api.Container)
1466 c.Assert(err, IsNil)
1467 s.executor.runFunc = fn
1468 s.runner.RunArvMount = (&ArvMountCmdLine{}).ArvMountTest
1469 s.runner.MkArvClient = func(token string) (IArvadosClient, IKeepClient, *arvados.Client, error) {
1470 return s.api, &KeepTestClient{}, nil, nil
1472 return s.api, s.runner, s.runner.Run()
1475 func (s *TestSuite) TestStdoutWithWrongPath(c *C) {
1476 _, _, err := s.stdoutErrorRunHelper(c, `{
1477 "mounts": {"/tmp": {"kind": "tmp"}, "stdout": {"kind": "file", "path":"/tmpa.out"} },
1478 "output_path": "/tmp",
1481 c.Check(err, ErrorMatches, ".*Stdout path does not start with OutputPath.*")
1484 func (s *TestSuite) TestStdoutWithWrongKindTmp(c *C) {
1485 _, _, err := s.stdoutErrorRunHelper(c, `{
1486 "mounts": {"/tmp": {"kind": "tmp"}, "stdout": {"kind": "tmp", "path":"/tmp/a.out"} },
1487 "output_path": "/tmp",
1490 c.Check(err, ErrorMatches, ".*unsupported mount kind 'tmp' for stdout.*")
1493 func (s *TestSuite) TestStdoutWithWrongKindCollection(c *C) {
1494 _, _, err := s.stdoutErrorRunHelper(c, `{
1495 "mounts": {"/tmp": {"kind": "tmp"}, "stdout": {"kind": "collection", "path":"/tmp/a.out"} },
1496 "output_path": "/tmp",
1499 c.Check(err, ErrorMatches, ".*unsupported mount kind 'collection' for stdout.*")
1502 func (s *TestSuite) TestFullRunWithAPI(c *C) {
1503 s.fullRunHelper(c, `{
1504 "command": ["/bin/sh", "-c", "true $ARVADOS_API_HOST"],
1505 "container_image": "`+arvadostest.DockerImage112PDH+`",
1508 "mounts": {"/tmp": {"kind": "tmp"} },
1509 "output_path": "/tmp",
1511 "runtime_constraints": {"API": true},
1513 }`, nil, 0, func() {
1514 c.Check(s.executor.created.Env["ARVADOS_API_HOST"], Equals, os.Getenv("ARVADOS_API_HOST"))
1515 s.executor.exit <- 3
1517 c.Check(s.api.CalledWith("container.exit_code", 3), NotNil)
1518 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
1521 func (s *TestSuite) TestFullRunSetOutput(c *C) {
1522 defer os.Setenv("ARVADOS_API_HOST", os.Getenv("ARVADOS_API_HOST"))
1523 os.Setenv("ARVADOS_API_HOST", "test.arvados.org")
1524 s.fullRunHelper(c, `{
1525 "command": ["/bin/sh", "-c", "echo $ARVADOS_API_HOST"],
1526 "container_image": "`+arvadostest.DockerImage112PDH+`",
1529 "mounts": {"/tmp": {"kind": "tmp"} },
1530 "output_path": "/tmp",
1532 "runtime_constraints": {"API": true},
1534 }`, nil, 0, func() {
1535 s.api.Container.Output = arvadostest.DockerImage112PDH
1538 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
1539 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
1540 c.Check(s.api.CalledWith("container.output", arvadostest.DockerImage112PDH), NotNil)
1543 func (s *TestSuite) TestStdoutWithExcludeFromOutputMountPointUnderOutputDir(c *C) {
1545 "command": ["/bin/sh", "-c", "echo $FROBIZ"],
1546 "container_image": "` + arvadostest.DockerImage112PDH + `",
1548 "environment": {"FROBIZ": "bilbo"},
1550 "/tmp": {"kind": "tmp"},
1551 "/tmp/foo": {"kind": "collection",
1552 "portable_data_hash": "a3e8f74c6f101eae01fa08bfb4e49b3a+54",
1553 "exclude_from_output": true
1555 "stdout": {"kind": "file", "path": "/tmp/a/b/c.out"}
1557 "output_path": "/tmp",
1559 "runtime_constraints": {},
1563 extraMounts := []string{"a3e8f74c6f101eae01fa08bfb4e49b3a+54"}
1565 s.fullRunHelper(c, helperRecord, extraMounts, 0, func() {
1566 fmt.Fprintln(s.executor.created.Stdout, s.executor.created.Env["FROBIZ"])
1569 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
1570 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
1571 c.Check(s.runner.ContainerArvClient.(*ArvTestClient).CalledWith("collection.manifest_text", "./a/b 307372fa8fd5c146b22ae7a45b49bc31+6 0:6:c.out\n"), NotNil)
1574 func (s *TestSuite) TestStdoutWithMultipleMountPointsUnderOutputDir(c *C) {
1576 "command": ["/bin/sh", "-c", "echo $FROBIZ"],
1577 "container_image": "` + arvadostest.DockerImage112PDH + `",
1579 "environment": {"FROBIZ": "bilbo"},
1581 "/tmp": {"kind": "tmp"},
1582 "/tmp/foo/bar": {"kind": "collection", "portable_data_hash": "a0def87f80dd594d4675809e83bd4f15+367", "path":"/file2_in_main.txt"},
1583 "/tmp/foo/sub1": {"kind": "collection", "portable_data_hash": "a0def87f80dd594d4675809e83bd4f15+367", "path":"/subdir1"},
1584 "/tmp/foo/sub1file2": {"kind": "collection", "portable_data_hash": "a0def87f80dd594d4675809e83bd4f15+367", "path":"/subdir1/file2_in_subdir1.txt"},
1585 "/tmp/foo/baz/sub2file2": {"kind": "collection", "portable_data_hash": "a0def87f80dd594d4675809e83bd4f15+367", "path":"/subdir1/subdir2/file2_in_subdir2.txt"},
1586 "stdout": {"kind": "file", "path": "/tmp/a/b/c.out"}
1588 "output_path": "/tmp",
1590 "runtime_constraints": {},
1594 extraMounts := []string{
1595 "a0def87f80dd594d4675809e83bd4f15+367/file2_in_main.txt",
1596 "a0def87f80dd594d4675809e83bd4f15+367/subdir1/file2_in_subdir1.txt",
1597 "a0def87f80dd594d4675809e83bd4f15+367/subdir1/subdir2/file2_in_subdir2.txt",
1600 api, _, realtemp := s.fullRunHelper(c, helperRecord, extraMounts, 0, func() {
1601 fmt.Fprintln(s.executor.created.Stdout, s.executor.created.Env["FROBIZ"])
1604 c.Check(s.executor.created.BindMounts, DeepEquals, map[string]bindmount{
1605 "/tmp": {realtemp + "/tmp1", false},
1606 "/tmp/foo/bar": {s.keepmount + "/by_id/a0def87f80dd594d4675809e83bd4f15+367/file2_in_main.txt", true},
1607 "/tmp/foo/baz/sub2file2": {s.keepmount + "/by_id/a0def87f80dd594d4675809e83bd4f15+367/subdir1/subdir2/file2_in_subdir2.txt", true},
1608 "/tmp/foo/sub1": {s.keepmount + "/by_id/a0def87f80dd594d4675809e83bd4f15+367/subdir1", true},
1609 "/tmp/foo/sub1file2": {s.keepmount + "/by_id/a0def87f80dd594d4675809e83bd4f15+367/subdir1/file2_in_subdir1.txt", true},
1612 c.Check(api.CalledWith("container.exit_code", 0), NotNil)
1613 c.Check(api.CalledWith("container.state", "Complete"), NotNil)
1614 for _, v := range api.Content {
1615 if v["collection"] != nil {
1616 c.Check(v["ensure_unique_name"], Equals, true)
1617 collection := v["collection"].(arvadosclient.Dict)
1618 if strings.Index(collection["name"].(string), "output") == 0 {
1619 manifest := collection["manifest_text"].(string)
1621 c.Check(manifest, Equals, `./a/b 307372fa8fd5c146b22ae7a45b49bc31+6 0:6:c.out
1622 ./foo 3e426d509afffb85e06c4c96a7c15e91+27+Aa124ac75e5168396c73c0abcdefgh11234567890@569fa8c3 3e426d509afffb85e06c4c96a7c15e91+27+Aa124ac75e5168396cabcdefghij6419876543234@569fa8c4 9:18:bar 36:18:sub1file2
1623 ./foo/baz 3e426d509afffb85e06c4c96a7c15e91+27+Aa124ac75e5168396c73c0bcdefghijk544332211@569fa8c5 9:18:sub2file2
1624 ./foo/sub1 3e426d509afffb85e06c4c96a7c15e91+27+Aa124ac75e5168396cabcdefghij6419876543234@569fa8c4 0:9:file1_in_subdir1.txt 9:18:file2_in_subdir1.txt
1625 ./foo/sub1/subdir2 3e426d509afffb85e06c4c96a7c15e91+27+Aa124ac75e5168396c73c0bcdefghijk544332211@569fa8c5 0:9:file1_in_subdir2.txt 9:18:file2_in_subdir2.txt
1632 func (s *TestSuite) TestStdoutWithMountPointsUnderOutputDirDenormalizedManifest(c *C) {
1634 "command": ["/bin/sh", "-c", "echo $FROBIZ"],
1635 "container_image": "` + arvadostest.DockerImage112PDH + `",
1637 "environment": {"FROBIZ": "bilbo"},
1639 "/tmp": {"kind": "tmp"},
1640 "/tmp/foo/bar": {"kind": "collection", "portable_data_hash": "b0def87f80dd594d4675809e83bd4f15+367", "path": "/subdir1/file2_in_subdir1.txt"},
1641 "stdout": {"kind": "file", "path": "/tmp/a/b/c.out"}
1643 "output_path": "/tmp",
1645 "runtime_constraints": {},
1649 extraMounts := []string{
1650 "b0def87f80dd594d4675809e83bd4f15+367/subdir1/file2_in_subdir1.txt",
1653 s.fullRunHelper(c, helperRecord, extraMounts, 0, func() {
1654 fmt.Fprintln(s.executor.created.Stdout, s.executor.created.Env["FROBIZ"])
1657 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
1658 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
1659 for _, v := range s.api.Content {
1660 if v["collection"] != nil {
1661 collection := v["collection"].(arvadosclient.Dict)
1662 if strings.Index(collection["name"].(string), "output") == 0 {
1663 manifest := collection["manifest_text"].(string)
1665 c.Check(manifest, Equals, `./a/b 307372fa8fd5c146b22ae7a45b49bc31+6 0:6:c.out
1666 ./foo 3e426d509afffb85e06c4c96a7c15e91+27+Aa124ac75e5168396c73c0abcdefgh11234567890@569fa8c3 10:17:bar
1673 func (s *TestSuite) TestOutputError(c *C) {
1675 "command": ["/bin/sh", "-c", "echo $FROBIZ"],
1676 "container_image": "` + arvadostest.DockerImage112PDH + `",
1678 "environment": {"FROBIZ": "bilbo"},
1680 "/tmp": {"kind": "tmp"}
1682 "output_path": "/tmp",
1684 "runtime_constraints": {},
1687 s.fullRunHelper(c, helperRecord, nil, 0, func() {
1688 os.Symlink("/etc/hosts", s.runner.HostOutputDir+"/baz")
1691 c.Check(s.api.CalledWith("container.state", "Cancelled"), NotNil)
1694 func (s *TestSuite) TestStdinCollectionMountPoint(c *C) {
1696 "command": ["/bin/sh", "-c", "echo $FROBIZ"],
1697 "container_image": "` + arvadostest.DockerImage112PDH + `",
1699 "environment": {"FROBIZ": "bilbo"},
1701 "/tmp": {"kind": "tmp"},
1702 "stdin": {"kind": "collection", "portable_data_hash": "b0def87f80dd594d4675809e83bd4f15+367", "path": "/file1_in_main.txt"},
1703 "stdout": {"kind": "file", "path": "/tmp/a/b/c.out"}
1705 "output_path": "/tmp",
1707 "runtime_constraints": {},
1711 extraMounts := []string{
1712 "b0def87f80dd594d4675809e83bd4f15+367/file1_in_main.txt",
1715 api, _, _ := s.fullRunHelper(c, helperRecord, extraMounts, 0, func() {
1716 fmt.Fprintln(s.executor.created.Stdout, s.executor.created.Env["FROBIZ"])
1719 c.Check(api.CalledWith("container.exit_code", 0), NotNil)
1720 c.Check(api.CalledWith("container.state", "Complete"), NotNil)
1721 for _, v := range api.Content {
1722 if v["collection"] != nil {
1723 collection := v["collection"].(arvadosclient.Dict)
1724 if strings.Index(collection["name"].(string), "output") == 0 {
1725 manifest := collection["manifest_text"].(string)
1726 c.Check(manifest, Equals, `./a/b 307372fa8fd5c146b22ae7a45b49bc31+6 0:6:c.out
1733 func (s *TestSuite) TestStdinJsonMountPoint(c *C) {
1735 "command": ["/bin/sh", "-c", "echo $FROBIZ"],
1736 "container_image": "` + arvadostest.DockerImage112PDH + `",
1738 "environment": {"FROBIZ": "bilbo"},
1740 "/tmp": {"kind": "tmp"},
1741 "stdin": {"kind": "json", "content": "foo"},
1742 "stdout": {"kind": "file", "path": "/tmp/a/b/c.out"}
1744 "output_path": "/tmp",
1746 "runtime_constraints": {},
1750 api, _, _ := s.fullRunHelper(c, helperRecord, nil, 0, func() {
1751 fmt.Fprintln(s.executor.created.Stdout, s.executor.created.Env["FROBIZ"])
1754 c.Check(api.CalledWith("container.exit_code", 0), NotNil)
1755 c.Check(api.CalledWith("container.state", "Complete"), NotNil)
1756 for _, v := range api.Content {
1757 if v["collection"] != nil {
1758 collection := v["collection"].(arvadosclient.Dict)
1759 if strings.Index(collection["name"].(string), "output") == 0 {
1760 manifest := collection["manifest_text"].(string)
1761 c.Check(manifest, Equals, `./a/b 307372fa8fd5c146b22ae7a45b49bc31+6 0:6:c.out
1768 func (s *TestSuite) TestStderrMount(c *C) {
1769 api, cr, _ := s.fullRunHelper(c, `{
1770 "command": ["/bin/sh", "-c", "echo hello;exit 1"],
1771 "container_image": "`+arvadostest.DockerImage112PDH+`",
1774 "mounts": {"/tmp": {"kind": "tmp"},
1775 "stdout": {"kind": "file", "path": "/tmp/a/out.txt"},
1776 "stderr": {"kind": "file", "path": "/tmp/b/err.txt"}},
1777 "output_path": "/tmp",
1779 "runtime_constraints": {},
1781 }`, nil, 1, func() {
1782 fmt.Fprintln(s.executor.created.Stdout, "hello")
1783 fmt.Fprintln(s.executor.created.Stderr, "oops")
1786 final := api.CalledWith("container.state", "Complete")
1787 c.Assert(final, NotNil)
1788 c.Check(final["container"].(arvadosclient.Dict)["exit_code"], Equals, 1)
1789 c.Check(final["container"].(arvadosclient.Dict)["log"], NotNil)
1791 c.Check(cr.ContainerArvClient.(*ArvTestClient).CalledWith("collection.manifest_text", "./a b1946ac92492d2347c6235b4d2611184+6 0:6:out.txt\n./b 38af5c54926b620264ab1501150cf189+5 0:5:err.txt\n"), NotNil)
1794 func (s *TestSuite) TestNumberRoundTrip(c *C) {
1795 s.api.callraw = true
1796 err := s.runner.fetchContainerRecord()
1797 c.Assert(err, IsNil)
1798 jsondata, err := json.Marshal(s.runner.Container.Mounts["/json"].Content)
1799 c.Logf("%#v", s.runner.Container)
1801 c.Check(string(jsondata), Equals, `{"number":123456789123456789}`)
1804 func (s *TestSuite) TestFullBrokenDocker(c *C) {
1806 for _, setup := range []func(){
1808 c.Log("// waitErr = ocl runtime error")
1809 s.executor.waitErr = errors.New(`Error response from daemon: oci runtime error: container_linux.go:247: starting container process caused "process_linux.go:359: container init caused \"rootfs_linux.go:54: mounting \\\"/tmp/keep453790790/by_id/99999999999999999999999999999999+99999/myGenome\\\" to rootfs \\\"/tmp/docker/overlay2/9999999999999999999999999999999999999999999999999999999999999999/merged\\\" at \\\"/tmp/docker/overlay2/9999999999999999999999999999999999999999999999999999999999999999/merged/keep/99999999999999999999999999999999+99999/myGenome\\\" caused \\\"no such file or directory\\\"\""`)
1810 nextState = "Cancelled"
1813 c.Log("// loadErr = cannot connect")
1814 s.executor.loadErr = errors.New("Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?")
1815 *brokenNodeHook = c.MkDir() + "/broken-node-hook"
1816 err := ioutil.WriteFile(*brokenNodeHook, []byte("#!/bin/sh\nexec echo killme\n"), 0700)
1817 c.Assert(err, IsNil)
1818 nextState = "Queued"
1823 s.fullRunHelper(c, `{
1824 "command": ["echo", "hello world"],
1825 "container_image": "`+arvadostest.DockerImage112PDH+`",
1828 "mounts": {"/tmp": {"kind": "tmp"} },
1829 "output_path": "/tmp",
1831 "runtime_constraints": {},
1833 }`, nil, 0, func() {})
1834 c.Check(s.api.CalledWith("container.state", nextState), NotNil)
1835 c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*unable to run containers.*")
1836 if *brokenNodeHook != "" {
1837 c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*Running broken node hook.*")
1838 c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*killme.*")
1839 c.Check(s.api.Logs["crunch-run"].String(), Not(Matches), "(?ms).*Writing /var/lock/crunch-run-broken to mark node as broken.*")
1841 c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*Writing /var/lock/crunch-run-broken to mark node as broken.*")
1846 func (s *TestSuite) TestBadCommand(c *C) {
1847 for _, startError := range []string{
1848 `panic: standard_init_linux.go:175: exec user process caused "no such file or directory"`,
1849 `Error response from daemon: Cannot start container 41f26cbc43bcc1280f4323efb1830a394ba8660c9d1c2b564ba42bf7f7694845: [8] System error: no such file or directory`,
1850 `Error response from daemon: Cannot start container 58099cd76c834f3dc2a4fb76c8028f049ae6d4fdf0ec373e1f2cfea030670c2d: [8] System error: exec: "foobar": executable file not found in $PATH`,
1853 s.executor.startErr = errors.New(startError)
1854 s.fullRunHelper(c, `{
1855 "command": ["echo", "hello world"],
1856 "container_image": "`+arvadostest.DockerImage112PDH+`",
1859 "mounts": {"/tmp": {"kind": "tmp"} },
1860 "output_path": "/tmp",
1862 "runtime_constraints": {},
1864 }`, nil, 0, func() {})
1865 c.Check(s.api.CalledWith("container.state", "Cancelled"), NotNil)
1866 c.Check(s.api.Logs["crunch-run"].String(), Matches, "(?ms).*Possible causes:.*is missing.*")
1870 func (s *TestSuite) TestSecretTextMountPoint(c *C) {
1872 "command": ["true"],
1873 "container_image": "` + arvadostest.DockerImage112PDH + `",
1876 "/tmp": {"kind": "tmp"},
1877 "/tmp/secret.conf": {"kind": "text", "content": "mypassword"}
1881 "output_path": "/tmp",
1883 "runtime_constraints": {},
1887 s.fullRunHelper(c, helperRecord, nil, 0, func() {
1888 content, err := ioutil.ReadFile(s.runner.HostOutputDir + "/secret.conf")
1890 c.Check(string(content), Equals, "mypassword")
1893 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
1894 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
1895 c.Check(s.runner.ContainerArvClient.(*ArvTestClient).CalledWith("collection.manifest_text", ". 34819d7beeabb9260a5c854bc85b3e44+10 0:10:secret.conf\n"), NotNil)
1896 c.Check(s.runner.ContainerArvClient.(*ArvTestClient).CalledWith("collection.manifest_text", ""), IsNil)
1898 // under secret mounts, not captured in output
1900 "command": ["true"],
1901 "container_image": "` + arvadostest.DockerImage112PDH + `",
1904 "/tmp": {"kind": "tmp"}
1907 "/tmp/secret.conf": {"kind": "text", "content": "mypassword"}
1909 "output_path": "/tmp",
1911 "runtime_constraints": {},
1916 s.fullRunHelper(c, helperRecord, nil, 0, func() {
1917 content, err := ioutil.ReadFile(s.runner.HostOutputDir + "/secret.conf")
1919 c.Check(string(content), Equals, "mypassword")
1922 c.Check(s.api.CalledWith("container.exit_code", 0), NotNil)
1923 c.Check(s.api.CalledWith("container.state", "Complete"), NotNil)
1924 c.Check(s.runner.ContainerArvClient.(*ArvTestClient).CalledWith("collection.manifest_text", ". 34819d7beeabb9260a5c854bc85b3e44+10 0:10:secret.conf\n"), IsNil)
1925 c.Check(s.runner.ContainerArvClient.(*ArvTestClient).CalledWith("collection.manifest_text", ""), NotNil)
1928 type FakeProcess struct {
1932 func (fp FakeProcess) CmdlineSlice() ([]string, error) {
1933 return fp.cmdLine, nil