2018-11-06 05:39:48 +00:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2018-11-12 12:39:55 +00:00
|
|
|
"strings"
|
2018-11-06 05:39:48 +00:00
|
|
|
"testing"
|
2018-11-12 12:39:55 +00:00
|
|
|
"time"
|
2018-11-06 05:39:48 +00:00
|
|
|
|
2018-11-12 12:39:55 +00:00
|
|
|
"github.com/hashicorp/nomad/client/testutil"
|
|
|
|
tu "github.com/hashicorp/nomad/testutil"
|
2018-11-06 05:39:48 +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)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDockerDriver_PidsLimit(t *testing.T) {
|
2019-02-20 12:52:27 +00:00
|
|
|
if !tu.IsCI() {
|
2018-11-06 05:39:48 +00:00
|
|
|
t.Parallel()
|
|
|
|
}
|
2019-01-07 13:27:06 +00:00
|
|
|
testutil.DockerCompatible(t)
|
2018-11-12 12:39:55 +00:00
|
|
|
require := require.New(t)
|
2018-11-06 05:39:48 +00:00
|
|
|
|
2018-11-12 12:39:55 +00:00
|
|
|
task, cfg, _ := dockerTask(t)
|
|
|
|
cfg.PidsLimit = 1
|
|
|
|
cfg.Command = "/bin/sh"
|
|
|
|
cfg.Args = []string{"-c", "sleep 2 & sleep 2"}
|
|
|
|
require.NoError(task.EncodeConcreteDriverConfig(cfg))
|
2018-11-06 05:39:48 +00:00
|
|
|
|
2018-11-12 12:39:55 +00:00
|
|
|
_, driver, _, cleanup := dockerSetup(t, task)
|
|
|
|
defer cleanup()
|
2018-11-06 05:39:48 +00:00
|
|
|
|
2018-11-12 12:39:55 +00:00
|
|
|
driver.WaitUntilStarted(task.ID, time.Duration(tu.TestMultiplier()*5)*time.Second)
|
2018-11-06 05:39:48 +00:00
|
|
|
|
|
|
|
// XXX Logging doesn't work on OSX so just test on Linux
|
|
|
|
// Check that data was written to the directory.
|
2018-11-12 12:39:55 +00:00
|
|
|
outputFile := filepath.Join(task.TaskDir().LogDir, "redis-demo.stderr.0")
|
2018-11-06 05:39:48 +00:00
|
|
|
exp := "can't fork"
|
2018-11-12 12:39:55 +00:00
|
|
|
tu.WaitForResult(func() (bool, error) {
|
|
|
|
act, err := ioutil.ReadFile(outputFile)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
if !strings.Contains(string(act), exp) {
|
|
|
|
return false, fmt.Errorf("Expected %q in output %q", exp, string(act))
|
|
|
|
}
|
|
|
|
return true, nil
|
|
|
|
}, func(err error) {
|
|
|
|
require.NoError(err)
|
|
|
|
})
|
|
|
|
}
|