mirror of https://github.com/docker/docs.git
Merge pull request #17598 from zelahi/16756-dockercli-createtest
Added c.Assert statements to docker_api_create_test.go
This commit is contained in:
commit
920ab75bd5
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/docker/docker/pkg/integration/checker"
|
||||||
"github.com/go-check/check"
|
"github.com/go-check/check"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -18,9 +19,7 @@ func (s *DockerSuite) TestApiCreateWithNotExistImage(c *check.C) {
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
c.Assert(status, check.Equals, http.StatusNotFound)
|
c.Assert(status, check.Equals, http.StatusNotFound)
|
||||||
expected := "No such image: test456:v1"
|
expected := "No such image: test456:v1"
|
||||||
if !strings.Contains(string(resp), expected) {
|
c.Assert(strings.TrimSpace(string(resp)), checker.Contains, expected)
|
||||||
c.Fatalf("expected: %s, got: %s", expected, string(resp))
|
|
||||||
}
|
|
||||||
|
|
||||||
config2 := map[string]interface{}{
|
config2 := map[string]interface{}{
|
||||||
"Image": "test456",
|
"Image": "test456",
|
||||||
|
|
@ -31,8 +30,6 @@ func (s *DockerSuite) TestApiCreateWithNotExistImage(c *check.C) {
|
||||||
c.Assert(err, check.IsNil)
|
c.Assert(err, check.IsNil)
|
||||||
c.Assert(status, check.Equals, http.StatusNotFound)
|
c.Assert(status, check.Equals, http.StatusNotFound)
|
||||||
expected = "No such image: test456:latest"
|
expected = "No such image: test456:latest"
|
||||||
if !strings.Contains(string(resp), expected) {
|
c.Assert(strings.TrimSpace(string(resp)), checker.Equals, expected)
|
||||||
c.Fatalf("expected: %s, got: %s", expected, string(resp))
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue