2015-08-29 22:43:33 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2015-10-21 23:30:54 -04:00
|
|
|
"github.com/docker/docker/pkg/integration/checker"
|
2015-08-29 22:43:33 -04:00
|
|
|
"github.com/go-check/check"
|
|
|
|
)
|
|
|
|
|
[nit] integration-cli: obey Go's naming convention
No substantial code change.
- Api --> API
- Cli --> CLI
- Http, Https --> HTTP, HTTPS
- Id --> ID
- Uid,Gid,Pid --> UID,PID,PID
- Ipam --> IPAM
- Tls --> TLS (TestDaemonNoTlsCliTlsVerifyWithEnv --> TestDaemonTLSVerifyIssue13964)
Didn't touch in this commit:
- Git: because it is officially "Git": https://git-scm.com/
- Tar: because it is officially "Tar": https://www.gnu.org/software/tar/
- Cpu, Nat, Mac, Ipc, Shm: for keeping a consistency with existing production code (not changable, for compatibility)
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
2016-09-27 21:50:12 -04:00
|
|
|
func (s *DockerSuite) TestAPICreateWithNotExistImage(c *check.C) {
|
2015-08-29 22:43:33 -04:00
|
|
|
name := "test"
|
|
|
|
config := map[string]interface{}{
|
|
|
|
"Image": "test456:v1",
|
|
|
|
"Volumes": map[string]struct{}{"/tmp": {}},
|
|
|
|
}
|
|
|
|
|
2016-05-21 07:56:04 -04:00
|
|
|
status, body, err := sockRequest("POST", "/containers/create?name="+name, config)
|
2015-08-29 22:43:33 -04:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(status, check.Equals, http.StatusNotFound)
|
|
|
|
expected := "No such image: test456:v1"
|
2016-05-21 07:56:04 -04:00
|
|
|
c.Assert(getErrorMessage(c, body), checker.Contains, expected)
|
2015-08-29 22:43:33 -04:00
|
|
|
|
|
|
|
config2 := map[string]interface{}{
|
|
|
|
"Image": "test456",
|
|
|
|
"Volumes": map[string]struct{}{"/tmp": {}},
|
|
|
|
}
|
|
|
|
|
2016-05-21 07:56:04 -04:00
|
|
|
status, body, err = sockRequest("POST", "/containers/create?name="+name, config2)
|
2015-08-29 22:43:33 -04:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(status, check.Equals, http.StatusNotFound)
|
|
|
|
expected = "No such image: test456:latest"
|
2016-05-21 07:56:04 -04:00
|
|
|
c.Assert(getErrorMessage(c, body), checker.Equals, expected)
|
2015-08-29 22:43:33 -04:00
|
|
|
|
2016-01-25 14:45:20 -05:00
|
|
|
config3 := map[string]interface{}{
|
|
|
|
"Image": "sha256:0cb40641836c461bc97c793971d84d758371ed682042457523e4ae701efeaaaa",
|
|
|
|
}
|
|
|
|
|
2016-05-21 07:56:04 -04:00
|
|
|
status, body, err = sockRequest("POST", "/containers/create?name="+name, config3)
|
2016-01-25 14:45:20 -05:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(status, check.Equals, http.StatusNotFound)
|
|
|
|
expected = "No such image: sha256:0cb40641836c461bc97c793971d84d758371ed682042457523e4ae701efeaaaa"
|
2016-05-21 07:56:04 -04:00
|
|
|
c.Assert(getErrorMessage(c, body), checker.Equals, expected)
|
2016-01-25 14:45:20 -05:00
|
|
|
|
2015-08-29 22:43:33 -04:00
|
|
|
}
|
2016-11-05 14:53:54 -04:00
|
|
|
|
|
|
|
// Test for #25099
|
|
|
|
func (s *DockerSuite) TestAPICreateEmptyEnv(c *check.C) {
|
|
|
|
name := "test1"
|
|
|
|
config := map[string]interface{}{
|
|
|
|
"Image": "busybox",
|
|
|
|
"Env": []string{"", "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"},
|
|
|
|
"Cmd": []string{"true"},
|
|
|
|
}
|
|
|
|
|
|
|
|
status, body, err := sockRequest("POST", "/containers/create?name="+name, config)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(status, check.Equals, http.StatusInternalServerError)
|
|
|
|
expected := "invalid environment variable:"
|
|
|
|
c.Assert(getErrorMessage(c, body), checker.Contains, expected)
|
|
|
|
|
|
|
|
name = "test2"
|
|
|
|
config = map[string]interface{}{
|
|
|
|
"Image": "busybox",
|
|
|
|
"Env": []string{"=", "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"},
|
|
|
|
"Cmd": []string{"true"},
|
|
|
|
}
|
|
|
|
status, body, err = sockRequest("POST", "/containers/create?name="+name, config)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(status, check.Equals, http.StatusInternalServerError)
|
|
|
|
expected = "invalid environment variable: ="
|
|
|
|
c.Assert(getErrorMessage(c, body), checker.Contains, expected)
|
|
|
|
|
|
|
|
name = "test3"
|
|
|
|
config = map[string]interface{}{
|
|
|
|
"Image": "busybox",
|
|
|
|
"Env": []string{"=foo", "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"},
|
|
|
|
"Cmd": []string{"true"},
|
|
|
|
}
|
|
|
|
status, body, err = sockRequest("POST", "/containers/create?name="+name, config)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(status, check.Equals, http.StatusInternalServerError)
|
|
|
|
expected = "invalid environment variable: =foo"
|
|
|
|
c.Assert(getErrorMessage(c, body), checker.Contains, expected)
|
|
|
|
}
|