2020-05-21 13:32:32 -04:00
|
|
|
package network // import "github.com/docker/docker/integration/network"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/integration/internal/container"
|
|
|
|
"github.com/docker/docker/integration/internal/network"
|
|
|
|
"github.com/docker/docker/testutil/daemon"
|
|
|
|
"gotest.tools/v3/poll"
|
|
|
|
"gotest.tools/v3/skip"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDaemonDNSFallback(t *testing.T) {
|
|
|
|
skip.If(t, testEnv.IsRemoteDaemon, "cannot start daemon on remote test run")
|
|
|
|
skip.If(t, testEnv.DaemonInfo.OSType != "linux")
|
2021-08-12 03:12:04 -04:00
|
|
|
skip.If(t, testEnv.IsUserNamespace)
|
2020-05-21 13:32:32 -04:00
|
|
|
|
|
|
|
d := daemon.New(t)
|
|
|
|
d.StartWithBusybox(t, "-b", "none", "--dns", "127.127.127.1", "--dns", "8.8.8.8")
|
|
|
|
defer d.Stop(t)
|
|
|
|
|
|
|
|
c := d.NewClientT(t)
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
network.CreateNoError(ctx, t, c, "test")
|
|
|
|
defer c.NetworkRemove(ctx, "test")
|
|
|
|
|
|
|
|
cid := container.Run(ctx, t, c, container.WithNetworkMode("test"), container.WithCmd("nslookup", "docker.com"))
|
|
|
|
defer c.ContainerRemove(ctx, cid, types.ContainerRemoveOptions{Force: true})
|
|
|
|
|
2020-06-29 23:06:03 -04:00
|
|
|
poll.WaitOn(t, container.IsSuccessful(ctx, c, cid), poll.WithDelay(100*time.Millisecond), poll.WithTimeout(10*time.Second))
|
2020-05-21 13:32:32 -04:00
|
|
|
}
|