2018-05-14 17:46:57 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
2018-11-08 20:24:25 +00:00
|
|
|
"bytes"
|
2018-05-14 17:46:57 +00:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2018-05-30 19:55:24 +00:00
|
|
|
"strings"
|
2018-05-14 17:46:57 +00:00
|
|
|
"testing"
|
2018-05-30 19:55:24 +00:00
|
|
|
"time"
|
2018-05-14 17:46:57 +00:00
|
|
|
|
2018-11-08 20:24:25 +00:00
|
|
|
docker "github.com/fsouza/go-dockerclient"
|
2018-05-31 19:09:10 +00:00
|
|
|
"github.com/hashicorp/nomad/client/testutil"
|
2018-05-30 19:55:24 +00:00
|
|
|
tu "github.com/hashicorp/nomad/testutil"
|
2018-05-14 17:46:57 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDockerDriver_authFromHelper(t *testing.T) {
|
|
|
|
dir, err := ioutil.TempDir("", "test-docker-driver_authfromhelper")
|
|
|
|
require.NoError(t, err)
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
helperPayload := "{\"Username\":\"hashi\",\"Secret\":\"nomad\"}"
|
|
|
|
helperContent := []byte(fmt.Sprintf("#!/bin/sh\ncat > %s/helper-$1.out;echo '%s'", dir, helperPayload))
|
|
|
|
|
|
|
|
helperFile := filepath.Join(dir, "docker-credential-testnomad")
|
|
|
|
err = ioutil.WriteFile(helperFile, helperContent, 0777)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
path := os.Getenv("PATH")
|
|
|
|
os.Setenv("PATH", fmt.Sprintf("%s:%s", path, dir))
|
|
|
|
defer os.Setenv("PATH", path)
|
|
|
|
|
|
|
|
helper := authFromHelper("testnomad")
|
|
|
|
creds, err := helper("registry.local:5000/repo/image")
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, creds)
|
|
|
|
require.Equal(t, "hashi", creds.Username)
|
|
|
|
require.Equal(t, "nomad", creds.Password)
|
|
|
|
|
|
|
|
if _, err := os.Stat(filepath.Join(dir, "helper-get.out")); os.IsNotExist(err) {
|
|
|
|
t.Fatalf("Expected helper-get.out to exist")
|
|
|
|
}
|
|
|
|
content, err := ioutil.ReadFile(filepath.Join(dir, "helper-get.out"))
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, []byte("https://registry.local:5000"), content)
|
|
|
|
}
|
2018-05-30 19:55:24 +00:00
|
|
|
|
|
|
|
func TestDockerDriver_PidsLimit(t *testing.T) {
|
|
|
|
if !tu.IsTravis() {
|
|
|
|
t.Parallel()
|
|
|
|
}
|
|
|
|
if !testutil.DockerIsConnected(t) {
|
|
|
|
t.Skip("Docker not connected")
|
|
|
|
}
|
|
|
|
|
|
|
|
task, _, _ := dockerTask(t)
|
|
|
|
task.Config["pids_limit"] = "1"
|
|
|
|
task.Config["command"] = "/bin/sh"
|
2018-11-13 02:39:11 +00:00
|
|
|
|
|
|
|
// this starts three processes in container: /bin/sh and two sleep
|
|
|
|
// while a single sleep suffices, our observation is that it's image dependent
|
|
|
|
// (i.e. using a single sleep here in alpine image doesn't trigger PID limit failure)
|
|
|
|
task.Config["args"] = []string{"-c", "sleep 2 & sleep 2"}
|
2018-05-30 19:55:24 +00:00
|
|
|
|
|
|
|
ctx := testDockerDriverContexts(t, task)
|
2018-09-24 18:37:45 +00:00
|
|
|
defer ctx.Destroy()
|
2018-05-30 19:55:24 +00:00
|
|
|
d := NewDockerDriver(ctx.DriverCtx)
|
|
|
|
|
2018-11-08 20:24:25 +00:00
|
|
|
// TODO: current log capture of docker driver is broken
|
|
|
|
// so we must fetch logs from docker daemon directly
|
|
|
|
// which works in Linux as well as Mac
|
|
|
|
d.(*DockerDriver).DriverContext.config.Options[dockerCleanupContainerConfigOption] = "false"
|
|
|
|
|
2018-05-30 19:55:24 +00:00
|
|
|
// Copy the image into the task's directory
|
|
|
|
copyImage(t, ctx.ExecCtx.TaskDir, "busybox.tar")
|
|
|
|
|
|
|
|
_, err := d.Prestart(ctx.ExecCtx, task)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("error in prestart: %v", err)
|
|
|
|
}
|
|
|
|
resp, err := d.Start(ctx.ExecCtx, task)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2018-11-08 20:24:25 +00:00
|
|
|
h := resp.Handle.(*DockerHandle)
|
|
|
|
defer h.client.RemoveContainer(docker.RemoveContainerOptions{
|
|
|
|
ID: h.containerID,
|
|
|
|
RemoveVolumes: true,
|
|
|
|
Force: true,
|
|
|
|
})
|
|
|
|
|
2018-05-30 19:55:24 +00:00
|
|
|
defer resp.Handle.Kill()
|
|
|
|
|
|
|
|
select {
|
|
|
|
case res := <-resp.Handle.WaitCh():
|
|
|
|
if res.Successful() {
|
|
|
|
t.Fatalf("expected error, but container exited successful")
|
|
|
|
}
|
2018-11-08 20:24:25 +00:00
|
|
|
|
|
|
|
// /bin/sh exits with 2
|
|
|
|
if res.ExitCode != 2 {
|
|
|
|
t.Fatalf("expected exit code of 2 but found %v", res.ExitCode)
|
|
|
|
}
|
2018-05-30 19:55:24 +00:00
|
|
|
case <-time.After(time.Duration(tu.TestMultiplier()*5) * time.Second):
|
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX Logging doesn't work on OSX so just test on Linux
|
|
|
|
// Check that data was written to the directory.
|
2018-11-08 20:24:25 +00:00
|
|
|
var act bytes.Buffer
|
|
|
|
err = h.client.Logs(docker.LogsOptions{
|
|
|
|
Container: h.containerID,
|
|
|
|
Stderr: true,
|
|
|
|
ErrorStream: &act,
|
|
|
|
})
|
2018-05-30 19:55:24 +00:00
|
|
|
if err != nil {
|
2018-11-08 20:24:25 +00:00
|
|
|
t.Fatalf("error in fetching logs: %v", err)
|
|
|
|
|
2018-05-30 19:55:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exp := "can't fork"
|
2018-11-08 20:24:25 +00:00
|
|
|
if !strings.Contains(act.String(), exp) {
|
2018-05-30 19:55:24 +00:00
|
|
|
t.Fatalf("Expected failed fork: %q", act)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|