12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655 |
- // +build !windows
- package main
- import (
- "bytes"
- "encoding/json"
- "fmt"
- "io/ioutil"
- "net/http"
- "net/http/httptest"
- "os"
- "path/filepath"
- "strings"
- "time"
- "github.com/docker/docker/api/types/swarm"
- "github.com/docker/docker/integration-cli/checker"
- "github.com/docker/docker/integration-cli/daemon"
- icmd "github.com/docker/docker/pkg/testutil/cmd"
- "github.com/docker/libnetwork/driverapi"
- "github.com/docker/libnetwork/ipamapi"
- remoteipam "github.com/docker/libnetwork/ipams/remote/api"
- "github.com/go-check/check"
- "github.com/vishvananda/netlink"
- )
- func (s *DockerSwarmSuite) TestSwarmUpdate(c *check.C) {
- d := s.AddDaemon(c, true, true)
- getSpec := func() swarm.Spec {
- sw := d.GetSwarm(c)
- return sw.Spec
- }
- out, err := d.Cmd("swarm", "update", "--cert-expiry", "30h", "--dispatcher-heartbeat", "11s")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- spec := getSpec()
- c.Assert(spec.CAConfig.NodeCertExpiry, checker.Equals, 30*time.Hour)
- c.Assert(spec.Dispatcher.HeartbeatPeriod, checker.Equals, 11*time.Second)
- // setting anything under 30m for cert-expiry is not allowed
- out, err = d.Cmd("swarm", "update", "--cert-expiry", "15m")
- c.Assert(err, checker.NotNil)
- c.Assert(out, checker.Contains, "minimum certificate expiry time")
- spec = getSpec()
- c.Assert(spec.CAConfig.NodeCertExpiry, checker.Equals, 30*time.Hour)
- }
- func (s *DockerSwarmSuite) TestSwarmInit(c *check.C) {
- d := s.AddDaemon(c, false, false)
- getSpec := func() swarm.Spec {
- sw := d.GetSwarm(c)
- return sw.Spec
- }
- out, err := d.Cmd("swarm", "init", "--cert-expiry", "30h", "--dispatcher-heartbeat", "11s")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- spec := getSpec()
- c.Assert(spec.CAConfig.NodeCertExpiry, checker.Equals, 30*time.Hour)
- c.Assert(spec.Dispatcher.HeartbeatPeriod, checker.Equals, 11*time.Second)
- c.Assert(d.Leave(true), checker.IsNil)
- time.Sleep(500 * time.Millisecond) // https://github.com/docker/swarmkit/issues/1421
- out, err = d.Cmd("swarm", "init")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- spec = getSpec()
- c.Assert(spec.CAConfig.NodeCertExpiry, checker.Equals, 90*24*time.Hour)
- c.Assert(spec.Dispatcher.HeartbeatPeriod, checker.Equals, 5*time.Second)
- }
- func (s *DockerSwarmSuite) TestSwarmInitIPv6(c *check.C) {
- testRequires(c, IPv6)
- d1 := s.AddDaemon(c, false, false)
- out, err := d1.Cmd("swarm", "init", "--listen-addr", "::1")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- d2 := s.AddDaemon(c, false, false)
- out, err = d2.Cmd("swarm", "join", "::1")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- out, err = d2.Cmd("info")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- c.Assert(out, checker.Contains, "Swarm: active")
- }
- func (s *DockerSwarmSuite) TestSwarmInitUnspecifiedAdvertiseAddr(c *check.C) {
- d := s.AddDaemon(c, false, false)
- out, err := d.Cmd("swarm", "init", "--advertise-addr", "0.0.0.0")
- c.Assert(err, checker.NotNil)
- c.Assert(out, checker.Contains, "advertise address must be a non-zero IP address")
- }
- func (s *DockerSwarmSuite) TestSwarmIncompatibleDaemon(c *check.C) {
- // init swarm mode and stop a daemon
- d := s.AddDaemon(c, true, true)
- info, err := d.SwarmInfo()
- c.Assert(err, checker.IsNil)
- c.Assert(info.LocalNodeState, checker.Equals, swarm.LocalNodeStateActive)
- d.Stop(c)
- // start a daemon with --cluster-store and --cluster-advertise
- err = d.StartWithError("--cluster-store=consul://consuladdr:consulport/some/path", "--cluster-advertise=1.1.1.1:2375")
- c.Assert(err, checker.NotNil)
- content, err := d.ReadLogFile()
- c.Assert(err, checker.IsNil)
- c.Assert(string(content), checker.Contains, "--cluster-store and --cluster-advertise daemon configurations are incompatible with swarm mode")
- // start a daemon with --live-restore
- err = d.StartWithError("--live-restore")
- c.Assert(err, checker.NotNil)
- content, err = d.ReadLogFile()
- c.Assert(err, checker.IsNil)
- c.Assert(string(content), checker.Contains, "--live-restore daemon configuration is incompatible with swarm mode")
- // restart for teardown
- d.Start(c)
- }
- func (s *DockerSwarmSuite) TestSwarmServiceTemplatingHostname(c *check.C) {
- d := s.AddDaemon(c, true, true)
- out, err := d.Cmd("service", "create", "--name", "test", "--hostname", "{{.Service.Name}}-{{.Task.Slot}}", "busybox", "top")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- // make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 1)
- containers := d.ActiveContainers()
- out, err = d.Cmd("inspect", "--type", "container", "--format", "{{.Config.Hostname}}", containers[0])
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(strings.Split(out, "\n")[0], checker.Equals, "test-1", check.Commentf("hostname with templating invalid"))
- }
- // Test case for #24270
- func (s *DockerSwarmSuite) TestSwarmServiceListFilter(c *check.C) {
- d := s.AddDaemon(c, true, true)
- name1 := "redis-cluster-md5"
- name2 := "redis-cluster"
- name3 := "other-cluster"
- out, err := d.Cmd("service", "create", "--name", name1, "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- out, err = d.Cmd("service", "create", "--name", name2, "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- out, err = d.Cmd("service", "create", "--name", name3, "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- filter1 := "name=redis-cluster-md5"
- filter2 := "name=redis-cluster"
- // We search checker.Contains with `name+" "` to prevent prefix only.
- out, err = d.Cmd("service", "ls", "--filter", filter1)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name1+" ")
- c.Assert(out, checker.Not(checker.Contains), name2+" ")
- c.Assert(out, checker.Not(checker.Contains), name3+" ")
- out, err = d.Cmd("service", "ls", "--filter", filter2)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name1+" ")
- c.Assert(out, checker.Contains, name2+" ")
- c.Assert(out, checker.Not(checker.Contains), name3+" ")
- out, err = d.Cmd("service", "ls")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name1+" ")
- c.Assert(out, checker.Contains, name2+" ")
- c.Assert(out, checker.Contains, name3+" ")
- }
- func (s *DockerSwarmSuite) TestSwarmNodeListFilter(c *check.C) {
- d := s.AddDaemon(c, true, true)
- out, err := d.Cmd("node", "inspect", "--format", "{{ .Description.Hostname }}", "self")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- name := strings.TrimSpace(out)
- filter := "name=" + name[:4]
- out, err = d.Cmd("node", "ls", "--filter", filter)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name)
- out, err = d.Cmd("node", "ls", "--filter", "name=none")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Not(checker.Contains), name)
- }
- func (s *DockerSwarmSuite) TestSwarmNodeTaskListFilter(c *check.C) {
- d := s.AddDaemon(c, true, true)
- name := "redis-cluster-md5"
- out, err := d.Cmd("service", "create", "--name", name, "--replicas=3", "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- // make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 3)
- filter := "name=redis-cluster"
- out, err = d.Cmd("node", "ps", "--filter", filter, "self")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name+".1")
- c.Assert(out, checker.Contains, name+".2")
- c.Assert(out, checker.Contains, name+".3")
- out, err = d.Cmd("node", "ps", "--filter", "name=none", "self")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Not(checker.Contains), name+".1")
- c.Assert(out, checker.Not(checker.Contains), name+".2")
- c.Assert(out, checker.Not(checker.Contains), name+".3")
- }
- // Test case for #25375
- func (s *DockerSwarmSuite) TestSwarmPublishAdd(c *check.C) {
- d := s.AddDaemon(c, true, true)
- name := "top"
- out, err := d.Cmd("service", "create", "--name", name, "--label", "x=y", "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- out, err = d.Cmd("service", "update", "--publish-add", "80:80", name)
- c.Assert(err, checker.IsNil)
- out, err = d.CmdRetryOutOfSequence("service", "update", "--publish-add", "80:80", name)
- c.Assert(err, checker.IsNil)
- out, err = d.CmdRetryOutOfSequence("service", "update", "--publish-add", "80:80", "--publish-add", "80:20", name)
- c.Assert(err, checker.NotNil)
- out, err = d.Cmd("service", "inspect", "--format", "{{ .Spec.EndpointSpec.Ports }}", name)
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Equals, "[{ tcp 80 80 ingress}]")
- }
- func (s *DockerSwarmSuite) TestSwarmServiceWithGroup(c *check.C) {
- d := s.AddDaemon(c, true, true)
- name := "top"
- out, err := d.Cmd("service", "create", "--name", name, "--user", "root:root", "--group", "wheel", "--group", "audio", "--group", "staff", "--group", "777", "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- // make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 1)
- out, err = d.Cmd("ps", "-q")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- container := strings.TrimSpace(out)
- out, err = d.Cmd("exec", container, "id")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Equals, "uid=0(root) gid=0(root) groups=10(wheel),29(audio),50(staff),777")
- }
- func (s *DockerSwarmSuite) TestSwarmContainerAutoStart(c *check.C) {
- d := s.AddDaemon(c, true, true)
- out, err := d.Cmd("network", "create", "--attachable", "-d", "overlay", "foo")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- out, err = d.Cmd("run", "-id", "--restart=always", "--net=foo", "--name=test", "busybox", "top")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- out, err = d.Cmd("ps", "-q")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- d.Restart(c)
- out, err = d.Cmd("ps", "-q")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- }
- func (s *DockerSwarmSuite) TestSwarmContainerEndpointOptions(c *check.C) {
- d := s.AddDaemon(c, true, true)
- out, err := d.Cmd("network", "create", "--attachable", "-d", "overlay", "foo")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- _, err = d.Cmd("run", "-d", "--net=foo", "--name=first", "--net-alias=first-alias", "busybox", "top")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- _, err = d.Cmd("run", "-d", "--net=foo", "--name=second", "busybox", "top")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- // ping first container and its alias
- _, err = d.Cmd("exec", "second", "ping", "-c", "1", "first")
- c.Assert(err, check.IsNil, check.Commentf(out))
- _, err = d.Cmd("exec", "second", "ping", "-c", "1", "first-alias")
- c.Assert(err, check.IsNil, check.Commentf(out))
- }
- func (s *DockerSwarmSuite) TestSwarmContainerAttachByNetworkId(c *check.C) {
- d := s.AddDaemon(c, true, true)
- out, err := d.Cmd("network", "create", "--attachable", "-d", "overlay", "testnet")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- networkID := strings.TrimSpace(out)
- out, err = d.Cmd("run", "-d", "--net", networkID, "busybox", "top")
- c.Assert(err, checker.IsNil)
- cID := strings.TrimSpace(out)
- d.WaitRun(cID)
- _, err = d.Cmd("rm", "-f", cID)
- c.Assert(err, checker.IsNil)
- _, err = d.Cmd("network", "rm", "testnet")
- c.Assert(err, checker.IsNil)
- checkNetwork := func(*check.C) (interface{}, check.CommentInterface) {
- out, err := d.Cmd("network", "ls")
- c.Assert(err, checker.IsNil)
- return out, nil
- }
- waitAndAssert(c, 3*time.Second, checkNetwork, checker.Not(checker.Contains), "testnet")
- }
- func (s *DockerSwarmSuite) TestOverlayAttachable(c *check.C) {
- d := s.AddDaemon(c, true, true)
- out, err := d.Cmd("network", "create", "-d", "overlay", "--attachable", "ovnet")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- // validate attachable
- out, err = d.Cmd("network", "inspect", "--format", "{{json .Attachable}}", "ovnet")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(strings.TrimSpace(out), checker.Equals, "true")
- // validate containers can attache to this overlay network
- out, err = d.Cmd("run", "-d", "--network", "ovnet", "--name", "c1", "busybox", "top")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- // redo validation, there was a bug that the value of attachable changes after
- // containers attach to the network
- out, err = d.Cmd("network", "inspect", "--format", "{{json .Attachable}}", "ovnet")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(strings.TrimSpace(out), checker.Equals, "true")
- }
- func (s *DockerSwarmSuite) TestOverlayAttachableOnSwarmLeave(c *check.C) {
- d := s.AddDaemon(c, true, true)
- // Create an attachable swarm network
- nwName := "attovl"
- out, err := d.Cmd("network", "create", "-d", "overlay", "--attachable", nwName)
- c.Assert(err, checker.IsNil, check.Commentf(out))
- // Connect a container to the network
- out, err = d.Cmd("run", "-d", "--network", nwName, "--name", "c1", "busybox", "top")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- // Leave the swarm
- err = d.Leave(true)
- c.Assert(err, checker.IsNil)
- // Check the container is disconnected
- out, err = d.Cmd("inspect", "c1", "--format", "{{.NetworkSettings.Networks."+nwName+"}}")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Equals, "<no value>")
- // Check the network is gone
- out, err = d.Cmd("network", "ls", "--format", "{{.Name}}")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Not(checker.Contains), nwName)
- }
- func (s *DockerSwarmSuite) TestSwarmRemoveInternalNetwork(c *check.C) {
- d := s.AddDaemon(c, true, true)
- name := "ingress"
- out, err := d.Cmd("network", "rm", name)
- c.Assert(err, checker.NotNil)
- c.Assert(strings.TrimSpace(out), checker.Contains, name)
- c.Assert(strings.TrimSpace(out), checker.Contains, "is a pre-defined network and cannot be removed")
- }
- // Test case for #24108, also the case from:
- // https://github.com/docker/docker/pull/24620#issuecomment-233715656
- func (s *DockerSwarmSuite) TestSwarmTaskListFilter(c *check.C) {
- d := s.AddDaemon(c, true, true)
- name := "redis-cluster-md5"
- out, err := d.Cmd("service", "create", "--name", name, "--replicas=3", "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- filter := "name=redis-cluster"
- checkNumTasks := func(*check.C) (interface{}, check.CommentInterface) {
- out, err := d.Cmd("service", "ps", "--filter", filter, name)
- c.Assert(err, checker.IsNil)
- return len(strings.Split(out, "\n")) - 2, nil // includes header and nl in last line
- }
- // wait until all tasks have been created
- waitAndAssert(c, defaultReconciliationTimeout, checkNumTasks, checker.Equals, 3)
- out, err = d.Cmd("service", "ps", "--filter", filter, name)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name+".1")
- c.Assert(out, checker.Contains, name+".2")
- c.Assert(out, checker.Contains, name+".3")
- out, err = d.Cmd("service", "ps", "--filter", "name="+name+".1", name)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name+".1")
- c.Assert(out, checker.Not(checker.Contains), name+".2")
- c.Assert(out, checker.Not(checker.Contains), name+".3")
- out, err = d.Cmd("service", "ps", "--filter", "name=none", name)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Not(checker.Contains), name+".1")
- c.Assert(out, checker.Not(checker.Contains), name+".2")
- c.Assert(out, checker.Not(checker.Contains), name+".3")
- name = "redis-cluster-sha1"
- out, err = d.Cmd("service", "create", "--name", name, "--mode=global", "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- waitAndAssert(c, defaultReconciliationTimeout, checkNumTasks, checker.Equals, 1)
- filter = "name=redis-cluster"
- out, err = d.Cmd("service", "ps", "--filter", filter, name)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name)
- out, err = d.Cmd("service", "ps", "--filter", "name="+name, name)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name)
- out, err = d.Cmd("service", "ps", "--filter", "name=none", name)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Not(checker.Contains), name)
- }
- func (s *DockerSwarmSuite) TestPsListContainersFilterIsTask(c *check.C) {
- d := s.AddDaemon(c, true, true)
- // Create a bare container
- out, err := d.Cmd("run", "-d", "--name=bare-container", "busybox", "top")
- c.Assert(err, checker.IsNil)
- bareID := strings.TrimSpace(out)[:12]
- // Create a service
- name := "busybox-top"
- out, err = d.Cmd("service", "create", "--name", name, "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- // make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckServiceRunningTasks(name), checker.Equals, 1)
- // Filter non-tasks
- out, err = d.Cmd("ps", "-a", "-q", "--filter=is-task=false")
- c.Assert(err, checker.IsNil)
- psOut := strings.TrimSpace(out)
- c.Assert(psOut, checker.Equals, bareID, check.Commentf("Expected id %s, got %s for is-task label, output %q", bareID, psOut, out))
- // Filter tasks
- out, err = d.Cmd("ps", "-a", "-q", "--filter=is-task=true")
- c.Assert(err, checker.IsNil)
- lines := strings.Split(strings.Trim(out, "\n "), "\n")
- c.Assert(lines, checker.HasLen, 1)
- c.Assert(lines[0], checker.Not(checker.Equals), bareID, check.Commentf("Expected not %s, but got it for is-task label, output %q", bareID, out))
- }
- const globalNetworkPlugin = "global-network-plugin"
- const globalIPAMPlugin = "global-ipam-plugin"
- func setupRemoteGlobalNetworkPlugin(c *check.C, mux *http.ServeMux, url, netDrv, ipamDrv string) {
- mux.HandleFunc("/Plugin.Activate", func(w http.ResponseWriter, r *http.Request) {
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- fmt.Fprintf(w, `{"Implements": ["%s", "%s"]}`, driverapi.NetworkPluginEndpointType, ipamapi.PluginEndpointType)
- })
- // Network driver implementation
- mux.HandleFunc(fmt.Sprintf("/%s.GetCapabilities", driverapi.NetworkPluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- fmt.Fprintf(w, `{"Scope":"global"}`)
- })
- mux.HandleFunc(fmt.Sprintf("/%s.AllocateNetwork", driverapi.NetworkPluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- err := json.NewDecoder(r.Body).Decode(&remoteDriverNetworkRequest)
- if err != nil {
- http.Error(w, "Unable to decode JSON payload: "+err.Error(), http.StatusBadRequest)
- return
- }
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- fmt.Fprintf(w, "null")
- })
- mux.HandleFunc(fmt.Sprintf("/%s.FreeNetwork", driverapi.NetworkPluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- fmt.Fprintf(w, "null")
- })
- mux.HandleFunc(fmt.Sprintf("/%s.CreateNetwork", driverapi.NetworkPluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- err := json.NewDecoder(r.Body).Decode(&remoteDriverNetworkRequest)
- if err != nil {
- http.Error(w, "Unable to decode JSON payload: "+err.Error(), http.StatusBadRequest)
- return
- }
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- fmt.Fprintf(w, "null")
- })
- mux.HandleFunc(fmt.Sprintf("/%s.DeleteNetwork", driverapi.NetworkPluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- fmt.Fprintf(w, "null")
- })
- mux.HandleFunc(fmt.Sprintf("/%s.CreateEndpoint", driverapi.NetworkPluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- fmt.Fprintf(w, `{"Interface":{"MacAddress":"a0:b1:c2:d3:e4:f5"}}`)
- })
- mux.HandleFunc(fmt.Sprintf("/%s.Join", driverapi.NetworkPluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- veth := &netlink.Veth{
- LinkAttrs: netlink.LinkAttrs{Name: "randomIfName", TxQLen: 0}, PeerName: "cnt0"}
- if err := netlink.LinkAdd(veth); err != nil {
- fmt.Fprintf(w, `{"Error":"failed to add veth pair: `+err.Error()+`"}`)
- } else {
- fmt.Fprintf(w, `{"InterfaceName":{ "SrcName":"cnt0", "DstPrefix":"veth"}}`)
- }
- })
- mux.HandleFunc(fmt.Sprintf("/%s.Leave", driverapi.NetworkPluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- fmt.Fprintf(w, "null")
- })
- mux.HandleFunc(fmt.Sprintf("/%s.DeleteEndpoint", driverapi.NetworkPluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- if link, err := netlink.LinkByName("cnt0"); err == nil {
- netlink.LinkDel(link)
- }
- fmt.Fprintf(w, "null")
- })
- // IPAM Driver implementation
- var (
- poolRequest remoteipam.RequestPoolRequest
- poolReleaseReq remoteipam.ReleasePoolRequest
- addressRequest remoteipam.RequestAddressRequest
- addressReleaseReq remoteipam.ReleaseAddressRequest
- lAS = "localAS"
- gAS = "globalAS"
- pool = "172.28.0.0/16"
- poolID = lAS + "/" + pool
- gw = "172.28.255.254/16"
- )
- mux.HandleFunc(fmt.Sprintf("/%s.GetDefaultAddressSpaces", ipamapi.PluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- fmt.Fprintf(w, `{"LocalDefaultAddressSpace":"`+lAS+`", "GlobalDefaultAddressSpace": "`+gAS+`"}`)
- })
- mux.HandleFunc(fmt.Sprintf("/%s.RequestPool", ipamapi.PluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- err := json.NewDecoder(r.Body).Decode(&poolRequest)
- if err != nil {
- http.Error(w, "Unable to decode JSON payload: "+err.Error(), http.StatusBadRequest)
- return
- }
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- if poolRequest.AddressSpace != lAS && poolRequest.AddressSpace != gAS {
- fmt.Fprintf(w, `{"Error":"Unknown address space in pool request: `+poolRequest.AddressSpace+`"}`)
- } else if poolRequest.Pool != "" && poolRequest.Pool != pool {
- fmt.Fprintf(w, `{"Error":"Cannot handle explicit pool requests yet"}`)
- } else {
- fmt.Fprintf(w, `{"PoolID":"`+poolID+`", "Pool":"`+pool+`"}`)
- }
- })
- mux.HandleFunc(fmt.Sprintf("/%s.RequestAddress", ipamapi.PluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- err := json.NewDecoder(r.Body).Decode(&addressRequest)
- if err != nil {
- http.Error(w, "Unable to decode JSON payload: "+err.Error(), http.StatusBadRequest)
- return
- }
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- // make sure libnetwork is now querying on the expected pool id
- if addressRequest.PoolID != poolID {
- fmt.Fprintf(w, `{"Error":"unknown pool id"}`)
- } else if addressRequest.Address != "" {
- fmt.Fprintf(w, `{"Error":"Cannot handle explicit address requests yet"}`)
- } else {
- fmt.Fprintf(w, `{"Address":"`+gw+`"}`)
- }
- })
- mux.HandleFunc(fmt.Sprintf("/%s.ReleaseAddress", ipamapi.PluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- err := json.NewDecoder(r.Body).Decode(&addressReleaseReq)
- if err != nil {
- http.Error(w, "Unable to decode JSON payload: "+err.Error(), http.StatusBadRequest)
- return
- }
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- // make sure libnetwork is now asking to release the expected address from the expected poolid
- if addressRequest.PoolID != poolID {
- fmt.Fprintf(w, `{"Error":"unknown pool id"}`)
- } else if addressReleaseReq.Address != gw {
- fmt.Fprintf(w, `{"Error":"unknown address"}`)
- } else {
- fmt.Fprintf(w, "null")
- }
- })
- mux.HandleFunc(fmt.Sprintf("/%s.ReleasePool", ipamapi.PluginEndpointType), func(w http.ResponseWriter, r *http.Request) {
- err := json.NewDecoder(r.Body).Decode(&poolReleaseReq)
- if err != nil {
- http.Error(w, "Unable to decode JSON payload: "+err.Error(), http.StatusBadRequest)
- return
- }
- w.Header().Set("Content-Type", "application/vnd.docker.plugins.v1+json")
- // make sure libnetwork is now asking to release the expected poolid
- if addressRequest.PoolID != poolID {
- fmt.Fprintf(w, `{"Error":"unknown pool id"}`)
- } else {
- fmt.Fprintf(w, "null")
- }
- })
- err := os.MkdirAll("/etc/docker/plugins", 0755)
- c.Assert(err, checker.IsNil)
- fileName := fmt.Sprintf("/etc/docker/plugins/%s.spec", netDrv)
- err = ioutil.WriteFile(fileName, []byte(url), 0644)
- c.Assert(err, checker.IsNil)
- ipamFileName := fmt.Sprintf("/etc/docker/plugins/%s.spec", ipamDrv)
- err = ioutil.WriteFile(ipamFileName, []byte(url), 0644)
- c.Assert(err, checker.IsNil)
- }
- func (s *DockerSwarmSuite) TestSwarmNetworkPlugin(c *check.C) {
- mux := http.NewServeMux()
- s.server = httptest.NewServer(mux)
- c.Assert(s.server, check.NotNil, check.Commentf("Failed to start an HTTP Server"))
- setupRemoteGlobalNetworkPlugin(c, mux, s.server.URL, globalNetworkPlugin, globalIPAMPlugin)
- defer func() {
- s.server.Close()
- err := os.RemoveAll("/etc/docker/plugins")
- c.Assert(err, checker.IsNil)
- }()
- d := s.AddDaemon(c, true, true)
- out, err := d.Cmd("network", "create", "-d", globalNetworkPlugin, "foo")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- name := "top"
- out, err = d.Cmd("service", "create", "--name", name, "--network", "foo", "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- out, err = d.Cmd("service", "inspect", "--format", "{{range .Spec.Networks}}{{.Target}}{{end}}", name)
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Equals, "foo")
- }
- // Test case for #24712
- func (s *DockerSwarmSuite) TestSwarmServiceEnvFile(c *check.C) {
- d := s.AddDaemon(c, true, true)
- path := filepath.Join(d.Folder, "env.txt")
- err := ioutil.WriteFile(path, []byte("VAR1=A\nVAR2=A\n"), 0644)
- c.Assert(err, checker.IsNil)
- name := "worker"
- out, err := d.Cmd("service", "create", "--env-file", path, "--env", "VAR1=B", "--env", "VAR1=C", "--env", "VAR2=", "--env", "VAR2", "--name", name, "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- // The complete env is [VAR1=A VAR2=A VAR1=B VAR1=C VAR2= VAR2] and duplicates will be removed => [VAR1=C VAR2]
- out, err = d.Cmd("inspect", "--format", "{{ .Spec.TaskTemplate.ContainerSpec.Env }}", name)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, "[VAR1=C VAR2]")
- }
- func (s *DockerSwarmSuite) TestSwarmServiceTTY(c *check.C) {
- d := s.AddDaemon(c, true, true)
- name := "top"
- ttyCheck := "if [ -t 0 ]; then echo TTY > /status && top; else echo none > /status && top; fi"
- // Without --tty
- expectedOutput := "none"
- out, err := d.Cmd("service", "create", "--name", name, "busybox", "sh", "-c", ttyCheck)
- c.Assert(err, checker.IsNil)
- // Make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 1)
- // We need to get the container id.
- out, err = d.Cmd("ps", "-a", "-q", "--no-trunc")
- c.Assert(err, checker.IsNil)
- id := strings.TrimSpace(out)
- out, err = d.Cmd("exec", id, "cat", "/status")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, expectedOutput, check.Commentf("Expected '%s', but got %q", expectedOutput, out))
- // Remove service
- out, err = d.Cmd("service", "rm", name)
- c.Assert(err, checker.IsNil)
- // Make sure container has been destroyed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 0)
- // With --tty
- expectedOutput = "TTY"
- out, err = d.Cmd("service", "create", "--name", name, "--tty", "busybox", "sh", "-c", ttyCheck)
- c.Assert(err, checker.IsNil)
- // Make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 1)
- // We need to get the container id.
- out, err = d.Cmd("ps", "-a", "-q", "--no-trunc")
- c.Assert(err, checker.IsNil)
- id = strings.TrimSpace(out)
- out, err = d.Cmd("exec", id, "cat", "/status")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, expectedOutput, check.Commentf("Expected '%s', but got %q", expectedOutput, out))
- }
- func (s *DockerSwarmSuite) TestSwarmServiceTTYUpdate(c *check.C) {
- d := s.AddDaemon(c, true, true)
- // Create a service
- name := "top"
- _, err := d.Cmd("service", "create", "--name", name, "busybox", "top")
- c.Assert(err, checker.IsNil)
- // Make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 1)
- out, err := d.Cmd("service", "inspect", "--format", "{{ .Spec.TaskTemplate.ContainerSpec.TTY }}", name)
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Equals, "false")
- _, err = d.Cmd("service", "update", "--tty", name)
- c.Assert(err, checker.IsNil)
- out, err = d.Cmd("service", "inspect", "--format", "{{ .Spec.TaskTemplate.ContainerSpec.TTY }}", name)
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Equals, "true")
- }
- func (s *DockerSwarmSuite) TestDNSConfig(c *check.C) {
- d := s.AddDaemon(c, true, true)
- // Create a service
- name := "top"
- _, err := d.Cmd("service", "create", "--name", name, "--dns=1.2.3.4", "--dns-search=example.com", "--dns-option=timeout:3", "busybox", "top")
- c.Assert(err, checker.IsNil)
- // Make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 1)
- // We need to get the container id.
- out, err := d.Cmd("ps", "-a", "-q", "--no-trunc")
- c.Assert(err, checker.IsNil)
- id := strings.TrimSpace(out)
- // Compare against expected output.
- expectedOutput1 := "nameserver 1.2.3.4"
- expectedOutput2 := "search example.com"
- expectedOutput3 := "options timeout:3"
- out, err = d.Cmd("exec", id, "cat", "/etc/resolv.conf")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, expectedOutput1, check.Commentf("Expected '%s', but got %q", expectedOutput1, out))
- c.Assert(out, checker.Contains, expectedOutput2, check.Commentf("Expected '%s', but got %q", expectedOutput2, out))
- c.Assert(out, checker.Contains, expectedOutput3, check.Commentf("Expected '%s', but got %q", expectedOutput3, out))
- }
- func (s *DockerSwarmSuite) TestDNSConfigUpdate(c *check.C) {
- d := s.AddDaemon(c, true, true)
- // Create a service
- name := "top"
- _, err := d.Cmd("service", "create", "--name", name, "busybox", "top")
- c.Assert(err, checker.IsNil)
- // Make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 1)
- _, err = d.Cmd("service", "update", "--dns-add=1.2.3.4", "--dns-search-add=example.com", "--dns-option-add=timeout:3", name)
- c.Assert(err, checker.IsNil)
- out, err := d.Cmd("service", "inspect", "--format", "{{ .Spec.TaskTemplate.ContainerSpec.DNSConfig }}", name)
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Equals, "{[1.2.3.4] [example.com] [timeout:3]}")
- }
- func getNodeStatus(c *check.C, d *daemon.Swarm) swarm.LocalNodeState {
- info, err := d.SwarmInfo()
- c.Assert(err, checker.IsNil)
- return info.LocalNodeState
- }
- func checkSwarmLockedToUnlocked(c *check.C, d *daemon.Swarm, unlockKey string) {
- d.Restart(c)
- status := getNodeStatus(c, d)
- if status == swarm.LocalNodeStateLocked {
- // it must not have updated to be unlocked in time - unlock, wait 3 seconds, and try again
- cmd := d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(unlockKey)
- icmd.RunCmd(cmd).Assert(c, icmd.Success)
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateActive)
- time.Sleep(3 * time.Second)
- d.Restart(c)
- }
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateActive)
- }
- func checkSwarmUnlockedToLocked(c *check.C, d *daemon.Swarm) {
- d.Restart(c)
- status := getNodeStatus(c, d)
- if status == swarm.LocalNodeStateActive {
- // it must not have updated to be unlocked in time - wait 3 seconds, and try again
- time.Sleep(3 * time.Second)
- d.Restart(c)
- }
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateLocked)
- }
- func (s *DockerSwarmSuite) TestUnlockEngineAndUnlockedSwarm(c *check.C) {
- d := s.AddDaemon(c, false, false)
- // unlocking a normal engine should return an error - it does not even ask for the key
- cmd := d.Command("swarm", "unlock")
- result := icmd.RunCmd(cmd)
- result.Assert(c, icmd.Expected{
- ExitCode: 1,
- })
- c.Assert(result.Combined(), checker.Contains, "Error: This node is not part of a swarm")
- c.Assert(result.Combined(), checker.Not(checker.Contains), "Please enter unlock key")
- _, err := d.Cmd("swarm", "init")
- c.Assert(err, checker.IsNil)
- // unlocking an unlocked swarm should return an error - it does not even ask for the key
- cmd = d.Command("swarm", "unlock")
- result = icmd.RunCmd(cmd)
- result.Assert(c, icmd.Expected{
- ExitCode: 1,
- })
- c.Assert(result.Combined(), checker.Contains, "Error: swarm is not locked")
- c.Assert(result.Combined(), checker.Not(checker.Contains), "Please enter unlock key")
- }
- func (s *DockerSwarmSuite) TestSwarmInitLocked(c *check.C) {
- d := s.AddDaemon(c, false, false)
- outs, err := d.Cmd("swarm", "init", "--autolock")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- c.Assert(outs, checker.Contains, "docker swarm unlock")
- var unlockKey string
- for _, line := range strings.Split(outs, "\n") {
- if strings.Contains(line, "SWMKEY") {
- unlockKey = strings.TrimSpace(line)
- break
- }
- }
- c.Assert(unlockKey, checker.Not(checker.Equals), "")
- outs, err = d.Cmd("swarm", "unlock-key", "-q")
- c.Assert(outs, checker.Equals, unlockKey+"\n")
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateActive)
- // It starts off locked
- d.Restart(c)
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateLocked)
- cmd := d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString("wrong-secret-key")
- icmd.RunCmd(cmd).Assert(c, icmd.Expected{
- ExitCode: 1,
- Err: "invalid key",
- })
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateLocked)
- cmd = d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(unlockKey)
- icmd.RunCmd(cmd).Assert(c, icmd.Success)
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateActive)
- outs, err = d.Cmd("node", "ls")
- c.Assert(err, checker.IsNil)
- c.Assert(outs, checker.Not(checker.Contains), "Swarm is encrypted and needs to be unlocked")
- outs, err = d.Cmd("swarm", "update", "--autolock=false")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- checkSwarmLockedToUnlocked(c, d, unlockKey)
- outs, err = d.Cmd("node", "ls")
- c.Assert(err, checker.IsNil)
- c.Assert(outs, checker.Not(checker.Contains), "Swarm is encrypted and needs to be unlocked")
- }
- func (s *DockerSwarmSuite) TestSwarmLeaveLocked(c *check.C) {
- d := s.AddDaemon(c, false, false)
- outs, err := d.Cmd("swarm", "init", "--autolock")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- // It starts off locked
- d.Restart(c, "--swarm-default-advertise-addr=lo")
- info, err := d.SwarmInfo()
- c.Assert(err, checker.IsNil)
- c.Assert(info.LocalNodeState, checker.Equals, swarm.LocalNodeStateLocked)
- outs, _ = d.Cmd("node", "ls")
- c.Assert(outs, checker.Contains, "Swarm is encrypted and needs to be unlocked")
- // `docker swarm leave` a locked swarm without --force will return an error
- outs, _ = d.Cmd("swarm", "leave")
- c.Assert(outs, checker.Contains, "Swarm is encrypted and locked.")
- // It is OK for user to leave a locked swarm with --force
- outs, err = d.Cmd("swarm", "leave", "--force")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- info, err = d.SwarmInfo()
- c.Assert(err, checker.IsNil)
- c.Assert(info.LocalNodeState, checker.Equals, swarm.LocalNodeStateInactive)
- outs, err = d.Cmd("swarm", "init")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- info, err = d.SwarmInfo()
- c.Assert(err, checker.IsNil)
- c.Assert(info.LocalNodeState, checker.Equals, swarm.LocalNodeStateActive)
- }
- func (s *DockerSwarmSuite) TestSwarmLockUnlockCluster(c *check.C) {
- d1 := s.AddDaemon(c, true, true)
- d2 := s.AddDaemon(c, true, true)
- d3 := s.AddDaemon(c, true, true)
- // they start off unlocked
- d2.Restart(c)
- c.Assert(getNodeStatus(c, d2), checker.Equals, swarm.LocalNodeStateActive)
- // stop this one so it does not get autolock info
- d2.Stop(c)
- // enable autolock
- outs, err := d1.Cmd("swarm", "update", "--autolock")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- c.Assert(outs, checker.Contains, "docker swarm unlock")
- var unlockKey string
- for _, line := range strings.Split(outs, "\n") {
- if strings.Contains(line, "SWMKEY") {
- unlockKey = strings.TrimSpace(line)
- break
- }
- }
- c.Assert(unlockKey, checker.Not(checker.Equals), "")
- outs, err = d1.Cmd("swarm", "unlock-key", "-q")
- c.Assert(outs, checker.Equals, unlockKey+"\n")
- // The ones that got the cluster update should be set to locked
- for _, d := range []*daemon.Swarm{d1, d3} {
- checkSwarmUnlockedToLocked(c, d)
- cmd := d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(unlockKey)
- icmd.RunCmd(cmd).Assert(c, icmd.Success)
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateActive)
- }
- // d2 never got the cluster update, so it is still set to unlocked
- d2.Start(c)
- c.Assert(getNodeStatus(c, d2), checker.Equals, swarm.LocalNodeStateActive)
- // d2 is now set to lock
- checkSwarmUnlockedToLocked(c, d2)
- // leave it locked, and set the cluster to no longer autolock
- outs, err = d1.Cmd("swarm", "update", "--autolock=false")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- // the ones that got the update are now set to unlocked
- for _, d := range []*daemon.Swarm{d1, d3} {
- checkSwarmLockedToUnlocked(c, d, unlockKey)
- }
- // d2 still locked
- c.Assert(getNodeStatus(c, d2), checker.Equals, swarm.LocalNodeStateLocked)
- // unlock it
- cmd := d2.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(unlockKey)
- icmd.RunCmd(cmd).Assert(c, icmd.Success)
- c.Assert(getNodeStatus(c, d2), checker.Equals, swarm.LocalNodeStateActive)
- // once it's caught up, d2 is set to not be locked
- checkSwarmLockedToUnlocked(c, d2, unlockKey)
- // managers who join now are never set to locked in the first place
- d4 := s.AddDaemon(c, true, true)
- d4.Restart(c)
- c.Assert(getNodeStatus(c, d4), checker.Equals, swarm.LocalNodeStateActive)
- }
- func (s *DockerSwarmSuite) TestSwarmJoinPromoteLocked(c *check.C) {
- d1 := s.AddDaemon(c, true, true)
- // enable autolock
- outs, err := d1.Cmd("swarm", "update", "--autolock")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- c.Assert(outs, checker.Contains, "docker swarm unlock")
- var unlockKey string
- for _, line := range strings.Split(outs, "\n") {
- if strings.Contains(line, "SWMKEY") {
- unlockKey = strings.TrimSpace(line)
- break
- }
- }
- c.Assert(unlockKey, checker.Not(checker.Equals), "")
- outs, err = d1.Cmd("swarm", "unlock-key", "-q")
- c.Assert(outs, checker.Equals, unlockKey+"\n")
- // joined workers start off unlocked
- d2 := s.AddDaemon(c, true, false)
- d2.Restart(c)
- c.Assert(getNodeStatus(c, d2), checker.Equals, swarm.LocalNodeStateActive)
- // promote worker
- outs, err = d1.Cmd("node", "promote", d2.Info.NodeID)
- c.Assert(err, checker.IsNil)
- c.Assert(outs, checker.Contains, "promoted to a manager in the swarm")
- // join new manager node
- d3 := s.AddDaemon(c, true, true)
- // both new nodes are locked
- for _, d := range []*daemon.Swarm{d2, d3} {
- checkSwarmUnlockedToLocked(c, d)
- cmd := d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(unlockKey)
- icmd.RunCmd(cmd).Assert(c, icmd.Success)
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateActive)
- }
- // get d3's cert
- d3cert, err := ioutil.ReadFile(filepath.Join(d3.Folder, "root", "swarm", "certificates", "swarm-node.crt"))
- c.Assert(err, checker.IsNil)
- // demote manager back to worker - workers are not locked
- outs, err = d1.Cmd("node", "demote", d3.Info.NodeID)
- c.Assert(err, checker.IsNil)
- c.Assert(outs, checker.Contains, "demoted in the swarm")
- // Wait for it to actually be demoted, for the key and cert to be replaced.
- // Then restart and assert that the node is not locked. If we don't wait for the cert
- // to be replaced, then the node still has the manager TLS key which is still locked
- // (because we never want a manager TLS key to be on disk unencrypted if the cluster
- // is set to autolock)
- waitAndAssert(c, defaultReconciliationTimeout, d3.CheckControlAvailable, checker.False)
- waitAndAssert(c, defaultReconciliationTimeout, func(c *check.C) (interface{}, check.CommentInterface) {
- cert, err := ioutil.ReadFile(filepath.Join(d3.Folder, "root", "swarm", "certificates", "swarm-node.crt"))
- if err != nil {
- return "", check.Commentf("error: %v", err)
- }
- return string(cert), check.Commentf("cert: %v", string(cert))
- }, checker.Not(checker.Equals), string(d3cert))
- // by now, it should *never* be locked on restart
- d3.Restart(c)
- c.Assert(getNodeStatus(c, d3), checker.Equals, swarm.LocalNodeStateActive)
- }
- func (s *DockerSwarmSuite) TestSwarmRotateUnlockKey(c *check.C) {
- d := s.AddDaemon(c, true, true)
- outs, err := d.Cmd("swarm", "update", "--autolock")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- c.Assert(outs, checker.Contains, "docker swarm unlock")
- var unlockKey string
- for _, line := range strings.Split(outs, "\n") {
- if strings.Contains(line, "SWMKEY") {
- unlockKey = strings.TrimSpace(line)
- break
- }
- }
- c.Assert(unlockKey, checker.Not(checker.Equals), "")
- outs, err = d.Cmd("swarm", "unlock-key", "-q")
- c.Assert(outs, checker.Equals, unlockKey+"\n")
- // Rotate multiple times
- for i := 0; i != 3; i++ {
- outs, err = d.Cmd("swarm", "unlock-key", "-q", "--rotate")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- // Strip \n
- newUnlockKey := outs[:len(outs)-1]
- c.Assert(newUnlockKey, checker.Not(checker.Equals), "")
- c.Assert(newUnlockKey, checker.Not(checker.Equals), unlockKey)
- d.Restart(c)
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateLocked)
- outs, _ = d.Cmd("node", "ls")
- c.Assert(outs, checker.Contains, "Swarm is encrypted and needs to be unlocked")
- cmd := d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(unlockKey)
- result := icmd.RunCmd(cmd)
- if result.Error == nil {
- // On occasion, the daemon may not have finished
- // rotating the KEK before restarting. The test is
- // intentionally written to explore this behavior.
- // When this happens, unlocking with the old key will
- // succeed. If we wait for the rotation to happen and
- // restart again, the new key should be required this
- // time.
- time.Sleep(3 * time.Second)
- d.Restart(c)
- cmd = d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(unlockKey)
- result = icmd.RunCmd(cmd)
- }
- result.Assert(c, icmd.Expected{
- ExitCode: 1,
- Err: "invalid key",
- })
- outs, _ = d.Cmd("node", "ls")
- c.Assert(outs, checker.Contains, "Swarm is encrypted and needs to be unlocked")
- cmd = d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(newUnlockKey)
- icmd.RunCmd(cmd).Assert(c, icmd.Success)
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateActive)
- outs, err = d.Cmd("node", "ls")
- c.Assert(err, checker.IsNil)
- c.Assert(outs, checker.Not(checker.Contains), "Swarm is encrypted and needs to be unlocked")
- unlockKey = newUnlockKey
- }
- }
- // This differs from `TestSwarmRotateUnlockKey` because that one rotates a single node, which is the leader.
- // This one keeps the leader up, and asserts that other manager nodes in the cluster also have their unlock
- // key rotated.
- func (s *DockerSwarmSuite) TestSwarmClusterRotateUnlockKey(c *check.C) {
- d1 := s.AddDaemon(c, true, true) // leader - don't restart this one, we don't want leader election delays
- d2 := s.AddDaemon(c, true, true)
- d3 := s.AddDaemon(c, true, true)
- outs, err := d1.Cmd("swarm", "update", "--autolock")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- c.Assert(outs, checker.Contains, "docker swarm unlock")
- var unlockKey string
- for _, line := range strings.Split(outs, "\n") {
- if strings.Contains(line, "SWMKEY") {
- unlockKey = strings.TrimSpace(line)
- break
- }
- }
- c.Assert(unlockKey, checker.Not(checker.Equals), "")
- outs, err = d1.Cmd("swarm", "unlock-key", "-q")
- c.Assert(outs, checker.Equals, unlockKey+"\n")
- // Rotate multiple times
- for i := 0; i != 3; i++ {
- outs, err = d1.Cmd("swarm", "unlock-key", "-q", "--rotate")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- // Strip \n
- newUnlockKey := outs[:len(outs)-1]
- c.Assert(newUnlockKey, checker.Not(checker.Equals), "")
- c.Assert(newUnlockKey, checker.Not(checker.Equals), unlockKey)
- d2.Restart(c)
- d3.Restart(c)
- for _, d := range []*daemon.Swarm{d2, d3} {
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateLocked)
- outs, _ := d.Cmd("node", "ls")
- c.Assert(outs, checker.Contains, "Swarm is encrypted and needs to be unlocked")
- cmd := d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(unlockKey)
- result := icmd.RunCmd(cmd)
- if result.Error == nil {
- // On occasion, the daemon may not have finished
- // rotating the KEK before restarting. The test is
- // intentionally written to explore this behavior.
- // When this happens, unlocking with the old key will
- // succeed. If we wait for the rotation to happen and
- // restart again, the new key should be required this
- // time.
- time.Sleep(3 * time.Second)
- d.Restart(c)
- cmd = d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(unlockKey)
- result = icmd.RunCmd(cmd)
- }
- result.Assert(c, icmd.Expected{
- ExitCode: 1,
- Err: "invalid key",
- })
- outs, _ = d.Cmd("node", "ls")
- c.Assert(outs, checker.Contains, "Swarm is encrypted and needs to be unlocked")
- cmd = d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(newUnlockKey)
- icmd.RunCmd(cmd).Assert(c, icmd.Success)
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateActive)
- outs, err = d.Cmd("node", "ls")
- c.Assert(err, checker.IsNil)
- c.Assert(outs, checker.Not(checker.Contains), "Swarm is encrypted and needs to be unlocked")
- }
- unlockKey = newUnlockKey
- }
- }
- func (s *DockerSwarmSuite) TestSwarmAlternateLockUnlock(c *check.C) {
- d := s.AddDaemon(c, true, true)
- var unlockKey string
- for i := 0; i < 2; i++ {
- // set to lock
- outs, err := d.Cmd("swarm", "update", "--autolock")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- c.Assert(outs, checker.Contains, "docker swarm unlock")
- for _, line := range strings.Split(outs, "\n") {
- if strings.Contains(line, "SWMKEY") {
- unlockKey = strings.TrimSpace(line)
- break
- }
- }
- c.Assert(unlockKey, checker.Not(checker.Equals), "")
- checkSwarmUnlockedToLocked(c, d)
- cmd := d.Command("swarm", "unlock")
- cmd.Stdin = bytes.NewBufferString(unlockKey)
- icmd.RunCmd(cmd).Assert(c, icmd.Success)
- c.Assert(getNodeStatus(c, d), checker.Equals, swarm.LocalNodeStateActive)
- outs, err = d.Cmd("swarm", "update", "--autolock=false")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", outs))
- checkSwarmLockedToUnlocked(c, d, unlockKey)
- }
- }
- func (s *DockerSwarmSuite) TestExtraHosts(c *check.C) {
- d := s.AddDaemon(c, true, true)
- // Create a service
- name := "top"
- _, err := d.Cmd("service", "create", "--name", name, "--host=example.com:1.2.3.4", "busybox", "top")
- c.Assert(err, checker.IsNil)
- // Make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 1)
- // We need to get the container id.
- out, err := d.Cmd("ps", "-a", "-q", "--no-trunc")
- c.Assert(err, checker.IsNil)
- id := strings.TrimSpace(out)
- // Compare against expected output.
- expectedOutput := "1.2.3.4\texample.com"
- out, err = d.Cmd("exec", id, "cat", "/etc/hosts")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, expectedOutput, check.Commentf("Expected '%s', but got %q", expectedOutput, out))
- }
- func (s *DockerSwarmSuite) TestSwarmManagerAddress(c *check.C) {
- d1 := s.AddDaemon(c, true, true)
- d2 := s.AddDaemon(c, true, false)
- d3 := s.AddDaemon(c, true, false)
- // Manager Addresses will always show Node 1's address
- expectedOutput := fmt.Sprintf("Manager Addresses:\n 127.0.0.1:%d\n", d1.Port)
- out, err := d1.Cmd("info")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, expectedOutput)
- out, err = d2.Cmd("info")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, expectedOutput)
- out, err = d3.Cmd("info")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, expectedOutput)
- }
- func (s *DockerSwarmSuite) TestSwarmServiceInspectPretty(c *check.C) {
- d := s.AddDaemon(c, true, true)
- name := "top"
- out, err := d.Cmd("service", "create", "--name", name, "--limit-cpu=0.5", "busybox", "top")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- expectedOutput := `
- Resources:
- Limits:
- CPU: 0.5`
- out, err = d.Cmd("service", "inspect", "--pretty", name)
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(out, checker.Contains, expectedOutput, check.Commentf(out))
- }
- func (s *DockerSwarmSuite) TestSwarmNetworkIPAMOptions(c *check.C) {
- d := s.AddDaemon(c, true, true)
- out, err := d.Cmd("network", "create", "-d", "overlay", "--ipam-opt", "foo=bar", "foo")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- out, err = d.Cmd("network", "inspect", "--format", "{{.IPAM.Options}}", "foo")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(strings.TrimSpace(out), checker.Equals, "map[foo:bar]")
- out, err = d.Cmd("service", "create", "--network=foo", "--name", "top", "busybox", "top")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- // make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 1)
- out, err = d.Cmd("network", "inspect", "--format", "{{.IPAM.Options}}", "foo")
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(strings.TrimSpace(out), checker.Equals, "map[foo:bar]")
- }
- func (s *DockerTrustedSwarmSuite) TestTrustedServiceCreate(c *check.C) {
- d := s.swarmSuite.AddDaemon(c, true, true)
- // Attempt creating a service from an image that is known to notary.
- repoName := s.trustSuite.setupTrustedImage(c, "trusted-pull")
- name := "trusted"
- serviceCmd := d.Command("-D", "service", "create", "--name", name, repoName, "top")
- icmd.RunCmd(serviceCmd, trustedCmd).Assert(c, icmd.Expected{
- Err: "resolved image tag to",
- })
- out, err := d.Cmd("service", "inspect", "--pretty", name)
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(out, checker.Contains, repoName+"@", check.Commentf(out))
- // Try trusted service create on an untrusted tag.
- repoName = fmt.Sprintf("%v/untrustedservicecreate/createtest:latest", privateRegistryURL)
- // tag the image and upload it to the private registry
- dockerCmd(c, "tag", "busybox", repoName)
- dockerCmd(c, "push", repoName)
- dockerCmd(c, "rmi", repoName)
- name = "untrusted"
- serviceCmd = d.Command("service", "create", "--name", name, repoName, "top")
- icmd.RunCmd(serviceCmd, trustedCmd).Assert(c, icmd.Expected{
- ExitCode: 1,
- Err: "Error: remote trust data does not exist",
- })
- out, err = d.Cmd("service", "inspect", "--pretty", name)
- c.Assert(err, checker.NotNil, check.Commentf(out))
- }
- func (s *DockerTrustedSwarmSuite) TestTrustedServiceUpdate(c *check.C) {
- d := s.swarmSuite.AddDaemon(c, true, true)
- // Attempt creating a service from an image that is known to notary.
- repoName := s.trustSuite.setupTrustedImage(c, "trusted-pull")
- name := "myservice"
- // Create a service without content trust
- _, err := d.Cmd("service", "create", "--name", name, repoName, "top")
- c.Assert(err, checker.IsNil)
- out, err := d.Cmd("service", "inspect", "--pretty", name)
- c.Assert(err, checker.IsNil, check.Commentf(out))
- // Daemon won't insert the digest because this is disabled by
- // DOCKER_SERVICE_PREFER_OFFLINE_IMAGE.
- c.Assert(out, check.Not(checker.Contains), repoName+"@", check.Commentf(out))
- serviceCmd := d.Command("-D", "service", "update", "--image", repoName, name)
- icmd.RunCmd(serviceCmd, trustedCmd).Assert(c, icmd.Expected{
- Err: "resolved image tag to",
- })
- out, err = d.Cmd("service", "inspect", "--pretty", name)
- c.Assert(err, checker.IsNil, check.Commentf(out))
- c.Assert(out, checker.Contains, repoName+"@", check.Commentf(out))
- // Try trusted service update on an untrusted tag.
- repoName = fmt.Sprintf("%v/untrustedservicecreate/createtest:latest", privateRegistryURL)
- // tag the image and upload it to the private registry
- dockerCmd(c, "tag", "busybox", repoName)
- dockerCmd(c, "push", repoName)
- dockerCmd(c, "rmi", repoName)
- serviceCmd = d.Command("service", "update", "--image", repoName, name)
- icmd.RunCmd(serviceCmd, trustedCmd).Assert(c, icmd.Expected{
- ExitCode: 1,
- Err: "Error: remote trust data does not exist",
- })
- }
- // Test case for issue #27866, which did not allow NW name that is the prefix of a swarm NW ID.
- // e.g. if the ingress ID starts with "n1", it was impossible to create a NW named "n1".
- func (s *DockerSwarmSuite) TestSwarmNetworkCreateIssue27866(c *check.C) {
- d := s.AddDaemon(c, true, true)
- out, err := d.Cmd("network", "inspect", "-f", "{{.Id}}", "ingress")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- ingressID := strings.TrimSpace(out)
- c.Assert(ingressID, checker.Not(checker.Equals), "")
- // create a network of which name is the prefix of the ID of an overlay network
- // (ingressID in this case)
- newNetName := ingressID[0:2]
- out, err = d.Cmd("network", "create", "--driver", "overlay", newNetName)
- // In #27866, it was failing because of "network with name %s already exists"
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- out, err = d.Cmd("network", "rm", newNetName)
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- }
- // Test case for https://github.com/docker/docker/pull/27938#issuecomment-265768303
- // This test creates two networks with the same name sequentially, with various drivers.
- // Since the operations in this test are done sequentially, the 2nd call should fail with
- // "network with name FOO already exists".
- // Note that it is to ok have multiple networks with the same name if the operations are done
- // in parallel. (#18864)
- func (s *DockerSwarmSuite) TestSwarmNetworkCreateDup(c *check.C) {
- d := s.AddDaemon(c, true, true)
- drivers := []string{"bridge", "overlay"}
- for i, driver1 := range drivers {
- nwName := fmt.Sprintf("network-test-%d", i)
- for _, driver2 := range drivers {
- c.Logf("Creating a network named %q with %q, then %q",
- nwName, driver1, driver2)
- out, err := d.Cmd("network", "create", "--driver", driver1, nwName)
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- out, err = d.Cmd("network", "create", "--driver", driver2, nwName)
- c.Assert(out, checker.Contains,
- fmt.Sprintf("network with name %s already exists", nwName))
- c.Assert(err, checker.NotNil)
- c.Logf("As expected, the attempt to network %q with %q failed: %s",
- nwName, driver2, out)
- out, err = d.Cmd("network", "rm", nwName)
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- }
- }
- }
- func (s *DockerSwarmSuite) TestSwarmServicePsMultipleServiceIDs(c *check.C) {
- d := s.AddDaemon(c, true, true)
- name1 := "top1"
- out, err := d.Cmd("service", "create", "--name", name1, "--replicas=3", "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- id1 := strings.TrimSpace(out)
- name2 := "top2"
- out, err = d.Cmd("service", "create", "--name", name2, "--replicas=3", "busybox", "top")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- id2 := strings.TrimSpace(out)
- // make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 6)
- out, err = d.Cmd("service", "ps", name1)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name1+".1")
- c.Assert(out, checker.Contains, name1+".2")
- c.Assert(out, checker.Contains, name1+".3")
- c.Assert(out, checker.Not(checker.Contains), name2+".1")
- c.Assert(out, checker.Not(checker.Contains), name2+".2")
- c.Assert(out, checker.Not(checker.Contains), name2+".3")
- out, err = d.Cmd("service", "ps", name1, name2)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name1+".1")
- c.Assert(out, checker.Contains, name1+".2")
- c.Assert(out, checker.Contains, name1+".3")
- c.Assert(out, checker.Contains, name2+".1")
- c.Assert(out, checker.Contains, name2+".2")
- c.Assert(out, checker.Contains, name2+".3")
- // Name Prefix
- out, err = d.Cmd("service", "ps", "to")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name1+".1")
- c.Assert(out, checker.Contains, name1+".2")
- c.Assert(out, checker.Contains, name1+".3")
- c.Assert(out, checker.Contains, name2+".1")
- c.Assert(out, checker.Contains, name2+".2")
- c.Assert(out, checker.Contains, name2+".3")
- // Name Prefix (no hit)
- out, err = d.Cmd("service", "ps", "noname")
- c.Assert(err, checker.NotNil)
- c.Assert(out, checker.Contains, "no such services: noname")
- out, err = d.Cmd("service", "ps", id1)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name1+".1")
- c.Assert(out, checker.Contains, name1+".2")
- c.Assert(out, checker.Contains, name1+".3")
- c.Assert(out, checker.Not(checker.Contains), name2+".1")
- c.Assert(out, checker.Not(checker.Contains), name2+".2")
- c.Assert(out, checker.Not(checker.Contains), name2+".3")
- out, err = d.Cmd("service", "ps", id1, id2)
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, name1+".1")
- c.Assert(out, checker.Contains, name1+".2")
- c.Assert(out, checker.Contains, name1+".3")
- c.Assert(out, checker.Contains, name2+".1")
- c.Assert(out, checker.Contains, name2+".2")
- c.Assert(out, checker.Contains, name2+".3")
- }
- func (s *DockerSwarmSuite) TestSwarmPublishDuplicatePorts(c *check.C) {
- d := s.AddDaemon(c, true, true)
- out, err := d.Cmd("service", "create", "--publish", "5005:80", "--publish", "5006:80", "--publish", "80", "--publish", "80", "busybox", "top")
- c.Assert(err, check.IsNil, check.Commentf(out))
- id := strings.TrimSpace(out)
- // make sure task has been deployed.
- waitAndAssert(c, defaultReconciliationTimeout, d.CheckActiveContainerCount, checker.Equals, 1)
- // Total len = 4, with 2 dynamic ports and 2 non-dynamic ports
- // Dynamic ports are likely to be 30000 and 30001 but doesn't matter
- out, err = d.Cmd("service", "inspect", "--format", "{{.Endpoint.Ports}} len={{len .Endpoint.Ports}}", id)
- c.Assert(err, check.IsNil, check.Commentf(out))
- c.Assert(out, checker.Contains, "len=4")
- c.Assert(out, checker.Contains, "{ tcp 80 5005 ingress}")
- c.Assert(out, checker.Contains, "{ tcp 80 5006 ingress}")
- }
- func (s *DockerSwarmSuite) TestSwarmJoinWithDrain(c *check.C) {
- d := s.AddDaemon(c, true, true)
- out, err := d.Cmd("node", "ls")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Not(checker.Contains), "Drain")
- out, err = d.Cmd("swarm", "join-token", "-q", "manager")
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- token := strings.TrimSpace(out)
- d1 := s.AddDaemon(c, false, false)
- out, err = d1.Cmd("swarm", "join", "--availability=drain", "--token", token, d.ListenAddr)
- c.Assert(err, checker.IsNil)
- c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
- out, err = d.Cmd("node", "ls")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, "Drain")
- out, err = d1.Cmd("node", "ls")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, "Drain")
- }
- func (s *DockerSwarmSuite) TestSwarmInitWithDrain(c *check.C) {
- d := s.AddDaemon(c, false, false)
- out, err := d.Cmd("swarm", "init", "--availability", "drain")
- c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
- out, err = d.Cmd("node", "ls")
- c.Assert(err, checker.IsNil)
- c.Assert(out, checker.Contains, "Drain")
- }
|