2016-04-18 05:48:13 -04:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
containertypes "github.com/docker/docker/api/types/container"
|
|
|
|
eventtypes "github.com/docker/docker/api/types/events"
|
2016-04-18 05:48:13 -04:00
|
|
|
"github.com/docker/docker/container"
|
|
|
|
"github.com/docker/docker/daemon/events"
|
|
|
|
)
|
|
|
|
|
|
|
|
func reset(c *container.Container) {
|
|
|
|
c.State = &container.State{}
|
|
|
|
c.State.Health = &container.Health{}
|
|
|
|
c.State.Health.Status = types.Starting
|
|
|
|
}
|
|
|
|
|
2016-07-21 16:02:12 -04:00
|
|
|
func TestNoneHealthcheck(t *testing.T) {
|
|
|
|
c := &container.Container{
|
2017-04-25 15:03:45 -04:00
|
|
|
ID: "container_id",
|
|
|
|
Name: "container_name",
|
|
|
|
Config: &containertypes.Config{
|
|
|
|
Image: "image_name",
|
|
|
|
Healthcheck: &containertypes.HealthConfig{
|
|
|
|
Test: []string{"NONE"},
|
2016-07-21 16:02:12 -04:00
|
|
|
},
|
|
|
|
},
|
2017-04-25 15:03:45 -04:00
|
|
|
State: &container.State{},
|
2016-07-21 16:02:12 -04:00
|
|
|
}
|
2017-02-23 18:12:18 -05:00
|
|
|
store, err := container.NewViewDB()
|
2017-02-22 17:02:20 -05:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
daemon := &Daemon{
|
|
|
|
containersReplica: store,
|
|
|
|
}
|
2016-07-21 16:02:12 -04:00
|
|
|
|
|
|
|
daemon.initHealthMonitor(c)
|
|
|
|
if c.State.Health != nil {
|
2016-11-14 04:01:17 -05:00
|
|
|
t.Error("Expecting Health to be nil, but was not")
|
2016-07-21 16:02:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-23 15:09:29 -05:00
|
|
|
// FIXME(vdemeester) This takes around 3s… This is *way* too long
|
2016-04-18 05:48:13 -04:00
|
|
|
func TestHealthStates(t *testing.T) {
|
|
|
|
e := events.New()
|
|
|
|
_, l, _ := e.Subscribe()
|
|
|
|
defer e.Evict(l)
|
|
|
|
|
|
|
|
expect := func(expected string) {
|
|
|
|
select {
|
|
|
|
case event := <-l:
|
|
|
|
ev := event.(eventtypes.Message)
|
|
|
|
if ev.Status != expected {
|
|
|
|
t.Errorf("Expecting event %#v, but got %#v\n", expected, ev.Status)
|
|
|
|
}
|
|
|
|
case <-time.After(1 * time.Second):
|
|
|
|
t.Errorf("Expecting event %#v, but got nothing\n", expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
c := &container.Container{
|
2017-04-25 15:03:45 -04:00
|
|
|
ID: "container_id",
|
|
|
|
Name: "container_name",
|
|
|
|
Config: &containertypes.Config{
|
|
|
|
Image: "image_name",
|
2016-04-18 05:48:13 -04:00
|
|
|
},
|
|
|
|
}
|
2017-02-22 17:02:20 -05:00
|
|
|
|
2017-02-23 18:12:18 -05:00
|
|
|
store, err := container.NewViewDB()
|
2017-02-22 17:02:20 -05:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2016-04-18 05:48:13 -04:00
|
|
|
daemon := &Daemon{
|
2017-02-22 17:02:20 -05:00
|
|
|
EventsService: e,
|
|
|
|
containersReplica: store,
|
2016-04-18 05:48:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
c.Config.Healthcheck = &containertypes.HealthConfig{
|
|
|
|
Retries: 1,
|
|
|
|
}
|
|
|
|
|
|
|
|
reset(c)
|
|
|
|
|
|
|
|
handleResult := func(startTime time.Time, exitCode int) {
|
|
|
|
handleProbeResult(daemon, c, &types.HealthcheckResult{
|
|
|
|
Start: startTime,
|
|
|
|
End: startTime,
|
|
|
|
ExitCode: exitCode,
|
2016-11-15 21:02:26 -05:00
|
|
|
}, nil)
|
2016-04-18 05:48:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// starting -> failed -> success -> failed
|
|
|
|
|
|
|
|
handleResult(c.State.StartedAt.Add(1*time.Second), 1)
|
|
|
|
expect("health_status: unhealthy")
|
|
|
|
|
|
|
|
handleResult(c.State.StartedAt.Add(2*time.Second), 0)
|
|
|
|
expect("health_status: healthy")
|
|
|
|
|
|
|
|
handleResult(c.State.StartedAt.Add(3*time.Second), 1)
|
|
|
|
expect("health_status: unhealthy")
|
|
|
|
|
|
|
|
// Test retries
|
|
|
|
|
|
|
|
reset(c)
|
|
|
|
c.Config.Healthcheck.Retries = 3
|
|
|
|
|
|
|
|
handleResult(c.State.StartedAt.Add(20*time.Second), 1)
|
|
|
|
handleResult(c.State.StartedAt.Add(40*time.Second), 1)
|
|
|
|
if c.State.Health.Status != types.Starting {
|
|
|
|
t.Errorf("Expecting starting, but got %#v\n", c.State.Health.Status)
|
|
|
|
}
|
|
|
|
if c.State.Health.FailingStreak != 2 {
|
|
|
|
t.Errorf("Expecting FailingStreak=2, but got %d\n", c.State.Health.FailingStreak)
|
|
|
|
}
|
|
|
|
handleResult(c.State.StartedAt.Add(60*time.Second), 1)
|
|
|
|
expect("health_status: unhealthy")
|
|
|
|
|
|
|
|
handleResult(c.State.StartedAt.Add(80*time.Second), 0)
|
|
|
|
expect("health_status: healthy")
|
|
|
|
if c.State.Health.FailingStreak != 0 {
|
|
|
|
t.Errorf("Expecting FailingStreak=0, but got %d\n", c.State.Health.FailingStreak)
|
|
|
|
}
|
2016-11-29 04:58:47 -05:00
|
|
|
|
|
|
|
// Test start period
|
|
|
|
|
|
|
|
reset(c)
|
|
|
|
c.Config.Healthcheck.Retries = 2
|
|
|
|
c.Config.Healthcheck.StartPeriod = 30 * time.Second
|
|
|
|
|
|
|
|
handleResult(c.State.StartedAt.Add(20*time.Second), 1)
|
|
|
|
if c.State.Health.Status != types.Starting {
|
|
|
|
t.Errorf("Expecting starting, but got %#v\n", c.State.Health.Status)
|
|
|
|
}
|
|
|
|
if c.State.Health.FailingStreak != 0 {
|
|
|
|
t.Errorf("Expecting FailingStreak=0, but got %d\n", c.State.Health.FailingStreak)
|
|
|
|
}
|
|
|
|
handleResult(c.State.StartedAt.Add(50*time.Second), 1)
|
|
|
|
if c.State.Health.Status != types.Starting {
|
|
|
|
t.Errorf("Expecting starting, but got %#v\n", c.State.Health.Status)
|
|
|
|
}
|
|
|
|
if c.State.Health.FailingStreak != 1 {
|
|
|
|
t.Errorf("Expecting FailingStreak=1, but got %d\n", c.State.Health.FailingStreak)
|
|
|
|
}
|
|
|
|
handleResult(c.State.StartedAt.Add(80*time.Second), 0)
|
|
|
|
expect("health_status: healthy")
|
|
|
|
if c.State.Health.FailingStreak != 0 {
|
|
|
|
t.Errorf("Expecting FailingStreak=0, but got %d\n", c.State.Health.FailingStreak)
|
|
|
|
}
|
2016-04-18 05:48:13 -04:00
|
|
|
}
|