package main import ( "fmt" "path/filepath" "syscall" "time" "github.com/docker/containerd/api/grpc/types" "github.com/docker/docker/pkg/integration/checker" "github.com/go-check/check" ) func (cs *ContainerdSuite) TestStartBusyboxLsSlash(t *check.C) { expectedOutput := `bin dev etc home lib lib64 linuxrc media mnt opt proc root run sbin sys tmp usr var ` if err := CreateBusyboxBundle("busybox-ls-slash", []string{"ls", "/"}); err != nil { t.Fatal(err) } c, err := cs.RunContainer("myls", "busybox-ls-slash") if err != nil { t.Fatal(err) } t.Assert(c.io.stdoutBuffer.String(), checker.Equals, expectedOutput) } func (cs *ContainerdSuite) TestStartBusyboxNoSuchFile(t *check.C) { expectedOutput := `oci runtime error: exec: \"NoSuchFile\": executable file not found in $PATH` if err := CreateBusyboxBundle("busybox-no-such-file", []string{"NoSuchFile"}); err != nil { t.Fatal(err) } _, err := cs.RunContainer("NoSuchFile", "busybox-no-such-file") t.Assert(err.Error(), checker.Contains, expectedOutput) } func (cs *ContainerdSuite) TestStartBusyboxTop(t *check.C) { bundleName := "busybox-top" if err := CreateBusyboxBundle(bundleName, []string{"top"}); err != nil { t.Fatal(err) } _, err := cs.StartContainer("top", bundleName) t.Assert(err, checker.Equals, nil) containers, err := cs.ListRunningContainers() if err != nil { t.Fatal(err) } t.Assert(len(containers), checker.Equals, 1) t.Assert(containers[0].Id, checker.Equals, "top") t.Assert(containers[0].Status, checker.Equals, "running") t.Assert(containers[0].BundlePath, check.Equals, filepath.Join(cs.cwd, GetBundle(bundleName).Path)) } func (cs *ContainerdSuite) TestStartBusyboxLsEvents(t *check.C) { if err := CreateBusyboxBundle("busybox-ls", []string{"ls"}); err != nil { t.Fatal(err) } containerId := "ls-events" c, err := cs.StartContainer(containerId, "busybox-ls") if err != nil { t.Fatal(err) } for _, evt := range []types.Event{ { Type: "start-container", Id: containerId, Status: 0, Pid: "", }, { Type: "exit", Id: containerId, Status: 0, Pid: "init", }, } { ch := c.GetEventsChannel() select { case e := <-ch: evt.Timestamp = e.Timestamp t.Assert(*e, checker.Equals, evt) case <-time.After(2 * time.Second): t.Fatal("Container took more than 2 seconds to terminate") } } } func (cs *ContainerdSuite) TestStartBusyboxSleep(t *check.C) { if err := CreateBusyboxBundle("busybox-sleep-5", []string{"sleep", "5"}); err != nil { t.Fatal(err) } ch := make(chan interface{}) filter := func(e *types.Event) { if e.Type == "exit" && e.Pid == "init" { ch <- nil } } start := time.Now() _, err := cs.StartContainerWithEventFilter("sleep5", "busybox-sleep-5", filter) if err != nil { t.Fatal(err) } // We add a generous 20% marge of error select { case <-ch: t.Assert(uint64(time.Now().Sub(start)), checker.LessOrEqualThan, uint64(6*time.Second)) case <-time.After(6 * time.Second): t.Fatal("Container took more than 6 seconds to exit") } } func (cs *ContainerdSuite) TestStartBusyboxTopKill(t *check.C) { bundleName := "busybox-top" if err := CreateBusyboxBundle(bundleName, []string{"top"}); err != nil { t.Fatal(err) } containerId := "top" c, err := cs.StartContainer("top", bundleName) if err != nil { t.Fatal(err) } <-time.After(1 * time.Second) err = cs.KillContainer(containerId) if err != nil { t.Fatal(err) } for _, evt := range []types.Event{ { Type: "start-container", Id: containerId, Status: 0, Pid: "", }, { Type: "exit", Id: containerId, Status: 128 + uint32(syscall.SIGKILL), Pid: "init", }, } { ch := c.GetEventsChannel() select { case e := <-ch: evt.Timestamp = e.Timestamp t.Assert(*e, checker.Equals, evt) case <-time.After(2 * time.Second): t.Fatal("Container took more than 2 seconds to terminate") } } } func (cs *ContainerdSuite) TestStartBusyboxTopSignalSigterm(t *check.C) { bundleName := "busybox-top" if err := CreateBusyboxBundle(bundleName, []string{"top"}); err != nil { t.Fatal(err) } containerId := "top" c, err := cs.StartContainer("top", bundleName) if err != nil { t.Fatal(err) } <-time.After(1 * time.Second) err = cs.SignalContainer(containerId, uint32(syscall.SIGTERM)) if err != nil { t.Fatal(err) } for _, evt := range []types.Event{ { Type: "start-container", Id: containerId, Status: 0, Pid: "", }, { Type: "exit", Id: containerId, Status: 128 + uint32(syscall.SIGTERM), Pid: "init", }, } { ch := c.GetEventsChannel() select { case e := <-ch: evt.Timestamp = e.Timestamp t.Assert(*e, checker.Equals, evt) case <-time.After(2 * time.Second): t.Fatal("Container took more than 2 seconds to terminate") } } } func (cs *ContainerdSuite) TestStartBusyboxTrapUSR1(t *check.C) { if err := CreateBusyboxBundle("busybox-trap-usr1", []string{"sh", "-c", "trap 'echo -n booh!' SIGUSR1 ; sleep 100 & wait"}); err != nil { t.Fatal(err) } containerId := "trap-usr1" c, err := cs.StartContainer(containerId, "busybox-trap-usr1") if err != nil { t.Fatal(err) } if err := cs.SignalContainer(containerId, uint32(syscall.SIGUSR1)); err != nil { t.Fatal(err) } for { e := c.GetNextEvent() if e.Type == "exit" && e.Pid == "init" { break } } t.Assert(c.io.stdoutBuffer.String(), checker.Equals, "booh!") } func (cs *ContainerdSuite) TestStartBusyboxTopPauseResume(t *check.C) { bundleName := "busybox-top" if err := CreateBusyboxBundle(bundleName, []string{"top"}); err != nil { t.Fatal(err) } containerId := "top" c, err := cs.StartContainer(containerId, bundleName) if err != nil { t.Fatal(err) } if err := cs.PauseContainer(containerId); err != nil { t.Fatal(err) } if err := cs.ResumeContainer(containerId); err != nil { t.Fatal(err) } for _, evt := range []types.Event{ { Type: "start-container", Id: containerId, Status: 0, Pid: "", }, { Type: "pause", Id: containerId, Status: 0, Pid: "", }, { Type: "resume", Id: containerId, Status: 0, Pid: "", }, } { ch := c.GetEventsChannel() select { case e := <-ch: evt.Timestamp = e.Timestamp t.Assert(*e, checker.Equals, evt) case <-time.After(2 * time.Second): t.Fatal("Container took more than 2 seconds to terminate") } } // check that status is running containers, err := cs.ListRunningContainers() if err != nil { t.Fatal(err) } t.Assert(len(containers), checker.Equals, 1) t.Assert(containers[0].Id, checker.Equals, "top") t.Assert(containers[0].Status, checker.Equals, "running") } func (cs *ContainerdSuite) TestRestart(t *check.C) { bundleName := "busybox-top" if err := CreateBusyboxBundle(bundleName, []string{"top"}); err != nil { t.Fatal(err) } totalCtr := 10 for i := 0; i < totalCtr; i++ { containerId := fmt.Sprintf("top%d", i) c, err := cs.StartContainer(containerId, bundleName) if err != nil { t.Fatal(err) } e := c.GetNextEvent() t.Assert(*e, checker.Equals, types.Event{ Type: "start-container", Id: containerId, Status: 0, Pid: "", Timestamp: e.Timestamp, }) } // restart daemon gracefully (SIGINT) cs.RestartDaemon(false) // check that status is running containers, err := cs.ListRunningContainers() if err != nil { t.Fatal(err) } sortContainers(containers) t.Assert(len(containers), checker.Equals, totalCtr) for i := 0; i < totalCtr; i++ { t.Assert(containers[i].Id, checker.Equals, fmt.Sprintf("top%d", i)) t.Assert(containers[i].Status, checker.Equals, "running") } // Now kill daemon (SIGKILL) cs.StopDaemon(true) // Sleep a second to allow thevent e timestamp to change since // it's second based <-time.After(3 * time.Second) // Kill a couple of containers killedCtr := map[int]bool{4: true, 2: true} var f func(*types.Event) deathChans := make([]chan error, len(killedCtr)) deathChansIdx := 0 for i, _ := range killedCtr { ch := make(chan error, 1) deathChans[deathChansIdx] = ch deathChansIdx++ syscall.Kill(int(containers[i].Pids[0]), syscall.SIGKILL) // Filter to be notified of their death containerId := fmt.Sprintf("top%d", i) f = func(event *types.Event) { expectedEvent := types.Event{ Type: "exit", Id: containerId, Status: 137, Pid: "init", } expectedEvent.Timestamp = event.Timestamp if ok := t.Check(*event, checker.Equals, expectedEvent); !ok { ch <- fmt.Errorf("Unexpected event: %#v", *event) } else { ch <- nil } } cs.SetContainerEventFilter(containerId, f) } cs.RestartDaemon(true) // Ensure we got our events for i, _ := range deathChans { done := false for done == false { select { case err := <-deathChans[i]: t.Assert(err, checker.Equals, nil) done = true case <-time.After(3 * time.Second): t.Fatal("Exit event for container not received after 3 seconds") } } } // check that status is running containers, err = cs.ListRunningContainers() if err != nil { t.Fatal(err) } sortContainers(containers) t.Assert(len(containers), checker.Equals, totalCtr-len(killedCtr)) idShift := 0 for i := 0; i < totalCtr-len(killedCtr); i++ { if _, ok := killedCtr[i+idShift]; ok { idShift++ } t.Assert(containers[i].Id, checker.Equals, fmt.Sprintf("top%d", i+idShift)) t.Assert(containers[i].Status, checker.Equals, "running") } }