123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462 |
- package main
- import (
- "context"
- "encoding/json"
- "errors"
- "fmt"
- "io"
- "os"
- "path"
- "path/filepath"
- "strconv"
- "strings"
- "testing"
- "time"
- "github.com/docker/docker/api/types"
- "github.com/docker/docker/client"
- "github.com/docker/docker/integration-cli/cli"
- "github.com/docker/docker/integration-cli/daemon"
- "gotest.tools/v3/assert"
- "gotest.tools/v3/assert/cmp"
- "gotest.tools/v3/icmd"
- "gotest.tools/v3/poll"
- )
- func deleteImages(images ...string) error {
- args := []string{dockerBinary, "rmi", "-f"}
- return icmd.RunCmd(icmd.Cmd{Command: append(args, images...)}).Error
- }
- // Deprecated: use cli.Docker or cli.DockerCmd
- func dockerCmdWithError(args ...string) (string, int, error) {
- result := cli.Docker(cli.Args(args...))
- if result.Error != nil {
- return result.Combined(), result.ExitCode, result.Compare(icmd.Success)
- }
- return result.Combined(), result.ExitCode, result.Error
- }
- // Deprecated: use cli.Docker or cli.DockerCmd
- func dockerCmd(c testing.TB, args ...string) (string, int) {
- c.Helper()
- result := cli.DockerCmd(c, args...)
- return result.Combined(), result.ExitCode
- }
- // Deprecated: use cli.Docker or cli.DockerCmd
- func dockerCmdWithResult(args ...string) *icmd.Result {
- return cli.Docker(cli.Args(args...))
- }
- func findContainerIP(c *testing.T, id string, network string) string {
- c.Helper()
- out, _ := dockerCmd(c, "inspect", fmt.Sprintf("--format='{{ .NetworkSettings.Networks.%s.IPAddress }}'", network), id)
- return strings.Trim(out, " \r\n'")
- }
- func getContainerCount(c *testing.T) int {
- c.Helper()
- const containers = "Containers:"
- result := icmd.RunCommand(dockerBinary, "info")
- result.Assert(c, icmd.Success)
- lines := strings.Split(result.Combined(), "\n")
- for _, line := range lines {
- if strings.Contains(line, containers) {
- output := strings.TrimSpace(line)
- output = strings.TrimPrefix(output, containers)
- output = strings.Trim(output, " ")
- containerCount, err := strconv.Atoi(output)
- assert.NilError(c, err)
- return containerCount
- }
- }
- return 0
- }
- func inspectFieldAndUnmarshall(c *testing.T, name, field string, output interface{}) {
- c.Helper()
- str := inspectFieldJSON(c, name, field)
- err := json.Unmarshal([]byte(str), output)
- assert.Assert(c, err == nil, "failed to unmarshal: %v", err)
- }
- // Deprecated: use cli.Inspect
- func inspectFilter(name, filter string) (string, error) {
- format := fmt.Sprintf("{{%s}}", filter)
- result := icmd.RunCommand(dockerBinary, "inspect", "-f", format, name)
- if result.Error != nil || result.ExitCode != 0 {
- return "", fmt.Errorf("failed to inspect %s: %s", name, result.Combined())
- }
- return strings.TrimSpace(result.Combined()), nil
- }
- // Deprecated: use cli.Inspect
- func inspectFieldWithError(name, field string) (string, error) {
- return inspectFilter(name, "."+field)
- }
- // Deprecated: use cli.Inspect
- func inspectField(c *testing.T, name, field string) string {
- c.Helper()
- out, err := inspectFilter(name, "."+field)
- assert.NilError(c, err)
- return out
- }
- // Deprecated: use cli.Inspect
- func inspectFieldJSON(c *testing.T, name, field string) string {
- c.Helper()
- out, err := inspectFilter(name, "json ."+field)
- assert.NilError(c, err)
- return out
- }
- // Deprecated: use cli.Inspect
- func inspectFieldMap(c *testing.T, name, path, field string) string {
- c.Helper()
- out, err := inspectFilter(name, fmt.Sprintf("index .%s %q", path, field))
- assert.NilError(c, err)
- return out
- }
- // Deprecated: use cli.Inspect
- func inspectMountSourceField(name, destination string) (string, error) {
- m, err := inspectMountPoint(name, destination)
- if err != nil {
- return "", err
- }
- return m.Source, nil
- }
- // Deprecated: use cli.Inspect
- func inspectMountPoint(name, destination string) (types.MountPoint, error) {
- out, err := inspectFilter(name, "json .Mounts")
- if err != nil {
- return types.MountPoint{}, err
- }
- return inspectMountPointJSON(out, destination)
- }
- var errMountNotFound = errors.New("mount point not found")
- // Deprecated: use cli.Inspect
- func inspectMountPointJSON(j, destination string) (types.MountPoint, error) {
- var mp []types.MountPoint
- if err := json.Unmarshal([]byte(j), &mp); err != nil {
- return types.MountPoint{}, err
- }
- var m *types.MountPoint
- for _, c := range mp {
- if c.Destination == destination {
- m = &c
- break
- }
- }
- if m == nil {
- return types.MountPoint{}, errMountNotFound
- }
- return *m, nil
- }
- func getIDByName(c *testing.T, name string) string {
- c.Helper()
- id, err := inspectFieldWithError(name, "Id")
- assert.NilError(c, err)
- return id
- }
- // Deprecated: use cli.Build
- func buildImageSuccessfully(c *testing.T, name string, cmdOperators ...cli.CmdOperator) {
- c.Helper()
- buildImage(name, cmdOperators...).Assert(c, icmd.Success)
- }
- // Deprecated: use cli.Build
- func buildImage(name string, cmdOperators ...cli.CmdOperator) *icmd.Result {
- return cli.Docker(cli.Build(name), cmdOperators...)
- }
- // Write `content` to the file at path `dst`, creating it if necessary,
- // as well as any missing directories.
- // The file is truncated if it already exists.
- // Fail the test when error occurs.
- func writeFile(dst, content string, c *testing.T) {
- c.Helper()
- // Create subdirectories if necessary
- assert.Assert(c, os.MkdirAll(path.Dir(dst), 0700) == nil)
- f, err := os.OpenFile(dst, os.O_CREATE|os.O_RDWR|os.O_TRUNC, 0700)
- assert.NilError(c, err)
- defer f.Close()
- // Write content (truncate if it exists)
- _, err = io.Copy(f, strings.NewReader(content))
- assert.NilError(c, err)
- }
- // Return the contents of file at path `src`.
- // Fail the test when error occurs.
- func readFile(src string, c *testing.T) (content string) {
- c.Helper()
- data, err := os.ReadFile(src)
- assert.NilError(c, err)
- return string(data)
- }
- func containerStorageFile(containerID, basename string) string {
- return filepath.Join(testEnv.PlatformDefaults.ContainerStoragePath, containerID, basename)
- }
- // docker commands that use this function must be run with the '-d' switch.
- func runCommandAndReadContainerFile(c *testing.T, filename string, command string, args ...string) []byte {
- c.Helper()
- result := icmd.RunCommand(command, args...)
- result.Assert(c, icmd.Success)
- contID := strings.TrimSpace(result.Combined())
- if err := waitRun(contID); err != nil {
- c.Fatalf("%v: %q", contID, err)
- }
- return readContainerFile(c, contID, filename)
- }
- func readContainerFile(c *testing.T, containerID, filename string) []byte {
- c.Helper()
- f, err := os.Open(containerStorageFile(containerID, filename))
- assert.NilError(c, err)
- defer f.Close()
- content, err := io.ReadAll(f)
- assert.NilError(c, err)
- return content
- }
- func readContainerFileWithExec(c *testing.T, containerID, filename string) []byte {
- c.Helper()
- result := icmd.RunCommand(dockerBinary, "exec", containerID, "cat", filename)
- result.Assert(c, icmd.Success)
- return []byte(result.Combined())
- }
- // daemonTime provides the current time on the daemon host
- func daemonTime(c *testing.T) time.Time {
- c.Helper()
- if testEnv.IsLocalDaemon() {
- return time.Now()
- }
- cli, err := client.NewClientWithOpts(client.FromEnv)
- assert.NilError(c, err)
- defer cli.Close()
- info, err := cli.Info(context.Background())
- assert.NilError(c, err)
- dt, err := time.Parse(time.RFC3339Nano, info.SystemTime)
- assert.Assert(c, err == nil, "invalid time format in GET /info response")
- return dt
- }
- // daemonUnixTime returns the current time on the daemon host with nanoseconds precision.
- // It return the time formatted how the client sends timestamps to the server.
- func daemonUnixTime(c *testing.T) string {
- c.Helper()
- return parseEventTime(daemonTime(c))
- }
- func parseEventTime(t time.Time) string {
- return fmt.Sprintf("%d.%09d", t.Unix(), int64(t.Nanosecond()))
- }
- // appendBaseEnv appends the minimum set of environment variables to exec the
- // docker cli binary for testing with correct configuration to the given env
- // list.
- func appendBaseEnv(isTLS bool, env ...string) []string {
- preserveList := []string{
- // preserve remote test host
- "DOCKER_HOST",
- // windows: requires preserving SystemRoot, otherwise dial tcp fails
- // with "GetAddrInfoW: A non-recoverable error occurred during a database lookup."
- "SystemRoot",
- // testing help text requires the $PATH to dockerd is set
- "PATH",
- }
- if isTLS {
- preserveList = append(preserveList, "DOCKER_TLS_VERIFY", "DOCKER_CERT_PATH")
- }
- for _, key := range preserveList {
- if val := os.Getenv(key); val != "" {
- env = append(env, fmt.Sprintf("%s=%s", key, val))
- }
- }
- return env
- }
- func createTmpFile(c *testing.T, content string) string {
- c.Helper()
- f, err := os.CreateTemp("", "testfile")
- assert.NilError(c, err)
- filename := f.Name()
- err = os.WriteFile(filename, []byte(content), 0644)
- assert.NilError(c, err)
- return filename
- }
- // waitRun will wait for the specified container to be running, maximum 5 seconds.
- // Deprecated: use cli.WaitFor
- func waitRun(contID string) error {
- return waitInspect(contID, "{{.State.Running}}", "true", 5*time.Second)
- }
- // waitInspect will wait for the specified container to have the specified string
- // in the inspect output. It will wait until the specified timeout (in seconds)
- // is reached.
- // Deprecated: use cli.WaitFor
- func waitInspect(name, expr, expected string, timeout time.Duration) error {
- return waitInspectWithArgs(name, expr, expected, timeout)
- }
- // Deprecated: use cli.WaitFor
- func waitInspectWithArgs(name, expr, expected string, timeout time.Duration, arg ...string) error {
- return daemon.WaitInspectWithArgs(dockerBinary, name, expr, expected, timeout, arg...)
- }
- func getInspectBody(c *testing.T, version, id string) []byte {
- c.Helper()
- cli, err := client.NewClientWithOpts(client.FromEnv, client.WithVersion(version))
- assert.NilError(c, err)
- defer cli.Close()
- _, body, err := cli.ContainerInspectWithRaw(context.Background(), id, false)
- assert.NilError(c, err)
- return body
- }
- // Run a long running idle task in a background container using the
- // system-specific default image and command.
- func runSleepingContainer(c *testing.T, extraArgs ...string) string {
- c.Helper()
- return runSleepingContainerInImage(c, "busybox", extraArgs...)
- }
- // Run a long running idle task in a background container using the specified
- // image and the system-specific command.
- func runSleepingContainerInImage(c *testing.T, image string, extraArgs ...string) string {
- c.Helper()
- args := []string{"run", "-d"}
- args = append(args, extraArgs...)
- args = append(args, image)
- args = append(args, sleepCommandForDaemonPlatform()...)
- return strings.TrimSpace(cli.DockerCmd(c, args...).Combined())
- }
- // minimalBaseImage returns the name of the minimal base image for the current
- // daemon platform.
- func minimalBaseImage() string {
- return testEnv.PlatformDefaults.BaseImage
- }
- func getGoroutineNumber() (int, error) {
- cli, err := client.NewClientWithOpts(client.FromEnv)
- if err != nil {
- return 0, err
- }
- defer cli.Close()
- info, err := cli.Info(context.Background())
- if err != nil {
- return 0, err
- }
- return info.NGoroutines, nil
- }
- func waitForGoroutines(expected int) error {
- t := time.After(30 * time.Second)
- for {
- select {
- case <-t:
- n, err := getGoroutineNumber()
- if err != nil {
- return err
- }
- if n > expected {
- return fmt.Errorf("leaked goroutines: expected less than or equal to %d, got: %d", expected, n)
- }
- default:
- n, err := getGoroutineNumber()
- if err != nil {
- return err
- }
- if n <= expected {
- return nil
- }
- time.Sleep(200 * time.Millisecond)
- }
- }
- }
- // getErrorMessage returns the error message from an error API response
- func getErrorMessage(c *testing.T, body []byte) string {
- c.Helper()
- var resp types.ErrorResponse
- assert.Assert(c, json.Unmarshal(body, &resp) == nil)
- return strings.TrimSpace(resp.Message)
- }
- type checkF func(*testing.T) (interface{}, string)
- type reducer func(...interface{}) interface{}
- func pollCheck(t *testing.T, f checkF, compare func(x interface{}) assert.BoolOrComparison) poll.Check {
- return func(poll.LogT) poll.Result {
- t.Helper()
- v, comment := f(t)
- r := compare(v)
- switch r := r.(type) {
- case bool:
- if r {
- return poll.Success()
- }
- case cmp.Comparison:
- if r().Success() {
- return poll.Success()
- }
- default:
- panic(fmt.Errorf("pollCheck: type %T not implemented", r))
- }
- return poll.Continue(comment)
- }
- }
- func reducedCheck(r reducer, funcs ...checkF) checkF {
- return func(c *testing.T) (interface{}, string) {
- c.Helper()
- var values []interface{}
- var comments []string
- for _, f := range funcs {
- v, comment := f(c)
- values = append(values, v)
- if len(comment) > 0 {
- comments = append(comments, comment)
- }
- }
- return r(values...), fmt.Sprintf("%v", strings.Join(comments, ", "))
- }
- }
- func sumAsIntegers(vals ...interface{}) interface{} {
- var s int
- for _, v := range vals {
- s += v.(int)
- }
- return s
- }
|