Merge pull request #17598 from zelahi/16756-dockercli-createtest

Added c.Assert statements to docker_api_create_test.go
This commit is contained in:
David Calavera 2015-11-02 11:43:20 -08:00
commit 920ab75bd5

View file

@ -4,6 +4,7 @@ import (
"net/http"
"strings"
"github.com/docker/docker/pkg/integration/checker"
"github.com/go-check/check"
)
@ -18,9 +19,7 @@ func (s *DockerSuite) TestApiCreateWithNotExistImage(c *check.C) {
c.Assert(err, check.IsNil)
c.Assert(status, check.Equals, http.StatusNotFound)
expected := "No such image: test456:v1"
if !strings.Contains(string(resp), expected) {
c.Fatalf("expected: %s, got: %s", expected, string(resp))
}
c.Assert(strings.TrimSpace(string(resp)), checker.Contains, expected)
config2 := map[string]interface{}{
"Image": "test456",
@ -31,8 +30,6 @@ func (s *DockerSuite) TestApiCreateWithNotExistImage(c *check.C) {
c.Assert(err, check.IsNil)
c.Assert(status, check.Equals, http.StatusNotFound)
expected = "No such image: test456:latest"
if !strings.Contains(string(resp), expected) {
c.Fatalf("expected: %s, got: %s", expected, string(resp))
}
c.Assert(strings.TrimSpace(string(resp)), checker.Equals, expected)
}