2016-03-21 19:06:39 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
2016-04-21 01:08:36 +00:00
|
|
|
"strings"
|
2016-03-21 19:06:39 +00:00
|
|
|
"sync"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"google.golang.org/grpc/grpclog"
|
2016-09-09 20:14:47 +00:00
|
|
|
"google.golang.org/grpc/health/grpc_health_v1"
|
2016-03-21 19:06:39 +00:00
|
|
|
|
|
|
|
"github.com/docker/containerd/api/grpc/types"
|
2016-05-27 17:35:42 +00:00
|
|
|
utils "github.com/docker/containerd/testutils"
|
2016-03-21 19:06:39 +00:00
|
|
|
"github.com/go-check/check"
|
2016-06-30 21:09:40 +00:00
|
|
|
"github.com/golang/protobuf/ptypes/timestamp"
|
2016-03-21 19:06:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func Test(t *testing.T) {
|
|
|
|
check.TestingT(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-06-30 21:09:40 +00:00
|
|
|
check.Suite(&ContainerdSuite{})
|
2016-03-21 19:06:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ContainerdSuite struct {
|
|
|
|
cwd string
|
|
|
|
outputDir string
|
2016-04-21 01:08:36 +00:00
|
|
|
stateDir string
|
|
|
|
grpcSocket string
|
2016-03-21 19:06:39 +00:00
|
|
|
logFile *os.File
|
|
|
|
cd *exec.Cmd
|
|
|
|
syncChild chan error
|
|
|
|
grpcClient types.APIClient
|
|
|
|
eventFiltersMutex sync.Mutex
|
|
|
|
eventFilters map[string]func(event *types.Event)
|
2016-06-30 21:09:40 +00:00
|
|
|
lastEventTs *timestamp.Timestamp
|
2016-03-21 19:06:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// getClient returns a connection to the Suite containerd
|
|
|
|
func (cs *ContainerdSuite) getClient(socket string) error {
|
2016-04-01 13:29:27 +00:00
|
|
|
// Parse proto://address form addresses.
|
|
|
|
bindParts := strings.SplitN(socket, "://", 2)
|
|
|
|
if len(bindParts) != 2 {
|
|
|
|
return fmt.Errorf("bad bind address format %s, expected proto://address", socket)
|
|
|
|
}
|
|
|
|
|
2016-03-21 19:06:39 +00:00
|
|
|
// reset the logger for grpc to log to dev/null so that it does not mess with our stdio
|
|
|
|
grpclog.SetLogger(log.New(ioutil.Discard, "", log.LstdFlags))
|
|
|
|
dialOpts := []grpc.DialOption{grpc.WithInsecure()}
|
|
|
|
dialOpts = append(dialOpts,
|
|
|
|
grpc.WithDialer(func(addr string, timeout time.Duration) (net.Conn, error) {
|
2016-04-01 13:29:27 +00:00
|
|
|
return net.DialTimeout(bindParts[0], bindParts[1], timeout)
|
2016-09-09 20:14:47 +00:00
|
|
|
}),
|
|
|
|
grpc.WithBlock(),
|
|
|
|
grpc.WithTimeout(5*time.Second),
|
|
|
|
)
|
2016-03-21 19:06:39 +00:00
|
|
|
conn, err := grpc.Dial(socket, dialOpts...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-09-09 20:14:47 +00:00
|
|
|
healthClient := grpc_health_v1.NewHealthClient(conn)
|
|
|
|
if _, err := healthClient.Check(context.Background(), &grpc_health_v1.HealthCheckRequest{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-03-21 19:06:39 +00:00
|
|
|
cs.grpcClient = types.NewAPIClient(conn)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContainerdEventsHandler will process all events coming from
|
|
|
|
// containerd. If a filter as been register for a given container id
|
|
|
|
// via `SetContainerEventFilter()`, it will be invoked every time an
|
|
|
|
// event for that id is received
|
|
|
|
func (cs *ContainerdSuite) ContainerdEventsHandler(events types.API_EventsClient) {
|
|
|
|
for {
|
|
|
|
e, err := events.Recv()
|
|
|
|
if err != nil {
|
2016-04-21 01:08:36 +00:00
|
|
|
// If daemon died or exited, return
|
|
|
|
if strings.Contains(err.Error(), "transport is closing") {
|
|
|
|
break
|
|
|
|
}
|
2016-03-21 19:06:39 +00:00
|
|
|
time.Sleep(1 * time.Second)
|
2016-04-21 01:08:36 +00:00
|
|
|
events, _ = cs.grpcClient.Events(context.Background(), &types.EventsRequest{Timestamp: cs.lastEventTs})
|
2016-03-21 19:06:39 +00:00
|
|
|
continue
|
|
|
|
}
|
2016-04-21 01:08:36 +00:00
|
|
|
cs.lastEventTs = e.Timestamp
|
2016-03-21 19:06:39 +00:00
|
|
|
cs.eventFiltersMutex.Lock()
|
|
|
|
if f, ok := cs.eventFilters[e.Id]; ok {
|
|
|
|
f(e)
|
|
|
|
if e.Type == "exit" && e.Pid == "init" {
|
|
|
|
delete(cs.eventFilters, e.Id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cs.eventFiltersMutex.Unlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-21 01:08:36 +00:00
|
|
|
func (cs *ContainerdSuite) StopDaemon(kill bool) {
|
|
|
|
if cs.cd == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if kill {
|
|
|
|
cs.cd.Process.Kill()
|
|
|
|
<-cs.syncChild
|
|
|
|
cs.cd = nil
|
|
|
|
} else {
|
|
|
|
// Terminate gently if possible
|
|
|
|
cs.cd.Process.Signal(os.Interrupt)
|
|
|
|
|
|
|
|
done := false
|
|
|
|
for done == false {
|
|
|
|
select {
|
|
|
|
case err := <-cs.syncChild:
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("master containerd did not exit cleanly: %v\n", err)
|
|
|
|
}
|
|
|
|
done = true
|
|
|
|
case <-time.After(3 * time.Second):
|
|
|
|
fmt.Println("Timeout while waiting for containerd to exit, killing it!")
|
|
|
|
cs.cd.Process.Kill()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cs *ContainerdSuite) RestartDaemon(kill bool) error {
|
|
|
|
cs.StopDaemon(kill)
|
|
|
|
|
|
|
|
cd := exec.Command("containerd", "--debug",
|
|
|
|
"--state-dir", cs.stateDir,
|
|
|
|
"--listen", cs.grpcSocket,
|
|
|
|
"--metrics-interval", "0m0s",
|
|
|
|
"--runtime-args", fmt.Sprintf("--root=%s", filepath.Join(cs.cwd, cs.outputDir, "runc")),
|
|
|
|
)
|
|
|
|
cd.Stderr = cs.logFile
|
|
|
|
cd.Stdout = cs.logFile
|
|
|
|
|
|
|
|
if err := cd.Start(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
cs.cd = cd
|
|
|
|
|
|
|
|
if err := cs.getClient(cs.grpcSocket); err != nil {
|
|
|
|
// Kill the daemon
|
|
|
|
cs.cd.Process.Kill()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Monitor events
|
|
|
|
events, err := cs.grpcClient.Events(context.Background(), &types.EventsRequest{Timestamp: cs.lastEventTs})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
go cs.ContainerdEventsHandler(events)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
cs.syncChild <- cd.Wait()
|
|
|
|
}()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-03-21 19:06:39 +00:00
|
|
|
func (cs *ContainerdSuite) SetUpSuite(c *check.C) {
|
|
|
|
bundleMap = make(map[string]Bundle)
|
|
|
|
cs.eventFilters = make(map[string]func(event *types.Event))
|
|
|
|
|
2016-05-27 17:35:42 +00:00
|
|
|
// Get working directory for tests
|
|
|
|
wd := utils.GetTestOutDir()
|
|
|
|
if err := os.Chdir(wd); err != nil {
|
|
|
|
c.Fatalf("Could not change working directory: %v", err)
|
2016-03-21 19:06:39 +00:00
|
|
|
}
|
2016-05-27 17:35:42 +00:00
|
|
|
cs.cwd = wd
|
2016-03-21 19:06:39 +00:00
|
|
|
|
|
|
|
// Clean old bundles
|
2016-05-27 17:35:42 +00:00
|
|
|
os.RemoveAll(utils.BundlesRoot)
|
2016-03-21 19:06:39 +00:00
|
|
|
|
|
|
|
// Ensure the oci bundles directory exists
|
2016-05-27 17:35:42 +00:00
|
|
|
if err := os.MkdirAll(utils.BundlesRoot, 0755); err != nil {
|
2016-03-21 19:06:39 +00:00
|
|
|
c.Fatalf("Failed to create bundles directory: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate the reference spec
|
2016-05-27 17:35:42 +00:00
|
|
|
if err := utils.GenerateReferenceSpecs(utils.BundlesRoot); err != nil {
|
2016-03-21 19:06:39 +00:00
|
|
|
c.Fatalf("Unable to generate OCI reference spec: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create our output directory
|
2016-05-27 17:35:42 +00:00
|
|
|
cs.outputDir = fmt.Sprintf(utils.OutputDirFormat, time.Now().Format("2006-01-02_150405.000000"))
|
|
|
|
|
2016-04-21 01:08:36 +00:00
|
|
|
cs.stateDir = filepath.Join(cs.outputDir, "containerd-master")
|
|
|
|
if err := os.MkdirAll(cs.stateDir, 0755); err != nil {
|
|
|
|
c.Fatalf("Unable to created output directory '%s': %v", cs.stateDir, err)
|
2016-03-21 19:06:39 +00:00
|
|
|
}
|
|
|
|
|
2016-04-01 13:29:27 +00:00
|
|
|
cs.grpcSocket = "unix://" + filepath.Join(cs.outputDir, "containerd-master", "containerd.sock")
|
2016-04-21 01:08:36 +00:00
|
|
|
cdLogFile := filepath.Join(cs.outputDir, "containerd-master", "containerd.log")
|
2016-03-21 19:06:39 +00:00
|
|
|
|
|
|
|
f, err := os.OpenFile(cdLogFile, os.O_CREATE|os.O_TRUNC|os.O_RDWR|os.O_SYNC, 0777)
|
|
|
|
if err != nil {
|
|
|
|
c.Fatalf("Failed to create master containerd log file: %v", err)
|
|
|
|
}
|
|
|
|
cs.logFile = f
|
|
|
|
|
|
|
|
cs.syncChild = make(chan error)
|
2016-04-21 01:08:36 +00:00
|
|
|
cs.RestartDaemon(false)
|
2016-03-21 19:06:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (cs *ContainerdSuite) TearDownSuite(c *check.C) {
|
|
|
|
|
|
|
|
// tell containerd to stop
|
|
|
|
if cs.cd != nil {
|
|
|
|
cs.cd.Process.Signal(os.Interrupt)
|
|
|
|
|
|
|
|
done := false
|
|
|
|
for done == false {
|
|
|
|
select {
|
|
|
|
case err := <-cs.syncChild:
|
|
|
|
if err != nil {
|
|
|
|
c.Errorf("master containerd did not exit cleanly: %v", err)
|
|
|
|
}
|
|
|
|
done = true
|
|
|
|
case <-time.After(3 * time.Second):
|
|
|
|
fmt.Println("Timeout while waiting for containerd to exit, killing it!")
|
|
|
|
cs.cd.Process.Kill()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if cs.logFile != nil {
|
|
|
|
cs.logFile.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cs *ContainerdSuite) SetContainerEventFilter(id string, filter func(event *types.Event)) {
|
|
|
|
cs.eventFiltersMutex.Lock()
|
|
|
|
cs.eventFilters[id] = filter
|
|
|
|
cs.eventFiltersMutex.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cs *ContainerdSuite) TearDownTest(c *check.C) {
|
|
|
|
ctrs, err := cs.ListRunningContainers()
|
|
|
|
if err != nil {
|
|
|
|
c.Fatalf("Unable to retrieve running containers: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Kill all containers that survived
|
|
|
|
for _, ctr := range ctrs {
|
|
|
|
ch := make(chan interface{})
|
|
|
|
cs.SetContainerEventFilter(ctr.Id, func(e *types.Event) {
|
|
|
|
if e.Type == "exit" && e.Pid == "init" {
|
|
|
|
ch <- nil
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
if err := cs.KillContainer(ctr.Id); err != nil {
|
2016-07-01 16:11:29 +00:00
|
|
|
fmt.Fprintf(os.Stderr, "Failed to cleanup leftover test containers: %v\n", err)
|
2016-03-21 19:06:39 +00:00
|
|
|
}
|
|
|
|
|
2016-03-28 18:25:50 +00:00
|
|
|
select {
|
|
|
|
case <-ch:
|
|
|
|
case <-time.After(3 * time.Second):
|
2016-07-01 16:11:29 +00:00
|
|
|
fmt.Fprintf(os.Stderr, "TearDownTest: Containerd %v didn't die after 3 seconds\n", ctr.Id)
|
2016-03-28 18:25:50 +00:00
|
|
|
}
|
2016-03-21 19:06:39 +00:00
|
|
|
}
|
|
|
|
}
|