2015-08-29 22:43:33 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-04-10 21:58:31 -04:00
|
|
|
"fmt"
|
2015-08-29 22:43:33 -04:00
|
|
|
"net/http"
|
2017-01-17 02:55:45 -05:00
|
|
|
"time"
|
2015-08-29 22:43:33 -04:00
|
|
|
|
2017-04-10 21:58:31 -04:00
|
|
|
"github.com/docker/docker/api/types/container"
|
2016-12-30 12:23:00 -05:00
|
|
|
"github.com/docker/docker/integration-cli/checker"
|
2016-12-30 04:49:36 -05:00
|
|
|
"github.com/docker/docker/integration-cli/request"
|
2015-08-29 22:43:33 -04:00
|
|
|
"github.com/go-check/check"
|
|
|
|
)
|
|
|
|
|
2017-01-17 02:55:45 -05:00
|
|
|
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{}{
|
2017-04-10 21:58:31 -04:00
|
|
|
"Interval": -10 * time.Millisecond,
|
|
|
|
"Timeout": time.Second,
|
2017-01-17 02:55:45 -05:00
|
|
|
"Retries": int(1000),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
status, body, err := request.SockRequest("POST", "/containers/create?name="+name, config, daemonHost())
|
|
|
|
c.Assert(err, check.IsNil)
|
2017-07-19 10:20:13 -04:00
|
|
|
c.Assert(status, check.Equals, http.StatusBadRequest)
|
2017-04-10 21:58:31 -04:00
|
|
|
expected := fmt.Sprintf("Interval in Healthcheck cannot be less than %s", container.MinimumDuration)
|
2017-01-17 02:55:45 -05:00
|
|
|
c.Assert(getErrorMessage(c, body), checker.Contains, expected)
|
|
|
|
|
2017-04-10 21:58:31 -04:00
|
|
|
// test invalid Interval in Healthcheck: larger than 0s but less than 1ms
|
2017-01-17 02:55:45 -05:00
|
|
|
name = "test2"
|
|
|
|
config = map[string]interface{}{
|
|
|
|
"Image": "busybox",
|
|
|
|
"Healthcheck": map[string]interface{}{
|
2017-04-10 21:58:31 -04:00
|
|
|
"Interval": 500 * time.Microsecond,
|
|
|
|
"Timeout": time.Second,
|
2017-01-17 02:55:45 -05:00
|
|
|
"Retries": int(1000),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
status, body, err = request.SockRequest("POST", "/containers/create?name="+name, config, daemonHost())
|
|
|
|
c.Assert(err, check.IsNil)
|
2017-07-19 10:20:13 -04:00
|
|
|
c.Assert(status, check.Equals, http.StatusBadRequest)
|
2017-01-17 02:55:45 -05:00
|
|
|
c.Assert(getErrorMessage(c, body), checker.Contains, expected)
|
|
|
|
|
2017-04-10 21:58:31 -04:00
|
|
|
// test invalid Timeout in Healthcheck: less than 1ms
|
2017-01-17 02:55:45 -05:00
|
|
|
name = "test3"
|
|
|
|
config = map[string]interface{}{
|
|
|
|
"Image": "busybox",
|
|
|
|
"Healthcheck": map[string]interface{}{
|
2017-04-10 21:58:31 -04:00
|
|
|
"Interval": time.Second,
|
|
|
|
"Timeout": -100 * time.Millisecond,
|
2017-01-17 02:55:45 -05:00
|
|
|
"Retries": int(1000),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
status, body, err = request.SockRequest("POST", "/containers/create?name="+name, config, daemonHost())
|
|
|
|
c.Assert(err, check.IsNil)
|
2017-07-19 10:20:13 -04:00
|
|
|
c.Assert(status, check.Equals, http.StatusBadRequest)
|
2017-04-10 21:58:31 -04:00
|
|
|
expected = fmt.Sprintf("Timeout in Healthcheck cannot be less than %s", container.MinimumDuration)
|
2017-01-17 02:55:45 -05:00
|
|
|
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{}{
|
2017-04-10 21:58:31 -04:00
|
|
|
"Interval": time.Second,
|
|
|
|
"Timeout": time.Second,
|
2017-01-17 02:55:45 -05:00
|
|
|
"Retries": int(-10),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
status, body, err = request.SockRequest("POST", "/containers/create?name="+name, config, daemonHost())
|
|
|
|
c.Assert(err, check.IsNil)
|
2017-07-19 10:20:13 -04:00
|
|
|
c.Assert(status, check.Equals, http.StatusBadRequest)
|
2017-01-17 02:55:45 -05:00
|
|
|
expected = "Retries in Healthcheck cannot be negative"
|
|
|
|
c.Assert(getErrorMessage(c, body), checker.Contains, expected)
|
2017-04-10 21:58:31 -04:00
|
|
|
|
|
|
|
// 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)
|
2017-07-19 10:20:13 -04:00
|
|
|
c.Assert(status, check.Equals, http.StatusBadRequest)
|
2017-04-10 21:58:31 -04:00
|
|
|
expected = fmt.Sprintf("StartPeriod in Healthcheck cannot be less than %s", container.MinimumDuration)
|
|
|
|
c.Assert(getErrorMessage(c, body), checker.Contains, expected)
|
2017-01-17 02:55:45 -05:00
|
|
|
}
|