mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
322e2a7d05
Signed-off-by: Ben Firshman <ben@firshman.co.uk>
44 lines
1.5 KiB
Go
44 lines
1.5 KiB
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/docker/docker/pkg/integration/checker"
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
func (s *DockerSuite) TestResizeApiResponse(c *check.C) {
|
|
out, _ := runSleepingContainer(c, "-d")
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
endpoint := "/containers/" + cleanedContainerID + "/resize?h=40&w=40"
|
|
status, _, err := sockRequest("POST", endpoint, nil)
|
|
c.Assert(status, check.Equals, http.StatusOK)
|
|
c.Assert(err, check.IsNil)
|
|
}
|
|
|
|
func (s *DockerSuite) TestResizeApiHeightWidthNoInt(c *check.C) {
|
|
out, _ := runSleepingContainer(c, "-d")
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
endpoint := "/containers/" + cleanedContainerID + "/resize?h=foo&w=bar"
|
|
status, _, err := sockRequest("POST", endpoint, nil)
|
|
c.Assert(status, check.Equals, http.StatusInternalServerError)
|
|
c.Assert(err, check.IsNil)
|
|
}
|
|
|
|
func (s *DockerSuite) TestResizeApiResponseWhenContainerNotStarted(c *check.C) {
|
|
out, _ := dockerCmd(c, "run", "-d", "busybox", "true")
|
|
cleanedContainerID := strings.TrimSpace(out)
|
|
|
|
// make sure the exited container is not running
|
|
dockerCmd(c, "wait", cleanedContainerID)
|
|
|
|
endpoint := "/containers/" + cleanedContainerID + "/resize?h=40&w=40"
|
|
status, body, err := sockRequest("POST", endpoint, nil)
|
|
c.Assert(status, check.Equals, http.StatusInternalServerError)
|
|
c.Assert(err, check.IsNil)
|
|
|
|
c.Assert(getErrorMessage(c, body), checker.Contains, "is not running", check.Commentf("resize should fail with message 'Container is not running'"))
|
|
}
|