123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806 |
- // +build daemon,!windows
- package main
- import (
- "bytes"
- "encoding/json"
- "fmt"
- "io/ioutil"
- "net"
- "os"
- "os/exec"
- "path/filepath"
- "regexp"
- "strconv"
- "strings"
- "time"
- "github.com/docker/docker/pkg/integration/checker"
- "github.com/docker/libnetwork/iptables"
- "github.com/docker/libtrust"
- "github.com/go-check/check"
- )
- func (s *DockerDaemonSuite) TestDaemonRestartWithRunningContainersPorts(c *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- c.Fatalf("Could not start daemon with busybox: %v", err)
- }
- if out, err := s.d.Cmd("run", "-d", "--name", "top1", "-p", "1234:80", "--restart", "always", "busybox:latest", "top"); err != nil {
- c.Fatalf("Could not run top1: err=%v\n%s", err, out)
- }
- // --restart=no by default
- if out, err := s.d.Cmd("run", "-d", "--name", "top2", "-p", "80", "busybox:latest", "top"); err != nil {
- c.Fatalf("Could not run top2: err=%v\n%s", err, out)
- }
- testRun := func(m map[string]bool, prefix string) {
- var format string
- for cont, shouldRun := range m {
- out, err := s.d.Cmd("ps")
- if err != nil {
- c.Fatalf("Could not run ps: err=%v\n%q", err, out)
- }
- if shouldRun {
- format = "%scontainer %q is not running"
- } else {
- format = "%scontainer %q is running"
- }
- if shouldRun != strings.Contains(out, cont) {
- c.Fatalf(format, prefix, cont)
- }
- }
- }
- testRun(map[string]bool{"top1": true, "top2": true}, "")
- if err := s.d.Restart(); err != nil {
- c.Fatalf("Could not restart daemon: %v", err)
- }
- testRun(map[string]bool{"top1": true, "top2": false}, "After daemon restart: ")
- }
- func (s *DockerDaemonSuite) TestDaemonRestartWithVolumesRefs(c *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- c.Fatal(err)
- }
- if out, err := s.d.Cmd("run", "-d", "--name", "volrestarttest1", "-v", "/foo", "busybox"); err != nil {
- c.Fatal(err, out)
- }
- if err := s.d.Restart(); err != nil {
- c.Fatal(err)
- }
- if _, err := s.d.Cmd("run", "-d", "--volumes-from", "volrestarttest1", "--name", "volrestarttest2", "busybox", "top"); err != nil {
- c.Fatal(err)
- }
- if out, err := s.d.Cmd("rm", "-fv", "volrestarttest2"); err != nil {
- c.Fatal(err, out)
- }
- out, err := s.d.Cmd("inspect", "-f", "{{json .Mounts}}", "volrestarttest1")
- c.Assert(err, check.IsNil)
- if _, err := inspectMountPointJSON(out, "/foo"); err != nil {
- c.Fatalf("Expected volume to exist: /foo, error: %v\n", err)
- }
- }
- // #11008
- func (s *DockerDaemonSuite) TestDaemonRestartUnlessStopped(c *check.C) {
- err := s.d.StartWithBusybox()
- c.Assert(err, check.IsNil)
- out, err := s.d.Cmd("run", "-d", "--name", "top1", "--restart", "always", "busybox:latest", "top")
- c.Assert(err, check.IsNil, check.Commentf("run top1: %v", out))
- out, err = s.d.Cmd("run", "-d", "--name", "top2", "--restart", "unless-stopped", "busybox:latest", "top")
- c.Assert(err, check.IsNil, check.Commentf("run top2: %v", out))
- testRun := func(m map[string]bool, prefix string) {
- var format string
- for name, shouldRun := range m {
- out, err := s.d.Cmd("ps")
- c.Assert(err, check.IsNil, check.Commentf("run ps: %v", out))
- if shouldRun {
- format = "%scontainer %q is not running"
- } else {
- format = "%scontainer %q is running"
- }
- c.Assert(strings.Contains(out, name), check.Equals, shouldRun, check.Commentf(format, prefix, name))
- }
- }
- // both running
- testRun(map[string]bool{"top1": true, "top2": true}, "")
- out, err = s.d.Cmd("stop", "top1")
- c.Assert(err, check.IsNil, check.Commentf(out))
- out, err = s.d.Cmd("stop", "top2")
- c.Assert(err, check.IsNil, check.Commentf(out))
- // both stopped
- testRun(map[string]bool{"top1": false, "top2": false}, "")
- err = s.d.Restart()
- c.Assert(err, check.IsNil)
- // restart=always running
- testRun(map[string]bool{"top1": true, "top2": false}, "After daemon restart: ")
- out, err = s.d.Cmd("start", "top2")
- c.Assert(err, check.IsNil, check.Commentf("start top2: %v", out))
- err = s.d.Restart()
- c.Assert(err, check.IsNil)
- // both running
- testRun(map[string]bool{"top1": true, "top2": true}, "After second daemon restart: ")
- }
- func (s *DockerDaemonSuite) TestDaemonStartIptablesFalse(c *check.C) {
- if err := s.d.Start("--iptables=false"); err != nil {
- c.Fatalf("we should have been able to start the daemon with passing iptables=false: %v", err)
- }
- }
- // Issue #8444: If docker0 bridge is modified (intentionally or unintentionally) and
- // no longer has an IP associated, we should gracefully handle that case and associate
- // an IP with it rather than fail daemon start
- func (s *DockerDaemonSuite) TestDaemonStartBridgeWithoutIPAssociation(c *check.C) {
- // rather than depending on brctl commands to verify docker0 is created and up
- // let's start the daemon and stop it, and then make a modification to run the
- // actual test
- if err := s.d.Start(); err != nil {
- c.Fatalf("Could not start daemon: %v", err)
- }
- if err := s.d.Stop(); err != nil {
- c.Fatalf("Could not stop daemon: %v", err)
- }
- // now we will remove the ip from docker0 and then try starting the daemon
- ipCmd := exec.Command("ip", "addr", "flush", "dev", "docker0")
- stdout, stderr, _, err := runCommandWithStdoutStderr(ipCmd)
- if err != nil {
- c.Fatalf("failed to remove docker0 IP association: %v, stdout: %q, stderr: %q", err, stdout, stderr)
- }
- if err := s.d.Start(); err != nil {
- warning := "**WARNING: Docker bridge network in bad state--delete docker0 bridge interface to fix"
- c.Fatalf("Could not start daemon when docker0 has no IP address: %v\n%s", err, warning)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonIptablesClean(c *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- c.Fatalf("Could not start daemon with busybox: %v", err)
- }
- if out, err := s.d.Cmd("run", "-d", "--name", "top", "-p", "80", "busybox:latest", "top"); err != nil {
- c.Fatalf("Could not run top: %s, %v", out, err)
- }
- // get output from iptables with container running
- ipTablesSearchString := "tcp dpt:80"
- ipTablesCmd := exec.Command("iptables", "-nvL")
- out, _, err := runCommandWithOutput(ipTablesCmd)
- if err != nil {
- c.Fatalf("Could not run iptables -nvL: %s, %v", out, err)
- }
- if !strings.Contains(out, ipTablesSearchString) {
- c.Fatalf("iptables output should have contained %q, but was %q", ipTablesSearchString, out)
- }
- if err := s.d.Stop(); err != nil {
- c.Fatalf("Could not stop daemon: %v", err)
- }
- // get output from iptables after restart
- ipTablesCmd = exec.Command("iptables", "-nvL")
- out, _, err = runCommandWithOutput(ipTablesCmd)
- if err != nil {
- c.Fatalf("Could not run iptables -nvL: %s, %v", out, err)
- }
- if strings.Contains(out, ipTablesSearchString) {
- c.Fatalf("iptables output should not have contained %q, but was %q", ipTablesSearchString, out)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonIptablesCreate(c *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- c.Fatalf("Could not start daemon with busybox: %v", err)
- }
- if out, err := s.d.Cmd("run", "-d", "--name", "top", "--restart=always", "-p", "80", "busybox:latest", "top"); err != nil {
- c.Fatalf("Could not run top: %s, %v", out, err)
- }
- // get output from iptables with container running
- ipTablesSearchString := "tcp dpt:80"
- ipTablesCmd := exec.Command("iptables", "-nvL")
- out, _, err := runCommandWithOutput(ipTablesCmd)
- if err != nil {
- c.Fatalf("Could not run iptables -nvL: %s, %v", out, err)
- }
- if !strings.Contains(out, ipTablesSearchString) {
- c.Fatalf("iptables output should have contained %q, but was %q", ipTablesSearchString, out)
- }
- if err := s.d.Restart(); err != nil {
- c.Fatalf("Could not restart daemon: %v", err)
- }
- // make sure the container is not running
- runningOut, err := s.d.Cmd("inspect", "--format='{{.State.Running}}'", "top")
- if err != nil {
- c.Fatalf("Could not inspect on container: %s, %v", out, err)
- }
- if strings.TrimSpace(runningOut) != "true" {
- c.Fatalf("Container should have been restarted after daemon restart. Status running should have been true but was: %q", strings.TrimSpace(runningOut))
- }
- // get output from iptables after restart
- ipTablesCmd = exec.Command("iptables", "-nvL")
- out, _, err = runCommandWithOutput(ipTablesCmd)
- if err != nil {
- c.Fatalf("Could not run iptables -nvL: %s, %v", out, err)
- }
- if !strings.Contains(out, ipTablesSearchString) {
- c.Fatalf("iptables output after restart should have contained %q, but was %q", ipTablesSearchString, out)
- }
- }
- // TestDaemonIPv6Enabled checks that when the daemon is started with --ipv6=true that the docker0 bridge
- // has the fe80::1 address and that a container is assigned a link-local address
- func (s *DockerSuite) TestDaemonIPv6Enabled(c *check.C) {
- testRequires(c, IPv6)
- if err := setupV6(); err != nil {
- c.Fatal("Could not set up host for IPv6 tests")
- }
- d := NewDaemon(c)
- if err := d.StartWithBusybox("--ipv6"); err != nil {
- c.Fatal(err)
- }
- defer d.Stop()
- iface, err := net.InterfaceByName("docker0")
- if err != nil {
- c.Fatalf("Error getting docker0 interface: %v", err)
- }
- addrs, err := iface.Addrs()
- if err != nil {
- c.Fatalf("Error getting addresses for docker0 interface: %v", err)
- }
- var found bool
- expected := "fe80::1/64"
- for i := range addrs {
- if addrs[i].String() == expected {
- found = true
- }
- }
- if !found {
- c.Fatalf("Bridge does not have an IPv6 Address")
- }
- if out, err := d.Cmd("run", "-itd", "--name=ipv6test", "busybox:latest"); err != nil {
- c.Fatalf("Could not run container: %s, %v", out, err)
- }
- out, err := d.Cmd("inspect", "--format", "'{{.NetworkSettings.Networks.bridge.LinkLocalIPv6Address}}'", "ipv6test")
- out = strings.Trim(out, " \r\n'")
- if err != nil {
- c.Fatalf("Error inspecting container: %s, %v", out, err)
- }
- if ip := net.ParseIP(out); ip == nil {
- c.Fatalf("Container should have a link-local IPv6 address")
- }
- out, err = d.Cmd("inspect", "--format", "'{{.NetworkSettings.Networks.bridge.GlobalIPv6Address}}'", "ipv6test")
- out = strings.Trim(out, " \r\n'")
- if err != nil {
- c.Fatalf("Error inspecting container: %s, %v", out, err)
- }
- if ip := net.ParseIP(out); ip != nil {
- c.Fatalf("Container should not have a global IPv6 address: %v", out)
- }
- if err := teardownV6(); err != nil {
- c.Fatal("Could not perform teardown for IPv6 tests")
- }
- }
- // TestDaemonIPv6FixedCIDR checks that when the daemon is started with --ipv6=true and a fixed CIDR
- // that running containers are given a link-local and global IPv6 address
- func (s *DockerSuite) TestDaemonIPv6FixedCIDR(c *check.C) {
- testRequires(c, IPv6)
- if err := setupV6(); err != nil {
- c.Fatal("Could not set up host for IPv6 tests")
- }
- d := NewDaemon(c)
- if err := d.StartWithBusybox("--ipv6", "--fixed-cidr-v6='2001:db8:1::/64'"); err != nil {
- c.Fatalf("Could not start daemon with busybox: %v", err)
- }
- defer d.Stop()
- if out, err := d.Cmd("run", "-itd", "--name=ipv6test", "busybox:latest"); err != nil {
- c.Fatalf("Could not run container: %s, %v", out, err)
- }
- out, err := d.Cmd("inspect", "--format", "'{{.NetworkSettings.Networks.bridge.LinkLocalIPv6Address}}'", "ipv6test")
- out = strings.Trim(out, " \r\n'")
- if err != nil {
- c.Fatalf("Error inspecting container: %s, %v", out, err)
- }
- if ip := net.ParseIP(out); ip == nil {
- c.Fatalf("Container should have a link-local IPv6 address")
- }
- out, err = d.Cmd("inspect", "--format", "'{{.NetworkSettings.Networks.bridge.GlobalIPv6Address}}'", "ipv6test")
- out = strings.Trim(out, " \r\n'")
- if err != nil {
- c.Fatalf("Error inspecting container: %s, %v", out, err)
- }
- if ip := net.ParseIP(out); ip == nil {
- c.Fatalf("Container should have a global IPv6 address")
- }
- if err := teardownV6(); err != nil {
- c.Fatal("Could not perform teardown for IPv6 tests")
- }
- }
- func (s *DockerDaemonSuite) TestDaemonLogLevelWrong(c *check.C) {
- c.Assert(s.d.Start("--log-level=bogus"), check.NotNil, check.Commentf("Daemon shouldn't start with wrong log level"))
- }
- func (s *DockerSuite) TestDaemonStartWithBackwardCompatibility(c *check.C) {
- var validCommandArgs = [][]string{
- {"--selinux-enabled", "-l", "info"},
- {"--insecure-registry", "daemon"},
- }
- var invalidCommandArgs = [][]string{
- {"--selinux-enabled", "--storage-opt"},
- {"-D", "-b"},
- {"--config", "/tmp"},
- }
- for _, args := range validCommandArgs {
- d := NewDaemon(c)
- d.Command = "--daemon"
- if err := d.Start(args...); err != nil {
- c.Fatalf("Daemon should have started successfully with --daemon %v: %v", args, err)
- }
- d.Stop()
- }
- for _, args := range invalidCommandArgs {
- d := NewDaemon(c)
- if err := d.Start(args...); err == nil {
- d.Stop()
- c.Fatalf("Daemon should have failed to start with %v", args)
- }
- }
- }
- func (s *DockerSuite) TestDaemonStartWithDaemonCommand(c *check.C) {
- type kind int
- const (
- common kind = iota
- daemon
- )
- var flags = []map[kind][]string{
- {common: {"-l", "info"}, daemon: {"--selinux-enabled"}},
- {common: {"-D"}, daemon: {"--selinux-enabled", "-r"}},
- {common: {"-D"}, daemon: {"--restart"}},
- {common: {"--debug"}, daemon: {"--log-driver=json-file", "--log-opt=max-size=1k"}},
- }
- var invalidGlobalFlags = [][]string{
- //Invalid because you cannot pass daemon flags as global flags.
- {"--selinux-enabled", "-l", "info"},
- {"-D", "-r"},
- {"--config", "/tmp"},
- }
- // `docker daemon -l info --selinux-enabled`
- // should NOT error out
- for _, f := range flags {
- d := NewDaemon(c)
- args := append(f[common], f[daemon]...)
- if err := d.Start(args...); err != nil {
- c.Fatalf("Daemon should have started successfully with %v: %v", args, err)
- }
- d.Stop()
- }
- // `docker -l info daemon --selinux-enabled`
- // should error out
- for _, f := range flags {
- d := NewDaemon(c)
- d.GlobalFlags = f[common]
- if err := d.Start(f[daemon]...); err == nil {
- d.Stop()
- c.Fatalf("Daemon should have failed to start with docker %v daemon %v", d.GlobalFlags, f[daemon])
- }
- }
- for _, f := range invalidGlobalFlags {
- cmd := exec.Command(dockerBinary, append(f, "daemon")...)
- errch := make(chan error)
- var err error
- go func() {
- errch <- cmd.Run()
- }()
- select {
- case <-time.After(time.Second):
- cmd.Process.Kill()
- case err = <-errch:
- }
- if err == nil {
- c.Fatalf("Daemon should have failed to start with docker %v daemon", f)
- }
- }
- }
- func (s *DockerDaemonSuite) TestDaemonLogLevelDebug(c *check.C) {
- if err := s.d.Start("--log-level=debug"); err != nil {
- c.Fatal(err)
- }
- content, _ := ioutil.ReadFile(s.d.logFile.Name())
- if !strings.Contains(string(content), `level=debug`) {
- c.Fatalf(`Missing level="debug" in log file:\n%s`, string(content))
- }
- }
- func (s *DockerDaemonSuite) TestDaemonLogLevelFatal(c *check.C) {
- // we creating new daemons to create new logFile
- if err := s.d.Start("--log-level=fatal"); err != nil {
- c.Fatal(err)
- }
- content, _ := ioutil.ReadFile(s.d.logFile.Name())
- if strings.Contains(string(content), `level=debug`) {
- c.Fatalf(`Should not have level="debug" in log file:\n%s`, string(content))
- }
- }
- func (s *DockerDaemonSuite) TestDaemonFlagD(c *check.C) {
- if err := s.d.Start("-D"); err != nil {
- c.Fatal(err)
- }
- content, _ := ioutil.ReadFile(s.d.logFile.Name())
- if !strings.Contains(string(content), `level=debug`) {
- c.Fatalf(`Should have level="debug" in log file using -D:\n%s`, string(content))
- }
- }
- func (s *DockerDaemonSuite) TestDaemonFlagDebug(c *check.C) {
- if err := s.d.Start("--debug"); err != nil {
- c.Fatal(err)
- }
- content, _ := ioutil.ReadFile(s.d.logFile.Name())
- if !strings.Contains(string(content), `level=debug`) {
- c.Fatalf(`Should have level="debug" in log file using --debug:\n%s`, string(content))
- }
- }
- func (s *DockerDaemonSuite) TestDaemonFlagDebugLogLevelFatal(c *check.C) {
- if err := s.d.Start("--debug", "--log-level=fatal"); err != nil {
- c.Fatal(err)
- }
- content, _ := ioutil.ReadFile(s.d.logFile.Name())
- if !strings.Contains(string(content), `level=debug`) {
- c.Fatalf(`Should have level="debug" in log file when using both --debug and --log-level=fatal:\n%s`, string(content))
- }
- }
- func (s *DockerDaemonSuite) TestDaemonAllocatesListeningPort(c *check.C) {
- listeningPorts := [][]string{
- {"0.0.0.0", "0.0.0.0", "5678"},
- {"127.0.0.1", "127.0.0.1", "1234"},
- {"localhost", "127.0.0.1", "1235"},
- }
- cmdArgs := make([]string, 0, len(listeningPorts)*2)
- for _, hostDirective := range listeningPorts {
- cmdArgs = append(cmdArgs, "--host", fmt.Sprintf("tcp://%s:%s", hostDirective[0], hostDirective[2]))
- }
- if err := s.d.StartWithBusybox(cmdArgs...); err != nil {
- c.Fatalf("Could not start daemon with busybox: %v", err)
- }
- for _, hostDirective := range listeningPorts {
- output, err := s.d.Cmd("run", "-p", fmt.Sprintf("%s:%s:80", hostDirective[1], hostDirective[2]), "busybox", "true")
- if err == nil {
- c.Fatalf("Container should not start, expected port already allocated error: %q", output)
- } else if !strings.Contains(output, "port is already allocated") {
- c.Fatalf("Expected port is already allocated error: %q", output)
- }
- }
- }
- func (s *DockerDaemonSuite) TestDaemonKeyGeneration(c *check.C) {
- // TODO: skip or update for Windows daemon
- os.Remove("/etc/docker/key.json")
- if err := s.d.Start(); err != nil {
- c.Fatalf("Could not start daemon: %v", err)
- }
- s.d.Stop()
- k, err := libtrust.LoadKeyFile("/etc/docker/key.json")
- if err != nil {
- c.Fatalf("Error opening key file")
- }
- kid := k.KeyID()
- // Test Key ID is a valid fingerprint (e.g. QQXN:JY5W:TBXI:MK3X:GX6P:PD5D:F56N:NHCS:LVRZ:JA46:R24J:XEFF)
- if len(kid) != 59 {
- c.Fatalf("Bad key ID: %s", kid)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonKeyMigration(c *check.C) {
- // TODO: skip or update for Windows daemon
- os.Remove("/etc/docker/key.json")
- k1, err := libtrust.GenerateECP256PrivateKey()
- if err != nil {
- c.Fatalf("Error generating private key: %s", err)
- }
- if err := os.MkdirAll(filepath.Join(os.Getenv("HOME"), ".docker"), 0755); err != nil {
- c.Fatalf("Error creating .docker directory: %s", err)
- }
- if err := libtrust.SaveKey(filepath.Join(os.Getenv("HOME"), ".docker", "key.json"), k1); err != nil {
- c.Fatalf("Error saving private key: %s", err)
- }
- if err := s.d.Start(); err != nil {
- c.Fatalf("Could not start daemon: %v", err)
- }
- s.d.Stop()
- k2, err := libtrust.LoadKeyFile("/etc/docker/key.json")
- if err != nil {
- c.Fatalf("Error opening key file")
- }
- if k1.KeyID() != k2.KeyID() {
- c.Fatalf("Key not migrated")
- }
- }
- // GH#11320 - verify that the daemon exits on failure properly
- // Note that this explicitly tests the conflict of {-b,--bridge} and {--bip} options as the means
- // to get a daemon init failure; no other tests for -b/--bip conflict are therefore required
- func (s *DockerDaemonSuite) TestDaemonExitOnFailure(c *check.C) {
- //attempt to start daemon with incorrect flags (we know -b and --bip conflict)
- if err := s.d.Start("--bridge", "nosuchbridge", "--bip", "1.1.1.1"); err != nil {
- //verify we got the right error
- if !strings.Contains(err.Error(), "Daemon exited and never started") {
- c.Fatalf("Expected daemon not to start, got %v", err)
- }
- // look in the log and make sure we got the message that daemon is shutting down
- runCmd := exec.Command("grep", "Error starting daemon", s.d.LogfileName())
- if out, _, err := runCommandWithOutput(runCmd); err != nil {
- c.Fatalf("Expected 'Error starting daemon' message; but doesn't exist in log: %q, err: %v", out, err)
- }
- } else {
- //if we didn't get an error and the daemon is running, this is a failure
- c.Fatal("Conflicting options should cause the daemon to error out with a failure")
- }
- }
- func (s *DockerDaemonSuite) TestDaemonBridgeExternal(c *check.C) {
- d := s.d
- err := d.Start("--bridge", "nosuchbridge")
- c.Assert(err, check.NotNil, check.Commentf("--bridge option with an invalid bridge should cause the daemon to fail"))
- defer d.Restart()
- bridgeName := "external-bridge"
- bridgeIP := "192.169.1.1/24"
- _, bridgeIPNet, _ := net.ParseCIDR(bridgeIP)
- out, err := createInterface(c, "bridge", bridgeName, bridgeIP)
- c.Assert(err, check.IsNil, check.Commentf(out))
- defer deleteInterface(c, bridgeName)
- err = d.StartWithBusybox("--bridge", bridgeName)
- c.Assert(err, check.IsNil)
- ipTablesSearchString := bridgeIPNet.String()
- ipTablesCmd := exec.Command("iptables", "-t", "nat", "-nvL")
- out, _, err = runCommandWithOutput(ipTablesCmd)
- c.Assert(err, check.IsNil)
- c.Assert(strings.Contains(out, ipTablesSearchString), check.Equals, true,
- check.Commentf("iptables output should have contained %q, but was %q",
- ipTablesSearchString, out))
- _, err = d.Cmd("run", "-d", "--name", "ExtContainer", "busybox", "top")
- c.Assert(err, check.IsNil)
- containerIP := d.findContainerIP("ExtContainer")
- ip := net.ParseIP(containerIP)
- c.Assert(bridgeIPNet.Contains(ip), check.Equals, true,
- check.Commentf("Container IP-Address must be in the same subnet range : %s",
- containerIP))
- }
- func createInterface(c *check.C, ifType string, ifName string, ipNet string) (string, error) {
- args := []string{"link", "add", "name", ifName, "type", ifType}
- ipLinkCmd := exec.Command("ip", args...)
- out, _, err := runCommandWithOutput(ipLinkCmd)
- if err != nil {
- return out, err
- }
- ifCfgCmd := exec.Command("ifconfig", ifName, ipNet, "up")
- out, _, err = runCommandWithOutput(ifCfgCmd)
- return out, err
- }
- func deleteInterface(c *check.C, ifName string) {
- ifCmd := exec.Command("ip", "link", "delete", ifName)
- out, _, err := runCommandWithOutput(ifCmd)
- c.Assert(err, check.IsNil, check.Commentf(out))
- flushCmd := exec.Command("iptables", "-t", "nat", "--flush")
- out, _, err = runCommandWithOutput(flushCmd)
- c.Assert(err, check.IsNil, check.Commentf(out))
- flushCmd = exec.Command("iptables", "--flush")
- out, _, err = runCommandWithOutput(flushCmd)
- c.Assert(err, check.IsNil, check.Commentf(out))
- }
- func (s *DockerDaemonSuite) TestDaemonBridgeIP(c *check.C) {
- // TestDaemonBridgeIP Steps
- // 1. Delete the existing docker0 Bridge
- // 2. Set --bip daemon configuration and start the new Docker Daemon
- // 3. Check if the bip config has taken effect using ifconfig and iptables commands
- // 4. Launch a Container and make sure the IP-Address is in the expected subnet
- // 5. Delete the docker0 Bridge
- // 6. Restart the Docker Daemon (via deferred action)
- // This Restart takes care of bringing docker0 interface back to auto-assigned IP
- defaultNetworkBridge := "docker0"
- deleteInterface(c, defaultNetworkBridge)
- d := s.d
- bridgeIP := "192.169.1.1/24"
- ip, bridgeIPNet, _ := net.ParseCIDR(bridgeIP)
- err := d.StartWithBusybox("--bip", bridgeIP)
- c.Assert(err, check.IsNil)
- defer d.Restart()
- ifconfigSearchString := ip.String()
- ifconfigCmd := exec.Command("ifconfig", defaultNetworkBridge)
- out, _, _, err := runCommandWithStdoutStderr(ifconfigCmd)
- c.Assert(err, check.IsNil)
- c.Assert(strings.Contains(out, ifconfigSearchString), check.Equals, true,
- check.Commentf("ifconfig output should have contained %q, but was %q",
- ifconfigSearchString, out))
- ipTablesSearchString := bridgeIPNet.String()
- ipTablesCmd := exec.Command("iptables", "-t", "nat", "-nvL")
- out, _, err = runCommandWithOutput(ipTablesCmd)
- c.Assert(err, check.IsNil)
- c.Assert(strings.Contains(out, ipTablesSearchString), check.Equals, true,
- check.Commentf("iptables output should have contained %q, but was %q",
- ipTablesSearchString, out))
- out, err = d.Cmd("run", "-d", "--name", "test", "busybox", "top")
- c.Assert(err, check.IsNil)
- containerIP := d.findContainerIP("test")
- ip = net.ParseIP(containerIP)
- c.Assert(bridgeIPNet.Contains(ip), check.Equals, true,
- check.Commentf("Container IP-Address must be in the same subnet range : %s",
- containerIP))
- deleteInterface(c, defaultNetworkBridge)
- }
- func (s *DockerDaemonSuite) TestDaemonRestartWithBridgeIPChange(c *check.C) {
- if err := s.d.Start(); err != nil {
- c.Fatalf("Could not start daemon: %v", err)
- }
- defer s.d.Restart()
- if err := s.d.Stop(); err != nil {
- c.Fatalf("Could not stop daemon: %v", err)
- }
- // now we will change the docker0's IP and then try starting the daemon
- bridgeIP := "192.169.100.1/24"
- _, bridgeIPNet, _ := net.ParseCIDR(bridgeIP)
- ipCmd := exec.Command("ifconfig", "docker0", bridgeIP)
- stdout, stderr, _, err := runCommandWithStdoutStderr(ipCmd)
- if err != nil {
- c.Fatalf("failed to change docker0's IP association: %v, stdout: %q, stderr: %q", err, stdout, stderr)
- }
- if err := s.d.Start("--bip", bridgeIP); err != nil {
- c.Fatalf("Could not start daemon: %v", err)
- }
- //check if the iptables contains new bridgeIP MASQUERADE rule
- ipTablesSearchString := bridgeIPNet.String()
- ipTablesCmd := exec.Command("iptables", "-t", "nat", "-nvL")
- out, _, err := runCommandWithOutput(ipTablesCmd)
- if err != nil {
- c.Fatalf("Could not run iptables -nvL: %s, %v", out, err)
- }
- if !strings.Contains(out, ipTablesSearchString) {
- c.Fatalf("iptables output should have contained new MASQUERADE rule with IP %q, but was %q", ipTablesSearchString, out)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonBridgeFixedCidr(c *check.C) {
- d := s.d
- bridgeName := "external-bridge"
- bridgeIP := "192.169.1.1/24"
- out, err := createInterface(c, "bridge", bridgeName, bridgeIP)
- c.Assert(err, check.IsNil, check.Commentf(out))
- defer deleteInterface(c, bridgeName)
- args := []string{"--bridge", bridgeName, "--fixed-cidr", "192.169.1.0/30"}
- err = d.StartWithBusybox(args...)
- c.Assert(err, check.IsNil)
- defer d.Restart()
- for i := 0; i < 4; i++ {
- cName := "Container" + strconv.Itoa(i)
- out, err := d.Cmd("run", "-d", "--name", cName, "busybox", "top")
- if err != nil {
- c.Assert(strings.Contains(out, "no available IPv4 addresses"), check.Equals, true,
- check.Commentf("Could not run a Container : %s %s", err.Error(), out))
- }
- }
- }
- func (s *DockerDaemonSuite) TestDaemonBridgeFixedCidrFixedCIDREqualBridgeNetwork(c *check.C) {
- d := s.d
- bridgeName := "external-bridge"
- bridgeIP := "172.27.42.1/16"
- out, err := createInterface(c, "bridge", bridgeName, bridgeIP)
- c.Assert(err, check.IsNil, check.Commentf(out))
- defer deleteInterface(c, bridgeName)
- err = d.StartWithBusybox("--bridge", bridgeName, "--fixed-cidr", bridgeIP)
- c.Assert(err, check.IsNil)
- defer s.d.Restart()
- out, err = d.Cmd("run", "-d", "busybox", "top")
- c.Assert(err, check.IsNil, check.Commentf(out))
- cid1 := strings.TrimSpace(out)
- defer d.Cmd("stop", cid1)
- }
- func (s *DockerDaemonSuite) TestDaemonDefaultGatewayIPv4Implicit(c *check.C) {
- defaultNetworkBridge := "docker0"
- deleteInterface(c, defaultNetworkBridge)
- d := s.d
- bridgeIP := "192.169.1.1"
- bridgeIPNet := fmt.Sprintf("%s/24", bridgeIP)
- err := d.StartWithBusybox("--bip", bridgeIPNet)
- c.Assert(err, check.IsNil)
- defer d.Restart()
- expectedMessage := fmt.Sprintf("default via %s dev", bridgeIP)
- out, err := d.Cmd("run", "busybox", "ip", "-4", "route", "list", "0/0")
- c.Assert(strings.Contains(out, expectedMessage), check.Equals, true,
- check.Commentf("Implicit default gateway should be bridge IP %s, but default route was '%s'",
- bridgeIP, strings.TrimSpace(out)))
- deleteInterface(c, defaultNetworkBridge)
- }
- func (s *DockerDaemonSuite) TestDaemonDefaultGatewayIPv4Explicit(c *check.C) {
- defaultNetworkBridge := "docker0"
- deleteInterface(c, defaultNetworkBridge)
- d := s.d
- bridgeIP := "192.169.1.1"
- bridgeIPNet := fmt.Sprintf("%s/24", bridgeIP)
- gatewayIP := "192.169.1.254"
- err := d.StartWithBusybox("--bip", bridgeIPNet, "--default-gateway", gatewayIP)
- c.Assert(err, check.IsNil)
- defer d.Restart()
- expectedMessage := fmt.Sprintf("default via %s dev", gatewayIP)
- out, err := d.Cmd("run", "busybox", "ip", "-4", "route", "list", "0/0")
- c.Assert(strings.Contains(out, expectedMessage), check.Equals, true,
- check.Commentf("Explicit default gateway should be %s, but default route was '%s'",
- gatewayIP, strings.TrimSpace(out)))
- deleteInterface(c, defaultNetworkBridge)
- }
- func (s *DockerDaemonSuite) TestDaemonDefaultGatewayIPv4ExplicitOutsideContainerSubnet(c *check.C) {
- defaultNetworkBridge := "docker0"
- deleteInterface(c, defaultNetworkBridge)
- // Program a custom default gateway outside of the container subnet, daemon should accept it and start
- err := s.d.StartWithBusybox("--bip", "172.16.0.10/16", "--fixed-cidr", "172.16.1.0/24", "--default-gateway", "172.16.0.254")
- c.Assert(err, check.IsNil)
- deleteInterface(c, defaultNetworkBridge)
- s.d.Restart()
- }
- func (s *DockerDaemonSuite) TestDaemonDefaultNetworkInvalidClusterConfig(c *check.C) {
- testRequires(c, DaemonIsLinux, SameHostDaemon)
- // Start daemon without docker0 bridge
- defaultNetworkBridge := "docker0"
- deleteInterface(c, defaultNetworkBridge)
- d := NewDaemon(c)
- discoveryBackend := "consul://consuladdr:consulport/some/path"
- err := d.Start(fmt.Sprintf("--cluster-store=%s", discoveryBackend))
- c.Assert(err, checker.IsNil)
- // Start daemon with docker0 bridge
- ifconfigCmd := exec.Command("ifconfig", defaultNetworkBridge)
- _, err = runCommand(ifconfigCmd)
- c.Assert(err, check.IsNil)
- err = d.Restart(fmt.Sprintf("--cluster-store=%s", discoveryBackend))
- c.Assert(err, checker.IsNil)
- d.Stop()
- }
- func (s *DockerDaemonSuite) TestDaemonIP(c *check.C) {
- d := s.d
- ipStr := "192.170.1.1/24"
- ip, _, _ := net.ParseCIDR(ipStr)
- args := []string{"--ip", ip.String()}
- err := d.StartWithBusybox(args...)
- c.Assert(err, check.IsNil)
- defer d.Restart()
- out, err := d.Cmd("run", "-d", "-p", "8000:8000", "busybox", "top")
- c.Assert(err, check.NotNil,
- check.Commentf("Running a container must fail with an invalid --ip option"))
- c.Assert(strings.Contains(out, "Error starting userland proxy"), check.Equals, true)
- ifName := "dummy"
- out, err = createInterface(c, "dummy", ifName, ipStr)
- c.Assert(err, check.IsNil, check.Commentf(out))
- defer deleteInterface(c, ifName)
- _, err = d.Cmd("run", "-d", "-p", "8000:8000", "busybox", "top")
- c.Assert(err, check.IsNil)
- ipTablesCmd := exec.Command("iptables", "-t", "nat", "-nvL")
- out, _, err = runCommandWithOutput(ipTablesCmd)
- c.Assert(err, check.IsNil)
- regex := fmt.Sprintf("DNAT.*%s.*dpt:8000", ip.String())
- matched, _ := regexp.MatchString(regex, out)
- c.Assert(matched, check.Equals, true,
- check.Commentf("iptables output should have contained %q, but was %q", regex, out))
- }
- func (s *DockerDaemonSuite) TestDaemonICCPing(c *check.C) {
- d := s.d
- bridgeName := "external-bridge"
- bridgeIP := "192.169.1.1/24"
- out, err := createInterface(c, "bridge", bridgeName, bridgeIP)
- c.Assert(err, check.IsNil, check.Commentf(out))
- defer deleteInterface(c, bridgeName)
- args := []string{"--bridge", bridgeName, "--icc=false"}
- err = d.StartWithBusybox(args...)
- c.Assert(err, check.IsNil)
- defer d.Restart()
- ipTablesCmd := exec.Command("iptables", "-nvL", "FORWARD")
- out, _, err = runCommandWithOutput(ipTablesCmd)
- c.Assert(err, check.IsNil)
- regex := fmt.Sprintf("DROP.*all.*%s.*%s", bridgeName, bridgeName)
- matched, _ := regexp.MatchString(regex, out)
- c.Assert(matched, check.Equals, true,
- check.Commentf("iptables output should have contained %q, but was %q", regex, out))
- // Pinging another container must fail with --icc=false
- pingContainers(c, d, true)
- ipStr := "192.171.1.1/24"
- ip, _, _ := net.ParseCIDR(ipStr)
- ifName := "icc-dummy"
- createInterface(c, "dummy", ifName, ipStr)
- // But, Pinging external or a Host interface must succeed
- pingCmd := fmt.Sprintf("ping -c 1 %s -W 1", ip.String())
- runArgs := []string{"--rm", "busybox", "sh", "-c", pingCmd}
- _, err = d.Cmd("run", runArgs...)
- c.Assert(err, check.IsNil)
- }
- func (s *DockerDaemonSuite) TestDaemonICCLinkExpose(c *check.C) {
- d := s.d
- bridgeName := "external-bridge"
- bridgeIP := "192.169.1.1/24"
- out, err := createInterface(c, "bridge", bridgeName, bridgeIP)
- c.Assert(err, check.IsNil, check.Commentf(out))
- defer deleteInterface(c, bridgeName)
- args := []string{"--bridge", bridgeName, "--icc=false"}
- err = d.StartWithBusybox(args...)
- c.Assert(err, check.IsNil)
- defer d.Restart()
- ipTablesCmd := exec.Command("iptables", "-nvL", "FORWARD")
- out, _, err = runCommandWithOutput(ipTablesCmd)
- c.Assert(err, check.IsNil)
- regex := fmt.Sprintf("DROP.*all.*%s.*%s", bridgeName, bridgeName)
- matched, _ := regexp.MatchString(regex, out)
- c.Assert(matched, check.Equals, true,
- check.Commentf("iptables output should have contained %q, but was %q", regex, out))
- out, err = d.Cmd("run", "-d", "--expose", "4567", "--name", "icc1", "busybox", "nc", "-l", "-p", "4567")
- c.Assert(err, check.IsNil, check.Commentf(out))
- out, err = d.Cmd("run", "--link", "icc1:icc1", "busybox", "nc", "icc1", "4567")
- c.Assert(err, check.IsNil, check.Commentf(out))
- }
- func (s *DockerDaemonSuite) TestDaemonLinksIpTablesRulesWhenLinkAndUnlink(c *check.C) {
- bridgeName := "external-bridge"
- bridgeIP := "192.169.1.1/24"
- out, err := createInterface(c, "bridge", bridgeName, bridgeIP)
- c.Assert(err, check.IsNil, check.Commentf(out))
- defer deleteInterface(c, bridgeName)
- err = s.d.StartWithBusybox("--bridge", bridgeName, "--icc=false")
- c.Assert(err, check.IsNil)
- defer s.d.Restart()
- _, err = s.d.Cmd("run", "-d", "--name", "child", "--publish", "8080:80", "busybox", "top")
- c.Assert(err, check.IsNil)
- _, err = s.d.Cmd("run", "-d", "--name", "parent", "--link", "child:http", "busybox", "top")
- c.Assert(err, check.IsNil)
- childIP := s.d.findContainerIP("child")
- parentIP := s.d.findContainerIP("parent")
- sourceRule := []string{"-i", bridgeName, "-o", bridgeName, "-p", "tcp", "-s", childIP, "--sport", "80", "-d", parentIP, "-j", "ACCEPT"}
- destinationRule := []string{"-i", bridgeName, "-o", bridgeName, "-p", "tcp", "-s", parentIP, "--dport", "80", "-d", childIP, "-j", "ACCEPT"}
- if !iptables.Exists("filter", "DOCKER", sourceRule...) || !iptables.Exists("filter", "DOCKER", destinationRule...) {
- c.Fatal("Iptables rules not found")
- }
- s.d.Cmd("rm", "--link", "parent/http")
- if iptables.Exists("filter", "DOCKER", sourceRule...) || iptables.Exists("filter", "DOCKER", destinationRule...) {
- c.Fatal("Iptables rules should be removed when unlink")
- }
- s.d.Cmd("kill", "child")
- s.d.Cmd("kill", "parent")
- }
- func (s *DockerDaemonSuite) TestDaemonUlimitDefaults(c *check.C) {
- testRequires(c, DaemonIsLinux)
- if err := s.d.StartWithBusybox("--default-ulimit", "nofile=42:42", "--default-ulimit", "nproc=1024:1024"); err != nil {
- c.Fatal(err)
- }
- out, err := s.d.Cmd("run", "--ulimit", "nproc=2048", "--name=test", "busybox", "/bin/sh", "-c", "echo $(ulimit -n); echo $(ulimit -p)")
- if err != nil {
- c.Fatal(out, err)
- }
- outArr := strings.Split(out, "\n")
- if len(outArr) < 2 {
- c.Fatalf("got unexpected output: %s", out)
- }
- nofile := strings.TrimSpace(outArr[0])
- nproc := strings.TrimSpace(outArr[1])
- if nofile != "42" {
- c.Fatalf("expected `ulimit -n` to be `42`, got: %s", nofile)
- }
- if nproc != "2048" {
- c.Fatalf("exepcted `ulimit -p` to be 2048, got: %s", nproc)
- }
- // Now restart daemon with a new default
- if err := s.d.Restart("--default-ulimit", "nofile=43"); err != nil {
- c.Fatal(err)
- }
- out, err = s.d.Cmd("start", "-a", "test")
- if err != nil {
- c.Fatal(err)
- }
- outArr = strings.Split(out, "\n")
- if len(outArr) < 2 {
- c.Fatalf("got unexpected output: %s", out)
- }
- nofile = strings.TrimSpace(outArr[0])
- nproc = strings.TrimSpace(outArr[1])
- if nofile != "43" {
- c.Fatalf("expected `ulimit -n` to be `43`, got: %s", nofile)
- }
- if nproc != "2048" {
- c.Fatalf("exepcted `ulimit -p` to be 2048, got: %s", nproc)
- }
- }
- // #11315
- func (s *DockerDaemonSuite) TestDaemonRestartRenameContainer(c *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- c.Fatal(err)
- }
- if out, err := s.d.Cmd("run", "--name=test", "busybox"); err != nil {
- c.Fatal(err, out)
- }
- if out, err := s.d.Cmd("rename", "test", "test2"); err != nil {
- c.Fatal(err, out)
- }
- if err := s.d.Restart(); err != nil {
- c.Fatal(err)
- }
- if out, err := s.d.Cmd("start", "test2"); err != nil {
- c.Fatal(err, out)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonLoggingDriverDefault(c *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- c.Fatal(err)
- }
- out, err := s.d.Cmd("run", "-d", "busybox", "echo", "testline")
- if err != nil {
- c.Fatal(out, err)
- }
- id := strings.TrimSpace(out)
- if out, err := s.d.Cmd("wait", id); err != nil {
- c.Fatal(out, err)
- }
- logPath := filepath.Join(s.d.root, "containers", id, id+"-json.log")
- if _, err := os.Stat(logPath); err != nil {
- c.Fatal(err)
- }
- f, err := os.Open(logPath)
- if err != nil {
- c.Fatal(err)
- }
- var res struct {
- Log string `json:"log"`
- Stream string `json:"stream"`
- Time time.Time `json:"time"`
- }
- if err := json.NewDecoder(f).Decode(&res); err != nil {
- c.Fatal(err)
- }
- if res.Log != "testline\n" {
- c.Fatalf("Unexpected log line: %q, expected: %q", res.Log, "testline\n")
- }
- if res.Stream != "stdout" {
- c.Fatalf("Unexpected stream: %q, expected: %q", res.Stream, "stdout")
- }
- if !time.Now().After(res.Time) {
- c.Fatalf("Log time %v in future", res.Time)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonLoggingDriverDefaultOverride(c *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- c.Fatal(err)
- }
- out, err := s.d.Cmd("run", "-d", "--log-driver=none", "busybox", "echo", "testline")
- if err != nil {
- c.Fatal(out, err)
- }
- id := strings.TrimSpace(out)
- if out, err := s.d.Cmd("wait", id); err != nil {
- c.Fatal(out, err)
- }
- logPath := filepath.Join(s.d.root, "containers", id, id+"-json.log")
- if _, err := os.Stat(logPath); err == nil || !os.IsNotExist(err) {
- c.Fatalf("%s shouldn't exits, error on Stat: %s", logPath, err)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonLoggingDriverNone(c *check.C) {
- if err := s.d.StartWithBusybox("--log-driver=none"); err != nil {
- c.Fatal(err)
- }
- out, err := s.d.Cmd("run", "-d", "busybox", "echo", "testline")
- if err != nil {
- c.Fatal(out, err)
- }
- id := strings.TrimSpace(out)
- if out, err := s.d.Cmd("wait", id); err != nil {
- c.Fatal(out, err)
- }
- logPath := filepath.Join(s.d.folder, "graph", "containers", id, id+"-json.log")
- if _, err := os.Stat(logPath); err == nil || !os.IsNotExist(err) {
- c.Fatalf("%s shouldn't exits, error on Stat: %s", logPath, err)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonLoggingDriverNoneOverride(c *check.C) {
- if err := s.d.StartWithBusybox("--log-driver=none"); err != nil {
- c.Fatal(err)
- }
- out, err := s.d.Cmd("run", "-d", "--log-driver=json-file", "busybox", "echo", "testline")
- if err != nil {
- c.Fatal(out, err)
- }
- id := strings.TrimSpace(out)
- if out, err := s.d.Cmd("wait", id); err != nil {
- c.Fatal(out, err)
- }
- logPath := filepath.Join(s.d.root, "containers", id, id+"-json.log")
- if _, err := os.Stat(logPath); err != nil {
- c.Fatal(err)
- }
- f, err := os.Open(logPath)
- if err != nil {
- c.Fatal(err)
- }
- var res struct {
- Log string `json:"log"`
- Stream string `json:"stream"`
- Time time.Time `json:"time"`
- }
- if err := json.NewDecoder(f).Decode(&res); err != nil {
- c.Fatal(err)
- }
- if res.Log != "testline\n" {
- c.Fatalf("Unexpected log line: %q, expected: %q", res.Log, "testline\n")
- }
- if res.Stream != "stdout" {
- c.Fatalf("Unexpected stream: %q, expected: %q", res.Stream, "stdout")
- }
- if !time.Now().After(res.Time) {
- c.Fatalf("Log time %v in future", res.Time)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonLoggingDriverNoneLogsError(c *check.C) {
- if err := s.d.StartWithBusybox("--log-driver=none"); err != nil {
- c.Fatal(err)
- }
- out, err := s.d.Cmd("run", "-d", "busybox", "echo", "testline")
- if err != nil {
- c.Fatal(out, err)
- }
- id := strings.TrimSpace(out)
- out, err = s.d.Cmd("logs", id)
- if err != nil {
- c.Fatalf("Logs request should be sent and then fail with \"none\" driver")
- }
- if !strings.Contains(out, `Error running logs job: Failed to get logging factory: logger: no log driver named 'none' is registered`) {
- c.Fatalf("There should be an error about none not being a recognized log driver, got: %s", out)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonDots(c *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- c.Fatal(err)
- }
- // Now create 4 containers
- if _, err := s.d.Cmd("create", "busybox"); err != nil {
- c.Fatalf("Error creating container: %q", err)
- }
- if _, err := s.d.Cmd("create", "busybox"); err != nil {
- c.Fatalf("Error creating container: %q", err)
- }
- if _, err := s.d.Cmd("create", "busybox"); err != nil {
- c.Fatalf("Error creating container: %q", err)
- }
- if _, err := s.d.Cmd("create", "busybox"); err != nil {
- c.Fatalf("Error creating container: %q", err)
- }
- s.d.Stop()
- s.d.Start("--log-level=debug")
- s.d.Stop()
- content, _ := ioutil.ReadFile(s.d.logFile.Name())
- if strings.Contains(string(content), "....") {
- c.Fatalf("Debug level should not have ....\n%s", string(content))
- }
- s.d.Start("--log-level=error")
- s.d.Stop()
- content, _ = ioutil.ReadFile(s.d.logFile.Name())
- if strings.Contains(string(content), "....") {
- c.Fatalf("Error level should not have ....\n%s", string(content))
- }
- s.d.Start("--log-level=info")
- s.d.Stop()
- content, _ = ioutil.ReadFile(s.d.logFile.Name())
- if !strings.Contains(string(content), "....") {
- c.Fatalf("Info level should have ....\n%s", string(content))
- }
- }
- func (s *DockerDaemonSuite) TestDaemonUnixSockCleanedUp(c *check.C) {
- dir, err := ioutil.TempDir("", "socket-cleanup-test")
- if err != nil {
- c.Fatal(err)
- }
- defer os.RemoveAll(dir)
- sockPath := filepath.Join(dir, "docker.sock")
- if err := s.d.Start("--host", "unix://"+sockPath); err != nil {
- c.Fatal(err)
- }
- if _, err := os.Stat(sockPath); err != nil {
- c.Fatal("socket does not exist")
- }
- if err := s.d.Stop(); err != nil {
- c.Fatal(err)
- }
- if _, err := os.Stat(sockPath); err == nil || !os.IsNotExist(err) {
- c.Fatal("unix socket is not cleaned up")
- }
- }
- func (s *DockerDaemonSuite) TestDaemonWithWrongkey(c *check.C) {
- type Config struct {
- Crv string `json:"crv"`
- D string `json:"d"`
- Kid string `json:"kid"`
- Kty string `json:"kty"`
- X string `json:"x"`
- Y string `json:"y"`
- }
- os.Remove("/etc/docker/key.json")
- if err := s.d.Start(); err != nil {
- c.Fatalf("Failed to start daemon: %v", err)
- }
- if err := s.d.Stop(); err != nil {
- c.Fatalf("Could not stop daemon: %v", err)
- }
- config := &Config{}
- bytes, err := ioutil.ReadFile("/etc/docker/key.json")
- if err != nil {
- c.Fatalf("Error reading key.json file: %s", err)
- }
- // byte[] to Data-Struct
- if err := json.Unmarshal(bytes, &config); err != nil {
- c.Fatalf("Error Unmarshal: %s", err)
- }
- //replace config.Kid with the fake value
- config.Kid = "VSAJ:FUYR:X3H2:B2VZ:KZ6U:CJD5:K7BX:ZXHY:UZXT:P4FT:MJWG:HRJ4"
- // NEW Data-Struct to byte[]
- newBytes, err := json.Marshal(&config)
- if err != nil {
- c.Fatalf("Error Marshal: %s", err)
- }
- // write back
- if err := ioutil.WriteFile("/etc/docker/key.json", newBytes, 0400); err != nil {
- c.Fatalf("Error ioutil.WriteFile: %s", err)
- }
- defer os.Remove("/etc/docker/key.json")
- if err := s.d.Start(); err == nil {
- c.Fatalf("It should not be successful to start daemon with wrong key: %v", err)
- }
- content, _ := ioutil.ReadFile(s.d.logFile.Name())
- if !strings.Contains(string(content), "Public Key ID does not match") {
- c.Fatal("Missing KeyID message from daemon logs")
- }
- }
- func (s *DockerDaemonSuite) TestDaemonRestartKillWait(c *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- c.Fatalf("Could not start daemon with busybox: %v", err)
- }
- out, err := s.d.Cmd("run", "-id", "busybox", "/bin/cat")
- if err != nil {
- c.Fatalf("Could not run /bin/cat: err=%v\n%s", err, out)
- }
- containerID := strings.TrimSpace(out)
- if out, err := s.d.Cmd("kill", containerID); err != nil {
- c.Fatalf("Could not kill %s: err=%v\n%s", containerID, err, out)
- }
- if err := s.d.Restart(); err != nil {
- c.Fatalf("Could not restart daemon: %v", err)
- }
- errchan := make(chan error)
- go func() {
- if out, err := s.d.Cmd("wait", containerID); err != nil {
- errchan <- fmt.Errorf("%v:\n%s", err, out)
- }
- close(errchan)
- }()
- select {
- case <-time.After(5 * time.Second):
- c.Fatal("Waiting on a stopped (killed) container timed out")
- case err := <-errchan:
- if err != nil {
- c.Fatal(err)
- }
- }
- }
- // TestHttpsInfo connects via two-way authenticated HTTPS to the info endpoint
- func (s *DockerDaemonSuite) TestHttpsInfo(c *check.C) {
- const (
- testDaemonHTTPSAddr = "tcp://localhost:4271"
- )
- if err := s.d.Start("--tlsverify", "--tlscacert", "fixtures/https/ca.pem", "--tlscert", "fixtures/https/server-cert.pem",
- "--tlskey", "fixtures/https/server-key.pem", "-H", testDaemonHTTPSAddr); err != nil {
- c.Fatalf("Could not start daemon with busybox: %v", err)
- }
- daemonArgs := []string{"--host", testDaemonHTTPSAddr, "--tlsverify", "--tlscacert", "fixtures/https/ca.pem", "--tlscert", "fixtures/https/client-cert.pem", "--tlskey", "fixtures/https/client-key.pem"}
- out, err := s.d.CmdWithArgs(daemonArgs, "info")
- if err != nil {
- c.Fatalf("Error Occurred: %s and output: %s", err, out)
- }
- }
- // TestTlsVerify verifies that --tlsverify=false turns on tls
- func (s *DockerDaemonSuite) TestTlsVerify(c *check.C) {
- out, err := exec.Command(dockerBinary, "daemon", "--tlsverify=false").CombinedOutput()
- if err == nil || !strings.Contains(string(out), "Could not load X509 key pair") {
- c.Fatalf("Daemon should not have started due to missing certs: %v\n%s", err, string(out))
- }
- }
- // TestHttpsInfoRogueCert connects via two-way authenticated HTTPS to the info endpoint
- // by using a rogue client certificate and checks that it fails with the expected error.
- func (s *DockerDaemonSuite) TestHttpsInfoRogueCert(c *check.C) {
- const (
- errBadCertificate = "remote error: bad certificate"
- testDaemonHTTPSAddr = "tcp://localhost:4271"
- )
- if err := s.d.Start("--tlsverify", "--tlscacert", "fixtures/https/ca.pem", "--tlscert", "fixtures/https/server-cert.pem",
- "--tlskey", "fixtures/https/server-key.pem", "-H", testDaemonHTTPSAddr); err != nil {
- c.Fatalf("Could not start daemon with busybox: %v", err)
- }
- daemonArgs := []string{"--host", testDaemonHTTPSAddr, "--tlsverify", "--tlscacert", "fixtures/https/ca.pem", "--tlscert", "fixtures/https/client-rogue-cert.pem", "--tlskey", "fixtures/https/client-rogue-key.pem"}
- out, err := s.d.CmdWithArgs(daemonArgs, "info")
- if err == nil || !strings.Contains(out, errBadCertificate) {
- c.Fatalf("Expected err: %s, got instead: %s and output: %s", errBadCertificate, err, out)
- }
- }
- // TestHttpsInfoRogueServerCert connects via two-way authenticated HTTPS to the info endpoint
- // which provides a rogue server certificate and checks that it fails with the expected error
- func (s *DockerDaemonSuite) TestHttpsInfoRogueServerCert(c *check.C) {
- const (
- errCaUnknown = "x509: certificate signed by unknown authority"
- testDaemonRogueHTTPSAddr = "tcp://localhost:4272"
- )
- if err := s.d.Start("--tlsverify", "--tlscacert", "fixtures/https/ca.pem", "--tlscert", "fixtures/https/server-rogue-cert.pem",
- "--tlskey", "fixtures/https/server-rogue-key.pem", "-H", testDaemonRogueHTTPSAddr); err != nil {
- c.Fatalf("Could not start daemon with busybox: %v", err)
- }
- daemonArgs := []string{"--host", testDaemonRogueHTTPSAddr, "--tlsverify", "--tlscacert", "fixtures/https/ca.pem", "--tlscert", "fixtures/https/client-rogue-cert.pem", "--tlskey", "fixtures/https/client-rogue-key.pem"}
- out, err := s.d.CmdWithArgs(daemonArgs, "info")
- if err == nil || !strings.Contains(out, errCaUnknown) {
- c.Fatalf("Expected err: %s, got instead: %s and output: %s", errCaUnknown, err, out)
- }
- }
- func pingContainers(c *check.C, d *Daemon, expectFailure bool) {
- var dargs []string
- if d != nil {
- dargs = []string{"--host", d.sock()}
- }
- args := append(dargs, "run", "-d", "--name", "container1", "busybox", "top")
- dockerCmd(c, args...)
- args = append(dargs, "run", "--rm", "--link", "container1:alias1", "busybox", "sh", "-c")
- pingCmd := "ping -c 1 %s -W 1"
- args = append(args, fmt.Sprintf(pingCmd, "alias1"))
- _, _, err := dockerCmdWithError(args...)
- if expectFailure {
- c.Assert(err, check.NotNil)
- } else {
- c.Assert(err, check.IsNil)
- }
- args = append(dargs, "rm", "-f", "container1")
- dockerCmd(c, args...)
- }
- func (s *DockerDaemonSuite) TestDaemonRestartWithSocketAsVolume(c *check.C) {
- c.Assert(s.d.StartWithBusybox(), check.IsNil)
- socket := filepath.Join(s.d.folder, "docker.sock")
- out, err := s.d.Cmd("run", "-d", "--restart=always", "-v", socket+":/sock", "busybox")
- c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
- c.Assert(s.d.Restart(), check.IsNil)
- }
- func (s *DockerDaemonSuite) TestCleanupMountsAfterCrash(c *check.C) {
- c.Assert(s.d.StartWithBusybox(), check.IsNil)
- out, err := s.d.Cmd("run", "-d", "busybox", "top")
- c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
- id := strings.TrimSpace(out)
- c.Assert(s.d.cmd.Process.Signal(os.Kill), check.IsNil)
- c.Assert(s.d.Start(), check.IsNil)
- mountOut, err := ioutil.ReadFile("/proc/self/mountinfo")
- c.Assert(err, check.IsNil, check.Commentf("Output: %s", mountOut))
- comment := check.Commentf("%s is still mounted from older daemon start:\nDaemon root repository %s\n%s", id, s.d.folder, mountOut)
- c.Assert(strings.Contains(string(mountOut), id), check.Equals, false, comment)
- }
- func (s *DockerDaemonSuite) TestRunContainerWithBridgeNone(c *check.C) {
- testRequires(c, DaemonIsLinux, NotUserNamespace)
- c.Assert(s.d.StartWithBusybox("-b", "none"), check.IsNil)
- out, err := s.d.Cmd("run", "--rm", "busybox", "ip", "l")
- c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
- c.Assert(strings.Contains(out, "eth0"), check.Equals, false,
- check.Commentf("There shouldn't be eth0 in container in default(bridge) mode when bridge network is disabled: %s", out))
- out, err = s.d.Cmd("run", "--rm", "--net=bridge", "busybox", "ip", "l")
- c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
- c.Assert(strings.Contains(out, "eth0"), check.Equals, false,
- check.Commentf("There shouldn't be eth0 in container in bridge mode when bridge network is disabled: %s", out))
- // the extra grep and awk clean up the output of `ip` to only list the number and name of
- // interfaces, allowing for different versions of ip (e.g. inside and outside the container) to
- // be used while still verifying that the interface list is the exact same
- cmd := exec.Command("sh", "-c", "ip l | grep -E '^[0-9]+:' | awk -F: ' { print $1\":\"$2 } '")
- stdout := bytes.NewBuffer(nil)
- cmd.Stdout = stdout
- if err := cmd.Run(); err != nil {
- c.Fatal("Failed to get host network interface")
- }
- out, err = s.d.Cmd("run", "--rm", "--net=host", "busybox", "sh", "-c", "ip l | grep -E '^[0-9]+:' | awk -F: ' { print $1\":\"$2 } '")
- c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
- c.Assert(out, check.Equals, fmt.Sprintf("%s", stdout),
- check.Commentf("The network interfaces in container should be the same with host when --net=host when bridge network is disabled: %s", out))
- }
- func (s *DockerDaemonSuite) TestDaemonRestartWithContainerRunning(t *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- t.Fatal(err)
- }
- if out, err := s.d.Cmd("run", "-ti", "-d", "--name", "test", "busybox"); err != nil {
- t.Fatal(out, err)
- }
- if err := s.d.Restart(); err != nil {
- t.Fatal(err)
- }
- // Container 'test' should be removed without error
- if out, err := s.d.Cmd("rm", "test"); err != nil {
- t.Fatal(out, err)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonRestartCleanupNetns(c *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- c.Fatal(err)
- }
- out, err := s.d.Cmd("run", "--name", "netns", "-d", "busybox", "top")
- if err != nil {
- c.Fatal(out, err)
- }
- // Get sandbox key via inspect
- out, err = s.d.Cmd("inspect", "--format", "'{{.NetworkSettings.SandboxKey}}'", "netns")
- if err != nil {
- c.Fatalf("Error inspecting container: %s, %v", out, err)
- }
- fileName := strings.Trim(out, " \r\n'")
- if out, err := s.d.Cmd("stop", "netns"); err != nil {
- c.Fatal(out, err)
- }
- // Test if the file still exists
- out, _, err = runCommandWithOutput(exec.Command("stat", "-c", "%n", fileName))
- out = strings.TrimSpace(out)
- c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
- c.Assert(out, check.Equals, fileName, check.Commentf("Output: %s", out))
- // Remove the container and restart the daemon
- if out, err := s.d.Cmd("rm", "netns"); err != nil {
- c.Fatal(out, err)
- }
- if err := s.d.Restart(); err != nil {
- c.Fatal(err)
- }
- // Test again and see now the netns file does not exist
- out, _, err = runCommandWithOutput(exec.Command("stat", "-c", "%n", fileName))
- out = strings.TrimSpace(out)
- c.Assert(err, check.Not(check.IsNil), check.Commentf("Output: %s", out))
- }
- // tests regression detailed in #13964 where DOCKER_TLS_VERIFY env is ignored
- func (s *DockerDaemonSuite) TestDaemonNoTlsCliTlsVerifyWithEnv(c *check.C) {
- host := "tcp://localhost:4271"
- c.Assert(s.d.Start("-H", host), check.IsNil)
- cmd := exec.Command(dockerBinary, "-H", host, "info")
- cmd.Env = []string{"DOCKER_TLS_VERIFY=1", "DOCKER_CERT_PATH=fixtures/https"}
- out, _, err := runCommandWithOutput(cmd)
- c.Assert(err, check.Not(check.IsNil), check.Commentf("%s", out))
- c.Assert(strings.Contains(out, "error occurred trying to connect"), check.Equals, true)
- }
- func setupV6() error {
- // Hack to get the right IPv6 address on docker0, which has already been created
- err := exec.Command("ip", "addr", "add", "fe80::1/64", "dev", "docker0").Run()
- if err != nil {
- return err
- }
- return nil
- }
- func teardownV6() error {
- err := exec.Command("ip", "addr", "del", "fe80::1/64", "dev", "docker0").Run()
- if err != nil {
- return err
- }
- return nil
- }
- func (s *DockerDaemonSuite) TestDaemonRestartWithContainerWithRestartPolicyAlways(c *check.C) {
- c.Assert(s.d.StartWithBusybox(), check.IsNil)
- out, err := s.d.Cmd("run", "-d", "--restart", "always", "busybox", "top")
- c.Assert(err, check.IsNil)
- id := strings.TrimSpace(out)
- _, err = s.d.Cmd("stop", id)
- c.Assert(err, check.IsNil)
- _, err = s.d.Cmd("wait", id)
- c.Assert(err, check.IsNil)
- out, err = s.d.Cmd("ps", "-q")
- c.Assert(err, check.IsNil)
- c.Assert(out, check.Equals, "")
- c.Assert(s.d.Restart(), check.IsNil)
- out, err = s.d.Cmd("ps", "-q")
- c.Assert(err, check.IsNil)
- c.Assert(strings.TrimSpace(out), check.Equals, id[:12])
- }
- func (s *DockerDaemonSuite) TestDaemonWideLogConfig(c *check.C) {
- if err := s.d.StartWithBusybox("--log-driver=json-file", "--log-opt=max-size=1k"); err != nil {
- c.Fatal(err)
- }
- out, err := s.d.Cmd("run", "-d", "--name=logtest", "busybox", "top")
- c.Assert(err, check.IsNil, check.Commentf("Output: %s, err: %v", out, err))
- out, err = s.d.Cmd("inspect", "-f", "{{ .HostConfig.LogConfig.Config }}", "logtest")
- c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
- cfg := strings.TrimSpace(out)
- if cfg != "map[max-size:1k]" {
- c.Fatalf("Unexpected log-opt: %s, expected map[max-size:1k]", cfg)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonRestartWithPausedContainer(c *check.C) {
- if err := s.d.StartWithBusybox(); err != nil {
- c.Fatal(err)
- }
- if out, err := s.d.Cmd("run", "-i", "-d", "--name", "test", "busybox", "top"); err != nil {
- c.Fatal(err, out)
- }
- if out, err := s.d.Cmd("pause", "test"); err != nil {
- c.Fatal(err, out)
- }
- if err := s.d.Restart(); err != nil {
- c.Fatal(err)
- }
- errchan := make(chan error)
- go func() {
- out, err := s.d.Cmd("start", "test")
- if err != nil {
- errchan <- fmt.Errorf("%v:\n%s", err, out)
- }
- name := strings.TrimSpace(out)
- if name != "test" {
- errchan <- fmt.Errorf("Paused container start error on docker daemon restart, expected 'test' but got '%s'", name)
- }
- close(errchan)
- }()
- select {
- case <-time.After(5 * time.Second):
- c.Fatal("Waiting on start a container timed out")
- case err := <-errchan:
- if err != nil {
- c.Fatal(err)
- }
- }
- }
- func (s *DockerDaemonSuite) TestDaemonRestartRmVolumeInUse(c *check.C) {
- c.Assert(s.d.StartWithBusybox(), check.IsNil)
- out, err := s.d.Cmd("create", "-v", "test:/foo", "busybox")
- c.Assert(err, check.IsNil, check.Commentf(out))
- c.Assert(s.d.Restart(), check.IsNil)
- out, err = s.d.Cmd("volume", "rm", "test")
- c.Assert(err, check.Not(check.IsNil), check.Commentf("should not be able to remove in use volume after daemon restart"))
- c.Assert(strings.Contains(out, "in use"), check.Equals, true)
- }
- func (s *DockerDaemonSuite) TestDaemonRestartLocalVolumes(c *check.C) {
- c.Assert(s.d.Start(), check.IsNil)
- _, err := s.d.Cmd("volume", "create", "--name", "test")
- c.Assert(err, check.IsNil)
- c.Assert(s.d.Restart(), check.IsNil)
- _, err = s.d.Cmd("volume", "inspect", "test")
- c.Assert(err, check.IsNil)
- }
- func (s *DockerDaemonSuite) TestDaemonCorruptedLogDriverAddress(c *check.C) {
- for _, driver := range []string{
- "syslog",
- "gelf",
- } {
- args := []string{"--log-driver=" + driver, "--log-opt", driver + "-address=corrupted:42"}
- c.Assert(s.d.Start(args...), check.NotNil, check.Commentf(fmt.Sprintf("Expected daemon not to start with invalid %s-address provided", driver)))
- expected := fmt.Sprintf("Failed to set log opts: %s-address should be in form proto://address", driver)
- runCmd := exec.Command("grep", expected, s.d.LogfileName())
- if out, _, err := runCommandWithOutput(runCmd); err != nil {
- c.Fatalf("Expected %q message; but doesn't exist in log: %q, err: %v", expected, out, err)
- }
- }
- }
- func (s *DockerDaemonSuite) TestDaemonCorruptedFluentdAddress(c *check.C) {
- c.Assert(s.d.Start("--log-driver=fluentd", "--log-opt", "fluentd-address=corrupted:c"), check.NotNil)
- expected := "Failed to set log opts: invalid fluentd-address corrupted:c: "
- runCmd := exec.Command("grep", expected, s.d.LogfileName())
- if out, _, err := runCommandWithOutput(runCmd); err != nil {
- c.Fatalf("Expected %q message; but doesn't exist in log: %q, err: %v", expected, out, err)
- }
- }
- func (s *DockerDaemonSuite) TestDaemonStartWithoutHost(c *check.C) {
- s.d.useDefaultHost = true
- defer func() {
- s.d.useDefaultHost = false
- }()
- c.Assert(s.d.Start(), check.IsNil)
- }
- func (s *DockerDaemonSuite) TestDaemonStartWithDefalutTlsHost(c *check.C) {
- s.d.useDefaultTLSHost = true
- defer func() {
- s.d.useDefaultTLSHost = false
- }()
- if err := s.d.Start(
- "--tlsverify",
- "--tlscacert", "fixtures/https/ca.pem",
- "--tlscert", "fixtures/https/server-cert.pem",
- "--tlskey", "fixtures/https/server-key.pem"); err != nil {
- c.Fatalf("Could not start daemon: %v", err)
- }
- // The client with --tlsverify should also use default host localhost:2376
- tmpHost := os.Getenv("DOCKER_HOST")
- defer func() {
- os.Setenv("DOCKER_HOST", tmpHost)
- }()
- os.Setenv("DOCKER_HOST", "")
- out, _ := dockerCmd(
- c,
- "--tlsverify",
- "--tlscacert", "fixtures/https/ca.pem",
- "--tlscert", "fixtures/https/client-cert.pem",
- "--tlskey", "fixtures/https/client-key.pem",
- "version",
- )
- if !strings.Contains(out, "Server") {
- c.Fatalf("docker version should return information of server side")
- }
- }
|