1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618 |
- package main
- import (
- "archive/tar"
- "bytes"
- "encoding/json"
- "fmt"
- "io"
- "net/http"
- "net/http/httputil"
- "net/url"
- "os"
- "regexp"
- "strconv"
- "strings"
- "time"
- "github.com/docker/docker/pkg/integration"
- "github.com/docker/docker/pkg/integration/checker"
- "github.com/docker/docker/pkg/stringid"
- "github.com/docker/engine-api/types"
- containertypes "github.com/docker/engine-api/types/container"
- networktypes "github.com/docker/engine-api/types/network"
- "github.com/go-check/check"
- )
- func (s *DockerSuite) TestContainerApiGetAll(c *check.C) {
- startCount, err := getContainerCount()
- c.Assert(err, checker.IsNil, check.Commentf("Cannot query container count"))
- name := "getall"
- dockerCmd(c, "run", "--name", name, "busybox", "true")
- status, body, err := sockRequest("GET", "/containers/json?all=1", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- var inspectJSON []struct {
- Names []string
- }
- err = json.Unmarshal(body, &inspectJSON)
- c.Assert(err, checker.IsNil, check.Commentf("unable to unmarshal response body"))
- c.Assert(inspectJSON, checker.HasLen, startCount+1)
- actual := inspectJSON[0].Names[0]
- c.Assert(actual, checker.Equals, "/"+name)
- }
- // regression test for empty json field being omitted #13691
- func (s *DockerSuite) TestContainerApiGetJSONNoFieldsOmitted(c *check.C) {
- dockerCmd(c, "run", "busybox", "true")
- status, body, err := sockRequest("GET", "/containers/json?all=1", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- // empty Labels field triggered this bug, make sense to check for everything
- // cause even Ports for instance can trigger this bug
- // better safe than sorry..
- fields := []string{
- "Id",
- "Names",
- "Image",
- "Command",
- "Created",
- "Ports",
- "Labels",
- "Status",
- "NetworkSettings",
- }
- // decoding into types.Container do not work since it eventually unmarshal
- // and empty field to an empty go map, so we just check for a string
- for _, f := range fields {
- if !strings.Contains(string(body), f) {
- c.Fatalf("Field %s is missing and it shouldn't", f)
- }
- }
- }
- type containerPs struct {
- Names []string
- Ports []map[string]interface{}
- }
- // regression test for non-empty fields from #13901
- func (s *DockerSuite) TestContainerApiPsOmitFields(c *check.C) {
- // Problematic for Windows porting due to networking not yet being passed back
- testRequires(c, DaemonIsLinux)
- name := "pstest"
- port := 80
- runSleepingContainer(c, "--name", name, "--expose", strconv.Itoa(port))
- status, body, err := sockRequest("GET", "/containers/json?all=1", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- var resp []containerPs
- err = json.Unmarshal(body, &resp)
- c.Assert(err, checker.IsNil)
- var foundContainer *containerPs
- for _, container := range resp {
- for _, testName := range container.Names {
- if "/"+name == testName {
- foundContainer = &container
- break
- }
- }
- }
- c.Assert(foundContainer.Ports, checker.HasLen, 1)
- c.Assert(foundContainer.Ports[0]["PrivatePort"], checker.Equals, float64(port))
- _, ok := foundContainer.Ports[0]["PublicPort"]
- c.Assert(ok, checker.Not(checker.Equals), true)
- _, ok = foundContainer.Ports[0]["IP"]
- c.Assert(ok, checker.Not(checker.Equals), true)
- }
- func (s *DockerSuite) TestContainerApiGetExport(c *check.C) {
- // TODO: Investigate why this fails on Windows to Windows CI
- testRequires(c, DaemonIsLinux)
- name := "exportcontainer"
- dockerCmd(c, "run", "--name", name, "busybox", "touch", "/test")
- status, body, err := sockRequest("GET", "/containers/"+name+"/export", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- found := false
- for tarReader := tar.NewReader(bytes.NewReader(body)); ; {
- h, err := tarReader.Next()
- if err != nil && err == io.EOF {
- break
- }
- if h.Name == "test" {
- found = true
- break
- }
- }
- c.Assert(found, checker.True, check.Commentf("The created test file has not been found in the exported image"))
- }
- func (s *DockerSuite) TestContainerApiGetChanges(c *check.C) {
- // Not supported on Windows as Windows does not support docker diff (/containers/name/changes)
- testRequires(c, DaemonIsLinux)
- name := "changescontainer"
- dockerCmd(c, "run", "--name", name, "busybox", "rm", "/etc/passwd")
- status, body, err := sockRequest("GET", "/containers/"+name+"/changes", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- changes := []struct {
- Kind int
- Path string
- }{}
- c.Assert(json.Unmarshal(body, &changes), checker.IsNil, check.Commentf("unable to unmarshal response body"))
- // Check the changelog for removal of /etc/passwd
- success := false
- for _, elem := range changes {
- if elem.Path == "/etc/passwd" && elem.Kind == 2 {
- success = true
- }
- }
- c.Assert(success, checker.True, check.Commentf("/etc/passwd has been removed but is not present in the diff"))
- }
- func (s *DockerSuite) TestContainerApiStartVolumeBinds(c *check.C) {
- // TODO Windows CI: Investigate further why this fails on Windows to Windows CI.
- testRequires(c, DaemonIsLinux)
- path := "/foo"
- if daemonPlatform == "windows" {
- path = `c:\foo`
- }
- name := "testing"
- config := map[string]interface{}{
- "Image": "busybox",
- "Volumes": map[string]struct{}{path: {}},
- }
- status, _, err := sockRequest("POST", "/containers/create?name="+name, config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- bindPath := randomTmpDirPath("test", daemonPlatform)
- config = map[string]interface{}{
- "Binds": []string{bindPath + ":" + path},
- }
- status, _, err = sockRequest("POST", "/containers/"+name+"/start", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- pth, err := inspectMountSourceField(name, path)
- c.Assert(err, checker.IsNil)
- c.Assert(pth, checker.Equals, bindPath, check.Commentf("expected volume host path to be %s, got %s", bindPath, pth))
- }
- // Test for GH#10618
- func (s *DockerSuite) TestContainerApiStartDupVolumeBinds(c *check.C) {
- // TODO Windows to Windows CI - Port this
- testRequires(c, DaemonIsLinux)
- name := "testdups"
- config := map[string]interface{}{
- "Image": "busybox",
- "Volumes": map[string]struct{}{"/tmp": {}},
- }
- status, _, err := sockRequest("POST", "/containers/create?name="+name, config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- bindPath1 := randomTmpDirPath("test1", daemonPlatform)
- bindPath2 := randomTmpDirPath("test2", daemonPlatform)
- config = map[string]interface{}{
- "Binds": []string{bindPath1 + ":/tmp", bindPath2 + ":/tmp"},
- }
- status, body, err := sockRequest("POST", "/containers/"+name+"/start", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusInternalServerError)
- c.Assert(string(body), checker.Contains, "Duplicate mount point", check.Commentf("Expected failure due to duplicate bind mounts to same path, instead got: %q with error: %v", string(body), err))
- }
- func (s *DockerSuite) TestContainerApiStartVolumesFrom(c *check.C) {
- // TODO Windows to Windows CI - Port this
- testRequires(c, DaemonIsLinux)
- volName := "voltst"
- volPath := "/tmp"
- dockerCmd(c, "run", "-d", "--name", volName, "-v", volPath, "busybox")
- name := "TestContainerApiStartVolumesFrom"
- config := map[string]interface{}{
- "Image": "busybox",
- "Volumes": map[string]struct{}{volPath: {}},
- }
- status, _, err := sockRequest("POST", "/containers/create?name="+name, config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- config = map[string]interface{}{
- "VolumesFrom": []string{volName},
- }
- status, _, err = sockRequest("POST", "/containers/"+name+"/start", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- pth, err := inspectMountSourceField(name, volPath)
- c.Assert(err, checker.IsNil)
- pth2, err := inspectMountSourceField(volName, volPath)
- c.Assert(err, checker.IsNil)
- c.Assert(pth, checker.Equals, pth2, check.Commentf("expected volume host path to be %s, got %s", pth, pth2))
- }
- func (s *DockerSuite) TestGetContainerStats(c *check.C) {
- // Problematic on Windows as Windows does not support stats
- testRequires(c, DaemonIsLinux)
- var (
- name = "statscontainer"
- )
- dockerCmd(c, "run", "-d", "--name", name, "busybox", "top")
- type b struct {
- status int
- body []byte
- err error
- }
- bc := make(chan b, 1)
- go func() {
- status, body, err := sockRequest("GET", "/containers/"+name+"/stats", nil)
- bc <- b{status, body, err}
- }()
- // allow some time to stream the stats from the container
- time.Sleep(4 * time.Second)
- dockerCmd(c, "rm", "-f", name)
- // collect the results from the stats stream or timeout and fail
- // if the stream was not disconnected.
- select {
- case <-time.After(2 * time.Second):
- c.Fatal("stream was not closed after container was removed")
- case sr := <-bc:
- c.Assert(sr.err, checker.IsNil)
- c.Assert(sr.status, checker.Equals, http.StatusOK)
- dec := json.NewDecoder(bytes.NewBuffer(sr.body))
- var s *types.Stats
- // decode only one object from the stream
- c.Assert(dec.Decode(&s), checker.IsNil)
- }
- }
- func (s *DockerSuite) TestGetContainerStatsRmRunning(c *check.C) {
- // Problematic on Windows as Windows does not support stats
- testRequires(c, DaemonIsLinux)
- out, _ := dockerCmd(c, "run", "-d", "busybox", "top")
- id := strings.TrimSpace(out)
- buf := &integration.ChannelBuffer{make(chan []byte, 1)}
- defer buf.Close()
- chErr := make(chan error, 1)
- go func() {
- _, body, err := sockRequestRaw("GET", "/containers/"+id+"/stats?stream=1", nil, "application/json")
- if err != nil {
- chErr <- err
- }
- defer body.Close()
- _, err = io.Copy(buf, body)
- chErr <- err
- }()
- defer func() {
- select {
- case err := <-chErr:
- c.Assert(err, checker.IsNil)
- default:
- return
- }
- }()
- b := make([]byte, 32)
- // make sure we've got some stats
- _, err := buf.ReadTimeout(b, 2*time.Second)
- c.Assert(err, checker.IsNil)
- // Now remove without `-f` and make sure we are still pulling stats
- _, _, err = dockerCmdWithError("rm", id)
- c.Assert(err, checker.Not(checker.IsNil), check.Commentf("rm should have failed but didn't"))
- _, err = buf.ReadTimeout(b, 2*time.Second)
- c.Assert(err, checker.IsNil)
- dockerCmd(c, "kill", id)
- }
- // regression test for gh13421
- // previous test was just checking one stat entry so it didn't fail (stats with
- // stream false always return one stat)
- func (s *DockerSuite) TestGetContainerStatsStream(c *check.C) {
- // Problematic on Windows as Windows does not support stats
- testRequires(c, DaemonIsLinux)
- name := "statscontainer"
- dockerCmd(c, "run", "-d", "--name", name, "busybox", "top")
- type b struct {
- status int
- body []byte
- err error
- }
- bc := make(chan b, 1)
- go func() {
- status, body, err := sockRequest("GET", "/containers/"+name+"/stats", nil)
- bc <- b{status, body, err}
- }()
- // allow some time to stream the stats from the container
- time.Sleep(4 * time.Second)
- dockerCmd(c, "rm", "-f", name)
- // collect the results from the stats stream or timeout and fail
- // if the stream was not disconnected.
- select {
- case <-time.After(2 * time.Second):
- c.Fatal("stream was not closed after container was removed")
- case sr := <-bc:
- c.Assert(sr.err, checker.IsNil)
- c.Assert(sr.status, checker.Equals, http.StatusOK)
- s := string(sr.body)
- // count occurrences of "read" of types.Stats
- if l := strings.Count(s, "read"); l < 2 {
- c.Fatalf("Expected more than one stat streamed, got %d", l)
- }
- }
- }
- func (s *DockerSuite) TestGetContainerStatsNoStream(c *check.C) {
- // Problematic on Windows as Windows does not support stats
- testRequires(c, DaemonIsLinux)
- name := "statscontainer"
- dockerCmd(c, "run", "-d", "--name", name, "busybox", "top")
- type b struct {
- status int
- body []byte
- err error
- }
- bc := make(chan b, 1)
- go func() {
- status, body, err := sockRequest("GET", "/containers/"+name+"/stats?stream=0", nil)
- bc <- b{status, body, err}
- }()
- // allow some time to stream the stats from the container
- time.Sleep(4 * time.Second)
- dockerCmd(c, "rm", "-f", name)
- // collect the results from the stats stream or timeout and fail
- // if the stream was not disconnected.
- select {
- case <-time.After(2 * time.Second):
- c.Fatal("stream was not closed after container was removed")
- case sr := <-bc:
- c.Assert(sr.err, checker.IsNil)
- c.Assert(sr.status, checker.Equals, http.StatusOK)
- s := string(sr.body)
- // count occurrences of "read" of types.Stats
- c.Assert(strings.Count(s, "read"), checker.Equals, 1, check.Commentf("Expected only one stat streamed, got %d", strings.Count(s, "read")))
- }
- }
- func (s *DockerSuite) TestGetStoppedContainerStats(c *check.C) {
- // Problematic on Windows as Windows does not support stats
- testRequires(c, DaemonIsLinux)
- name := "statscontainer"
- dockerCmd(c, "create", "--name", name, "busybox", "top")
- type stats struct {
- status int
- err error
- }
- chResp := make(chan stats)
- // We expect an immediate response, but if it's not immediate, the test would hang, so put it in a goroutine
- // below we'll check this on a timeout.
- go func() {
- resp, body, err := sockRequestRaw("GET", "/containers/"+name+"/stats", nil, "")
- body.Close()
- chResp <- stats{resp.StatusCode, err}
- }()
- select {
- case r := <-chResp:
- c.Assert(r.err, checker.IsNil)
- c.Assert(r.status, checker.Equals, http.StatusOK)
- case <-time.After(10 * time.Second):
- c.Fatal("timeout waiting for stats response for stopped container")
- }
- }
- // #9981 - Allow a docker created volume (ie, one in /var/lib/docker/volumes) to be used to overwrite (via passing in Binds on api start) an existing volume
- func (s *DockerSuite) TestPostContainerBindNormalVolume(c *check.C) {
- // TODO Windows to Windows CI - Port this
- testRequires(c, DaemonIsLinux)
- dockerCmd(c, "create", "-v", "/foo", "--name=one", "busybox")
- fooDir, err := inspectMountSourceField("one", "/foo")
- c.Assert(err, checker.IsNil)
- dockerCmd(c, "create", "-v", "/foo", "--name=two", "busybox")
- bindSpec := map[string][]string{"Binds": {fooDir + ":/foo"}}
- status, _, err := sockRequest("POST", "/containers/two/start", bindSpec)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- fooDir2, err := inspectMountSourceField("two", "/foo")
- c.Assert(err, checker.IsNil)
- c.Assert(fooDir2, checker.Equals, fooDir, check.Commentf("expected volume path to be %s, got: %s", fooDir, fooDir2))
- }
- func (s *DockerSuite) TestContainerApiPause(c *check.C) {
- // Problematic on Windows as Windows does not support pause
- testRequires(c, DaemonIsLinux)
- defer unpauseAllContainers()
- out, _ := dockerCmd(c, "run", "-d", "busybox", "sleep", "30")
- ContainerID := strings.TrimSpace(out)
- status, _, err := sockRequest("POST", "/containers/"+ContainerID+"/pause", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- pausedContainers, err := getSliceOfPausedContainers()
- c.Assert(err, checker.IsNil, check.Commentf("error thrown while checking if containers were paused"))
- if len(pausedContainers) != 1 || stringid.TruncateID(ContainerID) != pausedContainers[0] {
- c.Fatalf("there should be one paused container and not %d", len(pausedContainers))
- }
- status, _, err = sockRequest("POST", "/containers/"+ContainerID+"/unpause", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- pausedContainers, err = getSliceOfPausedContainers()
- c.Assert(err, checker.IsNil, check.Commentf("error thrown while checking if containers were paused"))
- c.Assert(pausedContainers, checker.IsNil, check.Commentf("There should be no paused container."))
- }
- func (s *DockerSuite) TestContainerApiTop(c *check.C) {
- // Problematic on Windows as Windows does not support top
- testRequires(c, DaemonIsLinux)
- out, _ := dockerCmd(c, "run", "-d", "busybox", "/bin/sh", "-c", "top")
- id := strings.TrimSpace(string(out))
- c.Assert(waitRun(id), checker.IsNil)
- type topResp struct {
- Titles []string
- Processes [][]string
- }
- var top topResp
- status, b, err := sockRequest("GET", "/containers/"+id+"/top?ps_args=aux", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- c.Assert(json.Unmarshal(b, &top), checker.IsNil)
- c.Assert(top.Titles, checker.HasLen, 11, check.Commentf("expected 11 titles, found %d: %v", len(top.Titles), top.Titles))
- if top.Titles[0] != "USER" || top.Titles[10] != "COMMAND" {
- c.Fatalf("expected `USER` at `Titles[0]` and `COMMAND` at Titles[10]: %v", top.Titles)
- }
- c.Assert(top.Processes, checker.HasLen, 2, check.Commentf("expected 2 processes, found %d: %v", len(top.Processes), top.Processes))
- c.Assert(top.Processes[0][10], checker.Equals, "/bin/sh -c top")
- c.Assert(top.Processes[1][10], checker.Equals, "top")
- }
- func (s *DockerSuite) TestContainerApiCommit(c *check.C) {
- cName := "testapicommit"
- dockerCmd(c, "run", "--name="+cName, "busybox", "/bin/sh", "-c", "touch /test")
- name := "testcontainerapicommit"
- status, b, err := sockRequest("POST", "/commit?repo="+name+"&testtag=tag&container="+cName, nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- type resp struct {
- ID string
- }
- var img resp
- c.Assert(json.Unmarshal(b, &img), checker.IsNil)
- cmd := inspectField(c, img.ID, "Config.Cmd")
- c.Assert(cmd, checker.Equals, "{[/bin/sh -c touch /test]}", check.Commentf("got wrong Cmd from commit: %q", cmd))
- // sanity check, make sure the image is what we think it is
- dockerCmd(c, "run", img.ID, "ls", "/test")
- }
- func (s *DockerSuite) TestContainerApiCommitWithLabelInConfig(c *check.C) {
- cName := "testapicommitwithconfig"
- dockerCmd(c, "run", "--name="+cName, "busybox", "/bin/sh", "-c", "touch /test")
- config := map[string]interface{}{
- "Labels": map[string]string{"key1": "value1", "key2": "value2"},
- }
- name := "testcontainerapicommitwithconfig"
- status, b, err := sockRequest("POST", "/commit?repo="+name+"&container="+cName, config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- type resp struct {
- ID string
- }
- var img resp
- c.Assert(json.Unmarshal(b, &img), checker.IsNil)
- label1 := inspectFieldMap(c, img.ID, "Config.Labels", "key1")
- c.Assert(label1, checker.Equals, "value1")
- label2 := inspectFieldMap(c, img.ID, "Config.Labels", "key2")
- c.Assert(label2, checker.Equals, "value2")
- cmd := inspectField(c, img.ID, "Config.Cmd")
- c.Assert(cmd, checker.Equals, "{[/bin/sh -c touch /test]}", check.Commentf("got wrong Cmd from commit: %q", cmd))
- // sanity check, make sure the image is what we think it is
- dockerCmd(c, "run", img.ID, "ls", "/test")
- }
- func (s *DockerSuite) TestContainerApiBadPort(c *check.C) {
- // TODO Windows to Windows CI - Port this test
- testRequires(c, DaemonIsLinux)
- config := map[string]interface{}{
- "Image": "busybox",
- "Cmd": []string{"/bin/sh", "-c", "echo test"},
- "PortBindings": map[string]interface{}{
- "8080/tcp": []map[string]interface{}{
- {
- "HostIP": "",
- "HostPort": "aa80",
- },
- },
- },
- }
- jsonData := bytes.NewBuffer(nil)
- json.NewEncoder(jsonData).Encode(config)
- status, b, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusInternalServerError)
- c.Assert(strings.TrimSpace(string(b)), checker.Equals, `Invalid port specification: "aa80"`, check.Commentf("Incorrect error msg: %s", string(b)))
- }
- func (s *DockerSuite) TestContainerApiCreate(c *check.C) {
- config := map[string]interface{}{
- "Image": "busybox",
- "Cmd": []string{"/bin/sh", "-c", "touch /test && ls /test"},
- }
- status, b, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- type createResp struct {
- ID string
- }
- var container createResp
- c.Assert(json.Unmarshal(b, &container), checker.IsNil)
- out, _ := dockerCmd(c, "start", "-a", container.ID)
- c.Assert(strings.TrimSpace(out), checker.Equals, "/test")
- }
- func (s *DockerSuite) TestContainerApiCreateEmptyConfig(c *check.C) {
- config := map[string]interface{}{}
- status, b, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusInternalServerError)
- expected := "Config cannot be empty in order to create a container\n"
- c.Assert(string(b), checker.Equals, expected)
- }
- func (s *DockerSuite) TestContainerApiCreateMultipleNetworksConfig(c *check.C) {
- // Container creation must fail if client specified configurations for more than one network
- config := map[string]interface{}{
- "Image": "busybox",
- "NetworkingConfig": networktypes.NetworkingConfig{
- EndpointsConfig: map[string]*networktypes.EndpointSettings{
- "net1": {},
- "net2": {},
- "net3": {},
- },
- },
- }
- status, b, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusBadRequest)
- // network name order in error message is not deterministic
- c.Assert(string(b), checker.Contains, "Container cannot be connected to network endpoints")
- c.Assert(string(b), checker.Contains, "net1")
- c.Assert(string(b), checker.Contains, "net2")
- c.Assert(string(b), checker.Contains, "net3")
- }
- func (s *DockerSuite) TestContainerApiCreateWithHostName(c *check.C) {
- // TODO Windows: Port this test once hostname is supported
- testRequires(c, DaemonIsLinux)
- hostName := "test-host"
- config := map[string]interface{}{
- "Image": "busybox",
- "Hostname": hostName,
- }
- status, body, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- var container types.ContainerCreateResponse
- c.Assert(json.Unmarshal(body, &container), checker.IsNil)
- status, body, err = sockRequest("GET", "/containers/"+container.ID+"/json", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- var containerJSON types.ContainerJSON
- c.Assert(json.Unmarshal(body, &containerJSON), checker.IsNil)
- c.Assert(containerJSON.Config.Hostname, checker.Equals, hostName, check.Commentf("Mismatched Hostname"))
- }
- func (s *DockerSuite) TestContainerApiCreateWithDomainName(c *check.C) {
- // TODO Windows: Port this test once domain name is supported
- testRequires(c, DaemonIsLinux)
- domainName := "test-domain"
- config := map[string]interface{}{
- "Image": "busybox",
- "Domainname": domainName,
- }
- status, body, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- var container types.ContainerCreateResponse
- c.Assert(json.Unmarshal(body, &container), checker.IsNil)
- status, body, err = sockRequest("GET", "/containers/"+container.ID+"/json", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- var containerJSON types.ContainerJSON
- c.Assert(json.Unmarshal(body, &containerJSON), checker.IsNil)
- c.Assert(containerJSON.Config.Domainname, checker.Equals, domainName, check.Commentf("Mismatched Domainname"))
- }
- func (s *DockerSuite) TestContainerApiCreateBridgeNetworkMode(c *check.C) {
- // Windows does not support bridge
- testRequires(c, DaemonIsLinux)
- UtilCreateNetworkMode(c, "bridge")
- }
- func (s *DockerSuite) TestContainerApiCreateOtherNetworkModes(c *check.C) {
- // Windows does not support these network modes
- testRequires(c, DaemonIsLinux, NotUserNamespace)
- UtilCreateNetworkMode(c, "host")
- UtilCreateNetworkMode(c, "container:web1")
- }
- func UtilCreateNetworkMode(c *check.C, networkMode string) {
- config := map[string]interface{}{
- "Image": "busybox",
- "HostConfig": map[string]interface{}{"NetworkMode": networkMode},
- }
- status, body, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- var container types.ContainerCreateResponse
- c.Assert(json.Unmarshal(body, &container), checker.IsNil)
- status, body, err = sockRequest("GET", "/containers/"+container.ID+"/json", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- var containerJSON types.ContainerJSON
- c.Assert(json.Unmarshal(body, &containerJSON), checker.IsNil)
- c.Assert(containerJSON.HostConfig.NetworkMode, checker.Equals, containertypes.NetworkMode(networkMode), check.Commentf("Mismatched NetworkMode"))
- }
- func (s *DockerSuite) TestContainerApiCreateWithCpuSharesCpuset(c *check.C) {
- // TODO Windows to Windows CI. The CpuShares part could be ported.
- testRequires(c, DaemonIsLinux)
- config := map[string]interface{}{
- "Image": "busybox",
- "CpuShares": 512,
- "CpusetCpus": "0",
- }
- status, body, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- var container types.ContainerCreateResponse
- c.Assert(json.Unmarshal(body, &container), checker.IsNil)
- status, body, err = sockRequest("GET", "/containers/"+container.ID+"/json", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- var containerJSON types.ContainerJSON
- c.Assert(json.Unmarshal(body, &containerJSON), checker.IsNil)
- out := inspectField(c, containerJSON.ID, "HostConfig.CpuShares")
- c.Assert(out, checker.Equals, "512")
- outCpuset := inspectField(c, containerJSON.ID, "HostConfig.CpusetCpus")
- c.Assert(outCpuset, checker.Equals, "0")
- }
- func (s *DockerSuite) TestContainerApiVerifyHeader(c *check.C) {
- config := map[string]interface{}{
- "Image": "busybox",
- }
- create := func(ct string) (*http.Response, io.ReadCloser, error) {
- jsonData := bytes.NewBuffer(nil)
- c.Assert(json.NewEncoder(jsonData).Encode(config), checker.IsNil)
- return sockRequestRaw("POST", "/containers/create", jsonData, ct)
- }
- // Try with no content-type
- res, body, err := create("")
- c.Assert(err, checker.IsNil)
- c.Assert(res.StatusCode, checker.Equals, http.StatusInternalServerError)
- body.Close()
- // Try with wrong content-type
- res, body, err = create("application/xml")
- c.Assert(err, checker.IsNil)
- c.Assert(res.StatusCode, checker.Equals, http.StatusInternalServerError)
- body.Close()
- // now application/json
- res, body, err = create("application/json")
- c.Assert(err, checker.IsNil)
- c.Assert(res.StatusCode, checker.Equals, http.StatusCreated)
- body.Close()
- }
- //Issue 14230. daemon should return 500 for invalid port syntax
- func (s *DockerSuite) TestContainerApiInvalidPortSyntax(c *check.C) {
- config := `{
- "Image": "busybox",
- "HostConfig": {
- "NetworkMode": "default",
- "PortBindings": {
- "19039;1230": [
- {}
- ]
- }
- }
- }`
- res, body, err := sockRequestRaw("POST", "/containers/create", strings.NewReader(config), "application/json")
- c.Assert(err, checker.IsNil)
- c.Assert(res.StatusCode, checker.Equals, http.StatusInternalServerError)
- b, err := readBody(body)
- c.Assert(err, checker.IsNil)
- c.Assert(string(b[:]), checker.Contains, "Invalid port")
- }
- // Issue 7941 - test to make sure a "null" in JSON is just ignored.
- // W/o this fix a null in JSON would be parsed into a string var as "null"
- func (s *DockerSuite) TestContainerApiPostCreateNull(c *check.C) {
- // TODO Windows to Windows CI. Bit of this with alternate fields checked
- // can probably be ported.
- testRequires(c, DaemonIsLinux)
- config := `{
- "Hostname":"",
- "Domainname":"",
- "Memory":0,
- "MemorySwap":0,
- "CpuShares":0,
- "Cpuset":null,
- "AttachStdin":true,
- "AttachStdout":true,
- "AttachStderr":true,
- "ExposedPorts":{},
- "Tty":true,
- "OpenStdin":true,
- "StdinOnce":true,
- "Env":[],
- "Cmd":"ls",
- "Image":"busybox",
- "Volumes":{},
- "WorkingDir":"",
- "Entrypoint":null,
- "NetworkDisabled":false,
- "OnBuild":null}`
- res, body, err := sockRequestRaw("POST", "/containers/create", strings.NewReader(config), "application/json")
- c.Assert(err, checker.IsNil)
- c.Assert(res.StatusCode, checker.Equals, http.StatusCreated)
- b, err := readBody(body)
- c.Assert(err, checker.IsNil)
- type createResp struct {
- ID string
- }
- var container createResp
- c.Assert(json.Unmarshal(b, &container), checker.IsNil)
- out := inspectField(c, container.ID, "HostConfig.CpusetCpus")
- c.Assert(out, checker.Equals, "")
- outMemory := inspectField(c, container.ID, "HostConfig.Memory")
- c.Assert(outMemory, checker.Equals, "0")
- outMemorySwap := inspectField(c, container.ID, "HostConfig.MemorySwap")
- c.Assert(outMemorySwap, checker.Equals, "0")
- }
- func (s *DockerSuite) TestCreateWithTooLowMemoryLimit(c *check.C) {
- // TODO Windows: Port once memory is supported
- testRequires(c, DaemonIsLinux)
- config := `{
- "Image": "busybox",
- "Cmd": "ls",
- "OpenStdin": true,
- "CpuShares": 100,
- "Memory": 524287
- }`
- res, body, err := sockRequestRaw("POST", "/containers/create", strings.NewReader(config), "application/json")
- c.Assert(err, checker.IsNil)
- b, err2 := readBody(body)
- c.Assert(err2, checker.IsNil)
- c.Assert(res.StatusCode, checker.Equals, http.StatusInternalServerError)
- c.Assert(string(b), checker.Contains, "Minimum memory limit allowed is 4MB")
- }
- func (s *DockerSuite) TestStartWithTooLowMemoryLimit(c *check.C) {
- // TODO Windows: Port once memory is supported
- testRequires(c, DaemonIsLinux)
- out, _ := dockerCmd(c, "create", "busybox")
- containerID := strings.TrimSpace(out)
- config := `{
- "CpuShares": 100,
- "Memory": 524287
- }`
- res, body, err := sockRequestRaw("POST", "/containers/"+containerID+"/start", strings.NewReader(config), "application/json")
- c.Assert(err, checker.IsNil)
- b, err2 := readBody(body)
- c.Assert(err2, checker.IsNil)
- c.Assert(res.StatusCode, checker.Equals, http.StatusInternalServerError)
- c.Assert(string(b), checker.Contains, "Minimum memory limit allowed is 4MB")
- }
- func (s *DockerSuite) TestContainerApiRename(c *check.C) {
- // TODO Windows: Enable for TP5. Fails on TP4.
- testRequires(c, DaemonIsLinux)
- out, _ := dockerCmd(c, "run", "--name", "TestContainerApiRename", "-d", "busybox", "sh")
- containerID := strings.TrimSpace(out)
- newName := "TestContainerApiRenameNew"
- statusCode, _, err := sockRequest("POST", "/containers/"+containerID+"/rename?name="+newName, nil)
- c.Assert(err, checker.IsNil)
- // 204 No Content is expected, not 200
- c.Assert(statusCode, checker.Equals, http.StatusNoContent)
- name := inspectField(c, containerID, "Name")
- c.Assert(name, checker.Equals, "/"+newName, check.Commentf("Failed to rename container"))
- }
- func (s *DockerSuite) TestContainerApiKill(c *check.C) {
- name := "test-api-kill"
- runSleepingContainer(c, "-i", "--name", name)
- status, _, err := sockRequest("POST", "/containers/"+name+"/kill", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- state := inspectField(c, name, "State.Running")
- c.Assert(state, checker.Equals, "false", check.Commentf("got wrong State from container %s: %q", name, state))
- }
- func (s *DockerSuite) TestContainerApiRestart(c *check.C) {
- // TODO Windows to Windows CI. This is flaky due to the timing
- testRequires(c, DaemonIsLinux)
- name := "test-api-restart"
- dockerCmd(c, "run", "-di", "--name", name, "busybox", "top")
- status, _, err := sockRequest("POST", "/containers/"+name+"/restart?t=1", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- c.Assert(waitInspect(name, "{{ .State.Restarting }} {{ .State.Running }}", "false true", 5*time.Second), checker.IsNil)
- }
- func (s *DockerSuite) TestContainerApiRestartNotimeoutParam(c *check.C) {
- // TODO Windows to Windows CI. This is flaky due to the timing
- testRequires(c, DaemonIsLinux)
- name := "test-api-restart-no-timeout-param"
- out, _ := dockerCmd(c, "run", "-di", "--name", name, "busybox", "top")
- id := strings.TrimSpace(out)
- c.Assert(waitRun(id), checker.IsNil)
- status, _, err := sockRequest("POST", "/containers/"+name+"/restart", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- c.Assert(waitInspect(name, "{{ .State.Restarting }} {{ .State.Running }}", "false true", 5*time.Second), checker.IsNil)
- }
- func (s *DockerSuite) TestContainerApiStart(c *check.C) {
- name := "testing-start"
- config := map[string]interface{}{
- "Image": "busybox",
- "Cmd": append([]string{"/bin/sh", "-c"}, defaultSleepCommand...),
- "OpenStdin": true,
- }
- status, _, err := sockRequest("POST", "/containers/create?name="+name, config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- conf := make(map[string]interface{})
- status, _, err = sockRequest("POST", "/containers/"+name+"/start", conf)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- // second call to start should give 304
- status, _, err = sockRequest("POST", "/containers/"+name+"/start", conf)
- c.Assert(err, checker.IsNil)
- // TODO(tibor): figure out why this doesn't work on windows
- if isLocalDaemon {
- c.Assert(status, checker.Equals, http.StatusNotModified)
- }
- }
- func (s *DockerSuite) TestContainerApiStop(c *check.C) {
- name := "test-api-stop"
- runSleepingContainer(c, "-i", "--name", name)
- status, _, err := sockRequest("POST", "/containers/"+name+"/stop?t=30", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- c.Assert(waitInspect(name, "{{ .State.Running }}", "false", 60*time.Second), checker.IsNil)
- // second call to start should give 304
- status, _, err = sockRequest("POST", "/containers/"+name+"/stop?t=30", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNotModified)
- }
- func (s *DockerSuite) TestContainerApiWait(c *check.C) {
- name := "test-api-wait"
- sleepCmd := "/bin/sleep"
- if daemonPlatform == "windows" {
- sleepCmd = "sleep"
- }
- dockerCmd(c, "run", "--name", name, "busybox", sleepCmd, "5")
- status, body, err := sockRequest("POST", "/containers/"+name+"/wait", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- c.Assert(waitInspect(name, "{{ .State.Running }}", "false", 60*time.Second), checker.IsNil)
- var waitres types.ContainerWaitResponse
- c.Assert(json.Unmarshal(body, &waitres), checker.IsNil)
- c.Assert(waitres.StatusCode, checker.Equals, 0)
- }
- func (s *DockerSuite) TestContainerApiCopy(c *check.C) {
- // TODO Windows to Windows CI. This can be ported.
- testRequires(c, DaemonIsLinux)
- name := "test-container-api-copy"
- dockerCmd(c, "run", "--name", name, "busybox", "touch", "/test.txt")
- postData := types.CopyConfig{
- Resource: "/test.txt",
- }
- status, body, err := sockRequest("POST", "/containers/"+name+"/copy", postData)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- found := false
- for tarReader := tar.NewReader(bytes.NewReader(body)); ; {
- h, err := tarReader.Next()
- if err != nil {
- if err == io.EOF {
- break
- }
- c.Fatal(err)
- }
- if h.Name == "test.txt" {
- found = true
- break
- }
- }
- c.Assert(found, checker.True)
- }
- func (s *DockerSuite) TestContainerApiCopyResourcePathEmpty(c *check.C) {
- // TODO Windows to Windows CI. This can be ported.
- testRequires(c, DaemonIsLinux)
- name := "test-container-api-copy-resource-empty"
- dockerCmd(c, "run", "--name", name, "busybox", "touch", "/test.txt")
- postData := types.CopyConfig{
- Resource: "",
- }
- status, body, err := sockRequest("POST", "/containers/"+name+"/copy", postData)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusInternalServerError)
- c.Assert(string(body), checker.Matches, "Path cannot be empty\n")
- }
- func (s *DockerSuite) TestContainerApiCopyResourcePathNotFound(c *check.C) {
- // TODO Windows to Windows CI. This can be ported.
- testRequires(c, DaemonIsLinux)
- name := "test-container-api-copy-resource-not-found"
- dockerCmd(c, "run", "--name", name, "busybox")
- postData := types.CopyConfig{
- Resource: "/notexist",
- }
- status, body, err := sockRequest("POST", "/containers/"+name+"/copy", postData)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusInternalServerError)
- c.Assert(string(body), checker.Matches, "Could not find the file /notexist in container "+name+"\n")
- }
- func (s *DockerSuite) TestContainerApiCopyContainerNotFound(c *check.C) {
- postData := types.CopyConfig{
- Resource: "/something",
- }
- status, _, err := sockRequest("POST", "/containers/notexists/copy", postData)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNotFound)
- }
- func (s *DockerSuite) TestContainerApiDelete(c *check.C) {
- out, _ := runSleepingContainer(c)
- id := strings.TrimSpace(out)
- c.Assert(waitRun(id), checker.IsNil)
- dockerCmd(c, "stop", id)
- status, _, err := sockRequest("DELETE", "/containers/"+id, nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- }
- func (s *DockerSuite) TestContainerApiDeleteNotExist(c *check.C) {
- status, body, err := sockRequest("DELETE", "/containers/doesnotexist", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNotFound)
- c.Assert(string(body), checker.Matches, "No such container: doesnotexist\n")
- }
- func (s *DockerSuite) TestContainerApiDeleteForce(c *check.C) {
- out, _ := runSleepingContainer(c)
- id := strings.TrimSpace(out)
- c.Assert(waitRun(id), checker.IsNil)
- status, _, err := sockRequest("DELETE", "/containers/"+id+"?force=1", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- }
- func (s *DockerSuite) TestContainerApiDeleteRemoveLinks(c *check.C) {
- // Windows does not support links
- testRequires(c, DaemonIsLinux)
- out, _ := dockerCmd(c, "run", "-d", "--name", "tlink1", "busybox", "top")
- id := strings.TrimSpace(out)
- c.Assert(waitRun(id), checker.IsNil)
- out, _ = dockerCmd(c, "run", "--link", "tlink1:tlink1", "--name", "tlink2", "-d", "busybox", "top")
- id2 := strings.TrimSpace(out)
- c.Assert(waitRun(id2), checker.IsNil)
- links := inspectFieldJSON(c, id2, "HostConfig.Links")
- c.Assert(links, checker.Equals, "[\"/tlink1:/tlink2/tlink1\"]", check.Commentf("expected to have links between containers"))
- status, b, err := sockRequest("DELETE", "/containers/tlink2/tlink1?link=1", nil)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusNoContent, check.Commentf(string(b)))
- linksPostRm := inspectFieldJSON(c, id2, "HostConfig.Links")
- c.Assert(linksPostRm, checker.Equals, "null", check.Commentf("call to api deleteContainer links should have removed the specified links"))
- }
- func (s *DockerSuite) TestContainerApiDeleteConflict(c *check.C) {
- out, _ := runSleepingContainer(c)
- id := strings.TrimSpace(out)
- c.Assert(waitRun(id), checker.IsNil)
- status, _, err := sockRequest("DELETE", "/containers/"+id, nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusConflict)
- }
- func (s *DockerSuite) TestContainerApiDeleteRemoveVolume(c *check.C) {
- testRequires(c, SameHostDaemon)
- vol := "/testvolume"
- if daemonPlatform == "windows" {
- vol = `c:\testvolume`
- }
- out, _ := runSleepingContainer(c, "-v", vol)
- id := strings.TrimSpace(out)
- c.Assert(waitRun(id), checker.IsNil)
- source, err := inspectMountSourceField(id, vol)
- _, err = os.Stat(source)
- c.Assert(err, checker.IsNil)
- status, _, err := sockRequest("DELETE", "/containers/"+id+"?v=1&force=1", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusNoContent)
- _, err = os.Stat(source)
- c.Assert(os.IsNotExist(err), checker.True, check.Commentf("expected to get ErrNotExist error, got %v", err))
- }
- // Regression test for https://github.com/docker/docker/issues/6231
- func (s *DockerSuite) TestContainerApiChunkedEncoding(c *check.C) {
- // TODO Windows CI: This can be ported
- testRequires(c, DaemonIsLinux)
- out, _ := dockerCmd(c, "create", "-v", "/foo", "busybox", "true")
- id := strings.TrimSpace(out)
- conn, err := sockConn(time.Duration(10 * time.Second))
- c.Assert(err, checker.IsNil)
- client := httputil.NewClientConn(conn, nil)
- defer client.Close()
- bindCfg := strings.NewReader(`{"Binds": ["/tmp:/foo"]}`)
- req, err := http.NewRequest("POST", "/containers/"+id+"/start", bindCfg)
- c.Assert(err, checker.IsNil)
- req.Header.Set("Content-Type", "application/json")
- // This is a cheat to make the http request do chunked encoding
- // Otherwise (just setting the Content-Encoding to chunked) net/http will overwrite
- // https://golang.org/src/pkg/net/http/request.go?s=11980:12172
- req.ContentLength = -1
- resp, err := client.Do(req)
- c.Assert(err, checker.IsNil, check.Commentf("error starting container with chunked encoding"))
- resp.Body.Close()
- c.Assert(resp.StatusCode, checker.Equals, 204)
- out = inspectFieldJSON(c, id, "HostConfig.Binds")
- var binds []string
- c.Assert(json.NewDecoder(strings.NewReader(out)).Decode(&binds), checker.IsNil)
- c.Assert(binds, checker.HasLen, 1, check.Commentf("Got unexpected binds: %v", binds))
- expected := "/tmp:/foo"
- c.Assert(binds[0], checker.Equals, expected, check.Commentf("got incorrect bind spec"))
- }
- func (s *DockerSuite) TestContainerApiPostContainerStop(c *check.C) {
- out, _ := runSleepingContainer(c)
- containerID := strings.TrimSpace(out)
- c.Assert(waitRun(containerID), checker.IsNil)
- statusCode, _, err := sockRequest("POST", "/containers/"+containerID+"/stop", nil)
- c.Assert(err, checker.IsNil)
- // 204 No Content is expected, not 200
- c.Assert(statusCode, checker.Equals, http.StatusNoContent)
- c.Assert(waitInspect(containerID, "{{ .State.Running }}", "false", 5*time.Second), checker.IsNil)
- }
- // #14170
- func (s *DockerSuite) TestPostContainerApiCreateWithStringOrSliceEntrypoint(c *check.C) {
- config := struct {
- Image string
- Entrypoint string
- Cmd []string
- }{"busybox", "echo", []string{"hello", "world"}}
- _, _, err := sockRequest("POST", "/containers/create?name=echotest", config)
- c.Assert(err, checker.IsNil)
- out, _ := dockerCmd(c, "start", "-a", "echotest")
- c.Assert(strings.TrimSpace(out), checker.Equals, "hello world")
- config2 := struct {
- Image string
- Entrypoint []string
- Cmd []string
- }{"busybox", []string{"echo"}, []string{"hello", "world"}}
- _, _, err = sockRequest("POST", "/containers/create?name=echotest2", config2)
- c.Assert(err, checker.IsNil)
- out, _ = dockerCmd(c, "start", "-a", "echotest2")
- c.Assert(strings.TrimSpace(out), checker.Equals, "hello world")
- }
- // #14170
- func (s *DockerSuite) TestPostContainersCreateWithStringOrSliceCmd(c *check.C) {
- config := struct {
- Image string
- Entrypoint string
- Cmd string
- }{"busybox", "echo", "hello world"}
- _, _, err := sockRequest("POST", "/containers/create?name=echotest", config)
- c.Assert(err, checker.IsNil)
- out, _ := dockerCmd(c, "start", "-a", "echotest")
- c.Assert(strings.TrimSpace(out), checker.Equals, "hello world")
- config2 := struct {
- Image string
- Cmd []string
- }{"busybox", []string{"echo", "hello", "world"}}
- _, _, err = sockRequest("POST", "/containers/create?name=echotest2", config2)
- c.Assert(err, checker.IsNil)
- out, _ = dockerCmd(c, "start", "-a", "echotest2")
- c.Assert(strings.TrimSpace(out), checker.Equals, "hello world")
- }
- // regression #14318
- func (s *DockerSuite) TestPostContainersCreateWithStringOrSliceCapAddDrop(c *check.C) {
- // Windows doesn't support CapAdd/CapDrop
- testRequires(c, DaemonIsLinux)
- config := struct {
- Image string
- CapAdd string
- CapDrop string
- }{"busybox", "NET_ADMIN", "SYS_ADMIN"}
- status, _, err := sockRequest("POST", "/containers/create?name=capaddtest0", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- config2 := struct {
- Image string
- CapAdd []string
- CapDrop []string
- }{"busybox", []string{"NET_ADMIN", "SYS_ADMIN"}, []string{"SETGID"}}
- status, _, err = sockRequest("POST", "/containers/create?name=capaddtest1", config2)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- }
- // #14640
- func (s *DockerSuite) TestPostContainersStartWithoutLinksInHostConfig(c *check.C) {
- // TODO Windows: Windows doesn't support supplying a hostconfig on start.
- // An alternate test could be written to validate the negative testing aspect of this
- testRequires(c, DaemonIsLinux)
- name := "test-host-config-links"
- dockerCmd(c, append([]string{"create", "--name", name, "busybox"}, defaultSleepCommand...)...)
- hc := inspectFieldJSON(c, name, "HostConfig")
- config := `{"HostConfig":` + hc + `}`
- res, b, err := sockRequestRaw("POST", "/containers/"+name+"/start", strings.NewReader(config), "application/json")
- c.Assert(err, checker.IsNil)
- c.Assert(res.StatusCode, checker.Equals, http.StatusNoContent)
- b.Close()
- }
- // #14640
- func (s *DockerSuite) TestPostContainersStartWithLinksInHostConfig(c *check.C) {
- // TODO Windows: Windows doesn't support supplying a hostconfig on start.
- // An alternate test could be written to validate the negative testing aspect of this
- testRequires(c, DaemonIsLinux)
- name := "test-host-config-links"
- dockerCmd(c, "run", "--name", "foo", "-d", "busybox", "top")
- dockerCmd(c, "create", "--name", name, "--link", "foo:bar", "busybox", "top")
- hc := inspectFieldJSON(c, name, "HostConfig")
- config := `{"HostConfig":` + hc + `}`
- res, b, err := sockRequestRaw("POST", "/containers/"+name+"/start", strings.NewReader(config), "application/json")
- c.Assert(err, checker.IsNil)
- c.Assert(res.StatusCode, checker.Equals, http.StatusNoContent)
- b.Close()
- }
- // #14640
- func (s *DockerSuite) TestPostContainersStartWithLinksInHostConfigIdLinked(c *check.C) {
- // Windows does not support links
- testRequires(c, DaemonIsLinux)
- name := "test-host-config-links"
- out, _ := dockerCmd(c, "run", "--name", "link0", "-d", "busybox", "top")
- id := strings.TrimSpace(out)
- dockerCmd(c, "create", "--name", name, "--link", id, "busybox", "top")
- hc := inspectFieldJSON(c, name, "HostConfig")
- config := `{"HostConfig":` + hc + `}`
- res, b, err := sockRequestRaw("POST", "/containers/"+name+"/start", strings.NewReader(config), "application/json")
- c.Assert(err, checker.IsNil)
- c.Assert(res.StatusCode, checker.Equals, http.StatusNoContent)
- b.Close()
- }
- // #14915
- func (s *DockerSuite) TestContainerApiCreateNoHostConfig118(c *check.C) {
- config := struct {
- Image string
- }{"busybox"}
- status, _, err := sockRequest("POST", "/v1.18/containers/create", config)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusCreated)
- }
- // Ensure an error occurs when you have a container read-only rootfs but you
- // extract an archive to a symlink in a writable volume which points to a
- // directory outside of the volume.
- func (s *DockerSuite) TestPutContainerArchiveErrSymlinkInVolumeToReadOnlyRootfs(c *check.C) {
- // Windows does not support read-only rootfs
- // Requires local volume mount bind.
- // --read-only + userns has remount issues
- testRequires(c, SameHostDaemon, NotUserNamespace, DaemonIsLinux)
- testVol := getTestDir(c, "test-put-container-archive-err-symlink-in-volume-to-read-only-rootfs-")
- defer os.RemoveAll(testVol)
- makeTestContentInDir(c, testVol)
- cID := makeTestContainer(c, testContainerOptions{
- readOnly: true,
- volumes: defaultVolumes(testVol), // Our bind mount is at /vol2
- })
- defer deleteContainer(cID)
- // Attempt to extract to a symlink in the volume which points to a
- // directory outside the volume. This should cause an error because the
- // rootfs is read-only.
- query := make(url.Values, 1)
- query.Set("path", "/vol2/symlinkToAbsDir")
- urlPath := fmt.Sprintf("/v1.20/containers/%s/archive?%s", cID, query.Encode())
- statusCode, body, err := sockRequest("PUT", urlPath, nil)
- c.Assert(err, checker.IsNil)
- if !isCpCannotCopyReadOnly(fmt.Errorf(string(body))) {
- c.Fatalf("expected ErrContainerRootfsReadonly error, but got %d: %s", statusCode, string(body))
- }
- }
- func (s *DockerSuite) TestContainerApiGetContainersJSONEmpty(c *check.C) {
- status, body, err := sockRequest("GET", "/containers/json?all=1", nil)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusOK)
- c.Assert(string(body), checker.Equals, "[]\n")
- }
- func (s *DockerSuite) TestPostContainersCreateWithWrongCpusetValues(c *check.C) {
- // Not supported on Windows
- testRequires(c, DaemonIsLinux)
- c1 := struct {
- Image string
- CpusetCpus string
- }{"busybox", "1-42,,"}
- name := "wrong-cpuset-cpus"
- status, body, err := sockRequest("POST", "/containers/create?name="+name, c1)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusInternalServerError)
- expected := "Invalid value 1-42,, for cpuset cpus.\n"
- c.Assert(string(body), checker.Equals, expected)
- c2 := struct {
- Image string
- CpusetMems string
- }{"busybox", "42-3,1--"}
- name = "wrong-cpuset-mems"
- status, body, err = sockRequest("POST", "/containers/create?name="+name, c2)
- c.Assert(err, checker.IsNil)
- c.Assert(status, checker.Equals, http.StatusInternalServerError)
- expected = "Invalid value 42-3,1-- for cpuset mems.\n"
- c.Assert(string(body), checker.Equals, expected)
- }
- func (s *DockerSuite) TestStartWithNilDNS(c *check.C) {
- // TODO Windows: Add once DNS is supported
- testRequires(c, DaemonIsLinux)
- out, _ := dockerCmd(c, "create", "busybox")
- containerID := strings.TrimSpace(out)
- config := `{"HostConfig": {"Dns": null}}`
- res, b, err := sockRequestRaw("POST", "/containers/"+containerID+"/start", strings.NewReader(config), "application/json")
- c.Assert(err, checker.IsNil)
- c.Assert(res.StatusCode, checker.Equals, http.StatusNoContent)
- b.Close()
- dns := inspectFieldJSON(c, containerID, "HostConfig.Dns")
- c.Assert(dns, checker.Equals, "[]")
- }
- func (s *DockerSuite) TestPostContainersCreateShmSizeNegative(c *check.C) {
- // ShmSize is not supported on Windows
- testRequires(c, DaemonIsLinux)
- config := map[string]interface{}{
- "Image": "busybox",
- "HostConfig": map[string]interface{}{"ShmSize": -1},
- }
- status, body, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusInternalServerError)
- c.Assert(string(body), checker.Contains, "SHM size must be greater then 0")
- }
- func (s *DockerSuite) TestPostContainersCreateShmSizeHostConfigOmitted(c *check.C) {
- // ShmSize is not supported on Windows
- testRequires(c, DaemonIsLinux)
- var defaultSHMSize int64 = 67108864
- config := map[string]interface{}{
- "Image": "busybox",
- "Cmd": "mount",
- }
- status, body, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusCreated)
- var container types.ContainerCreateResponse
- c.Assert(json.Unmarshal(body, &container), check.IsNil)
- status, body, err = sockRequest("GET", "/containers/"+container.ID+"/json", nil)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusOK)
- var containerJSON types.ContainerJSON
- c.Assert(json.Unmarshal(body, &containerJSON), check.IsNil)
- c.Assert(containerJSON.HostConfig.ShmSize, check.Equals, defaultSHMSize)
- out, _ := dockerCmd(c, "start", "-i", containerJSON.ID)
- shmRegexp := regexp.MustCompile(`shm on /dev/shm type tmpfs(.*)size=65536k`)
- if !shmRegexp.MatchString(out) {
- c.Fatalf("Expected shm of 64MB in mount command, got %v", out)
- }
- }
- func (s *DockerSuite) TestPostContainersCreateShmSizeOmitted(c *check.C) {
- // ShmSize is not supported on Windows
- testRequires(c, DaemonIsLinux)
- config := map[string]interface{}{
- "Image": "busybox",
- "HostConfig": map[string]interface{}{},
- "Cmd": "mount",
- }
- status, body, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusCreated)
- var container types.ContainerCreateResponse
- c.Assert(json.Unmarshal(body, &container), check.IsNil)
- status, body, err = sockRequest("GET", "/containers/"+container.ID+"/json", nil)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusOK)
- var containerJSON types.ContainerJSON
- c.Assert(json.Unmarshal(body, &containerJSON), check.IsNil)
- c.Assert(containerJSON.HostConfig.ShmSize, check.Equals, int64(67108864))
- out, _ := dockerCmd(c, "start", "-i", containerJSON.ID)
- shmRegexp := regexp.MustCompile(`shm on /dev/shm type tmpfs(.*)size=65536k`)
- if !shmRegexp.MatchString(out) {
- c.Fatalf("Expected shm of 64MB in mount command, got %v", out)
- }
- }
- func (s *DockerSuite) TestPostContainersCreateWithShmSize(c *check.C) {
- // ShmSize is not supported on Windows
- testRequires(c, DaemonIsLinux)
- config := map[string]interface{}{
- "Image": "busybox",
- "Cmd": "mount",
- "HostConfig": map[string]interface{}{"ShmSize": 1073741824},
- }
- status, body, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusCreated)
- var container types.ContainerCreateResponse
- c.Assert(json.Unmarshal(body, &container), check.IsNil)
- status, body, err = sockRequest("GET", "/containers/"+container.ID+"/json", nil)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusOK)
- var containerJSON types.ContainerJSON
- c.Assert(json.Unmarshal(body, &containerJSON), check.IsNil)
- c.Assert(containerJSON.HostConfig.ShmSize, check.Equals, int64(1073741824))
- out, _ := dockerCmd(c, "start", "-i", containerJSON.ID)
- shmRegex := regexp.MustCompile(`shm on /dev/shm type tmpfs(.*)size=1048576k`)
- if !shmRegex.MatchString(out) {
- c.Fatalf("Expected shm of 1GB in mount command, got %v", out)
- }
- }
- func (s *DockerSuite) TestPostContainersCreateMemorySwappinessHostConfigOmitted(c *check.C) {
- // Swappiness is not supported on Windows
- testRequires(c, DaemonIsLinux)
- config := map[string]interface{}{
- "Image": "busybox",
- }
- status, body, err := sockRequest("POST", "/containers/create", config)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusCreated)
- var container types.ContainerCreateResponse
- c.Assert(json.Unmarshal(body, &container), check.IsNil)
- status, body, err = sockRequest("GET", "/containers/"+container.ID+"/json", nil)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusOK)
- var containerJSON types.ContainerJSON
- c.Assert(json.Unmarshal(body, &containerJSON), check.IsNil)
- c.Assert(*containerJSON.HostConfig.MemorySwappiness, check.Equals, int64(-1))
- }
- // check validation is done daemon side and not only in cli
- func (s *DockerSuite) TestPostContainersCreateWithOomScoreAdjInvalidRange(c *check.C) {
- // OomScoreAdj is not supported on Windows
- testRequires(c, DaemonIsLinux)
- config := struct {
- Image string
- OomScoreAdj int
- }{"busybox", 1001}
- name := "oomscoreadj-over"
- status, b, err := sockRequest("POST", "/containers/create?name="+name, config)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusInternalServerError)
- expected := "Invalid value 1001, range for oom score adj is [-1000, 1000]."
- if !strings.Contains(string(b), expected) {
- c.Fatalf("Expected output to contain %q, got %q", expected, string(b))
- }
- config = struct {
- Image string
- OomScoreAdj int
- }{"busybox", -1001}
- name = "oomscoreadj-low"
- status, b, err = sockRequest("POST", "/containers/create?name="+name, config)
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusInternalServerError)
- expected = "Invalid value -1001, range for oom score adj is [-1000, 1000]."
- if !strings.Contains(string(b), expected) {
- c.Fatalf("Expected output to contain %q, got %q", expected, string(b))
- }
- }
|