1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package main
- import (
- "fmt"
- "net/http"
- "time"
- "github.com/docker/docker/api/types/container"
- "github.com/docker/docker/integration-cli/checker"
- "github.com/docker/docker/integration-cli/request"
- "github.com/go-check/check"
- )
- func (s *DockerSuite) TestAPICreateWithInvalidHealthcheckParams(c *check.C) {
- // test invalid Interval in Healthcheck: less than 0s
- name := "test1"
- config := map[string]interface{}{
- "Image": "busybox",
- "Healthcheck": map[string]interface{}{
- "Interval": -10 * time.Millisecond,
- "Timeout": time.Second,
- "Retries": int(1000),
- },
- }
- status, body, err := request.SockRequest("POST", "/containers/create?name="+name, config, daemonHost())
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusBadRequest)
- expected := fmt.Sprintf("Interval in Healthcheck cannot be less than %s", container.MinimumDuration)
- c.Assert(getErrorMessage(c, body), checker.Contains, expected)
- // test invalid Interval in Healthcheck: larger than 0s but less than 1ms
- name = "test2"
- config = map[string]interface{}{
- "Image": "busybox",
- "Healthcheck": map[string]interface{}{
- "Interval": 500 * time.Microsecond,
- "Timeout": time.Second,
- "Retries": int(1000),
- },
- }
- status, body, err = request.SockRequest("POST", "/containers/create?name="+name, config, daemonHost())
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusBadRequest)
- c.Assert(getErrorMessage(c, body), checker.Contains, expected)
- // test invalid Timeout in Healthcheck: less than 1ms
- name = "test3"
- config = map[string]interface{}{
- "Image": "busybox",
- "Healthcheck": map[string]interface{}{
- "Interval": time.Second,
- "Timeout": -100 * time.Millisecond,
- "Retries": int(1000),
- },
- }
- status, body, err = request.SockRequest("POST", "/containers/create?name="+name, config, daemonHost())
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusBadRequest)
- expected = fmt.Sprintf("Timeout in Healthcheck cannot be less than %s", container.MinimumDuration)
- c.Assert(getErrorMessage(c, body), checker.Contains, expected)
- // test invalid Retries in Healthcheck: less than 0
- name = "test4"
- config = map[string]interface{}{
- "Image": "busybox",
- "Healthcheck": map[string]interface{}{
- "Interval": time.Second,
- "Timeout": time.Second,
- "Retries": int(-10),
- },
- }
- status, body, err = request.SockRequest("POST", "/containers/create?name="+name, config, daemonHost())
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusBadRequest)
- expected = "Retries in Healthcheck cannot be negative"
- c.Assert(getErrorMessage(c, body), checker.Contains, expected)
- // test invalid StartPeriod in Healthcheck: not 0 and less than 1ms
- name = "test3"
- config = map[string]interface{}{
- "Image": "busybox",
- "Healthcheck": map[string]interface{}{
- "Interval": time.Second,
- "Timeout": time.Second,
- "Retries": int(1000),
- "StartPeriod": 100 * time.Microsecond,
- },
- }
- status, body, err = request.SockRequest("POST", "/containers/create?name="+name, config, daemonHost())
- c.Assert(err, check.IsNil)
- c.Assert(status, check.Equals, http.StatusBadRequest)
- expected = fmt.Sprintf("StartPeriod in Healthcheck cannot be less than %s", container.MinimumDuration)
- c.Assert(getErrorMessage(c, body), checker.Contains, expected)
- }
|