2015-08-29 22:43:33 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
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"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s *DockerSuite) TestApiCreateWithNotExistImage(c *check.C) {
|
|
|
|
name := "test"
|
|
|
|
config := map[string]interface{}{
|
|
|
|
"Image": "test456:v1",
|
|
|
|
"Volumes": map[string]struct{}{"/tmp": {}},
|
|
|
|
}
|
|
|
|
|
|
|
|
status, resp, err := sockRequest("POST", "/containers/create?name="+name, config)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(status, check.Equals, http.StatusNotFound)
|
|
|
|
expected := "No such image: test456:v1"
|
2015-10-21 23:30:54 -04:00
|
|
|
c.Assert(strings.TrimSpace(string(resp)), checker.Contains, expected)
|
2015-08-29 22:43:33 -04:00
|
|
|
|
|
|
|
config2 := map[string]interface{}{
|
|
|
|
"Image": "test456",
|
|
|
|
"Volumes": map[string]struct{}{"/tmp": {}},
|
|
|
|
}
|
|
|
|
|
|
|
|
status, resp, err = sockRequest("POST", "/containers/create?name="+name, config2)
|
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(status, check.Equals, http.StatusNotFound)
|
|
|
|
expected = "No such image: test456:latest"
|
2015-10-21 23:30:54 -04:00
|
|
|
c.Assert(strings.TrimSpace(string(resp)), checker.Equals, expected)
|
2015-08-29 22:43:33 -04:00
|
|
|
|
|
|
|
}
|