agent: make timing sensitive tests more robust

* make timing less aggressive
* mark timing tests as non-parallel
This commit is contained in:
Frank Schroeder 2017-07-04 12:44:24 +02:00 committed by Frank Schröder
parent b12b914017
commit c218fdbc77
4 changed files with 57 additions and 64 deletions

View File

@ -1513,7 +1513,7 @@ func TestAgent_Service_MaintenanceMode(t *testing.T) {
} }
func TestAgent_Service_Reap(t *testing.T) { func TestAgent_Service_Reap(t *testing.T) {
t.Parallel() // t.Parallel() // timing test. no parallel
cfg := TestConfig() cfg := TestConfig()
cfg.CheckReapInterval = time.Millisecond cfg.CheckReapInterval = time.Millisecond
cfg.CheckDeregisterIntervalMin = 0 cfg.CheckDeregisterIntervalMin = 0
@ -1529,8 +1529,8 @@ func TestAgent_Service_Reap(t *testing.T) {
chkTypes := []*structs.CheckType{ chkTypes := []*structs.CheckType{
&structs.CheckType{ &structs.CheckType{
Status: api.HealthPassing, Status: api.HealthPassing,
TTL: 10 * time.Millisecond, TTL: 25 * time.Millisecond,
DeregisterCriticalServiceAfter: 100 * time.Millisecond, DeregisterCriticalServiceAfter: 200 * time.Millisecond,
}, },
} }
@ -1547,8 +1547,8 @@ func TestAgent_Service_Reap(t *testing.T) {
t.Fatalf("should not have critical checks") t.Fatalf("should not have critical checks")
} }
// Wait for the check TTL to fail. // Wait for the check TTL to fail but before the check is reaped.
time.Sleep(30 * time.Millisecond) time.Sleep(100 * time.Millisecond)
if _, ok := a.state.Services()["redis"]; !ok { if _, ok := a.state.Services()["redis"]; !ok {
t.Fatalf("should have redis service") t.Fatalf("should have redis service")
} }
@ -1568,7 +1568,7 @@ func TestAgent_Service_Reap(t *testing.T) {
} }
// Wait for the check TTL to fail again. // Wait for the check TTL to fail again.
time.Sleep(30 * time.Millisecond) time.Sleep(100 * time.Millisecond)
if _, ok := a.state.Services()["redis"]; !ok { if _, ok := a.state.Services()["redis"]; !ok {
t.Fatalf("should have redis service") t.Fatalf("should have redis service")
} }
@ -1577,7 +1577,7 @@ func TestAgent_Service_Reap(t *testing.T) {
} }
// Wait for the reap. // Wait for the reap.
time.Sleep(300 * time.Millisecond) time.Sleep(400 * time.Millisecond)
if _, ok := a.state.Services()["redis"]; ok { if _, ok := a.state.Services()["redis"]; ok {
t.Fatalf("redis service should have been reaped") t.Fatalf("redis service should have been reaped")
} }
@ -1587,7 +1587,7 @@ func TestAgent_Service_Reap(t *testing.T) {
} }
func TestAgent_Service_NoReap(t *testing.T) { func TestAgent_Service_NoReap(t *testing.T) {
t.Parallel() // t.Parallel() // timing test. no parallel
cfg := TestConfig() cfg := TestConfig()
cfg.CheckReapInterval = time.Millisecond cfg.CheckReapInterval = time.Millisecond
cfg.CheckDeregisterIntervalMin = 0 cfg.CheckDeregisterIntervalMin = 0
@ -1603,7 +1603,7 @@ func TestAgent_Service_NoReap(t *testing.T) {
chkTypes := []*structs.CheckType{ chkTypes := []*structs.CheckType{
&structs.CheckType{ &structs.CheckType{
Status: api.HealthPassing, Status: api.HealthPassing,
TTL: 10 * time.Millisecond, TTL: 25 * time.Millisecond,
}, },
} }
@ -1621,7 +1621,7 @@ func TestAgent_Service_NoReap(t *testing.T) {
} }
// Wait for the check TTL to fail. // Wait for the check TTL to fail.
time.Sleep(30 * time.Millisecond) time.Sleep(100 * time.Millisecond)
if _, ok := a.state.Services()["redis"]; !ok { if _, ok := a.state.Services()["redis"]; !ok {
t.Fatalf("should have redis service") t.Fatalf("should have redis service")
} }
@ -1630,7 +1630,7 @@ func TestAgent_Service_NoReap(t *testing.T) {
} }
// Wait a while and make sure it doesn't reap. // Wait a while and make sure it doesn't reap.
time.Sleep(300 * time.Millisecond) time.Sleep(200 * time.Millisecond)
if _, ok := a.state.Services()["redis"]; !ok { if _, ok := a.state.Services()["redis"]; !ok {
t.Fatalf("should have redis service") t.Fatalf("should have redis service")
} }

View File

@ -23,62 +23,55 @@ import (
"github.com/hashicorp/consul/types" "github.com/hashicorp/consul/types"
) )
func expectStatus(t *testing.T, script, status string) { func TestCheckMonitor(t *testing.T) {
notif := mock.NewNotify() tests := []struct {
check := &CheckMonitor{ script, status string
Notify: notif, }{
CheckID: types.CheckID("foo"), {"exit 0", "passing"},
Script: script, {"exit 1", "warning"},
Interval: 10 * time.Millisecond, {"exit 2", "critical"},
Logger: log.New(ioutil.Discard, UniqueID(), log.LstdFlags), {"foobarbaz", "critical"},
} }
check.Start()
defer check.Stop()
retry.Run(t, func(r *retry.R) {
if got, want := notif.Updates("foo"), 2; got < want {
r.Fatalf("got %d updates want at least %d", got, want)
}
if got, want := notif.State("foo"), status; got != want {
r.Fatalf("got state %q want %q", got, want)
}
})
}
func TestCheckMonitor_Passing(t *testing.T) { for _, tt := range tests {
t.Parallel() t.Run(tt.status, func(t *testing.T) {
expectStatus(t, "exit 0", api.HealthPassing) notif := mock.NewNotify()
} check := &CheckMonitor{
Notify: notif,
func TestCheckMonitor_Warning(t *testing.T) { CheckID: types.CheckID("foo"),
t.Parallel() Script: tt.script,
expectStatus(t, "exit 1", api.HealthWarning) Interval: 25 * time.Millisecond,
} Logger: log.New(ioutil.Discard, UniqueID(), log.LstdFlags),
}
func TestCheckMonitor_Critical(t *testing.T) { check.Start()
t.Parallel() defer check.Stop()
expectStatus(t, "exit 2", api.HealthCritical) retry.Run(t, func(r *retry.R) {
} if got, want := notif.Updates("foo"), 2; got < want {
r.Fatalf("got %d updates want at least %d", got, want)
func TestCheckMonitor_BadCmd(t *testing.T) { }
t.Parallel() if got, want := notif.State("foo"), tt.status; got != want {
expectStatus(t, "foobarbaz", api.HealthCritical) r.Fatalf("got state %q want %q", got, want)
}
})
})
}
} }
func TestCheckMonitor_Timeout(t *testing.T) { func TestCheckMonitor_Timeout(t *testing.T) {
t.Parallel() // t.Parallel() // timing test. no parallel
notif := mock.NewNotify() notif := mock.NewNotify()
check := &CheckMonitor{ check := &CheckMonitor{
Notify: notif, Notify: notif,
CheckID: types.CheckID("foo"), CheckID: types.CheckID("foo"),
Script: "sleep 1 && exit 0", Script: "sleep 1 && exit 0",
Interval: 10 * time.Millisecond, Interval: 50 * time.Millisecond,
Timeout: 5 * time.Millisecond, Timeout: 25 * time.Millisecond,
Logger: log.New(ioutil.Discard, UniqueID(), log.LstdFlags), Logger: log.New(ioutil.Discard, UniqueID(), log.LstdFlags),
} }
check.Start() check.Start()
defer check.Stop() defer check.Stop()
time.Sleep(150 * time.Millisecond) time.Sleep(250 * time.Millisecond)
// Should have at least 2 updates // Should have at least 2 updates
if notif.Updates("foo") < 2 { if notif.Updates("foo") < 2 {
@ -90,7 +83,7 @@ func TestCheckMonitor_Timeout(t *testing.T) {
} }
func TestCheckMonitor_RandomStagger(t *testing.T) { func TestCheckMonitor_RandomStagger(t *testing.T) {
t.Parallel() // t.Parallel() // timing test. no parallel
notif := mock.NewNotify() notif := mock.NewNotify()
check := &CheckMonitor{ check := &CheckMonitor{
Notify: notif, Notify: notif,
@ -102,7 +95,7 @@ func TestCheckMonitor_RandomStagger(t *testing.T) {
check.Start() check.Start()
defer check.Stop() defer check.Stop()
time.Sleep(50 * time.Millisecond) time.Sleep(500 * time.Millisecond)
// Should have at least 1 update // Should have at least 1 update
if notif.Updates("foo") < 1 { if notif.Updates("foo") < 1 {
@ -136,18 +129,18 @@ func TestCheckMonitor_LimitOutput(t *testing.T) {
} }
func TestCheckTTL(t *testing.T) { func TestCheckTTL(t *testing.T) {
t.Parallel() // t.Parallel() // timing test. no parallel
notif := mock.NewNotify() notif := mock.NewNotify()
check := &CheckTTL{ check := &CheckTTL{
Notify: notif, Notify: notif,
CheckID: types.CheckID("foo"), CheckID: types.CheckID("foo"),
TTL: 100 * time.Millisecond, TTL: 200 * time.Millisecond,
Logger: log.New(ioutil.Discard, UniqueID(), log.LstdFlags), Logger: log.New(ioutil.Discard, UniqueID(), log.LstdFlags),
} }
check.Start() check.Start()
defer check.Stop() defer check.Stop()
time.Sleep(50 * time.Millisecond) time.Sleep(100 * time.Millisecond)
check.SetStatus(api.HealthPassing, "test-output") check.SetStatus(api.HealthPassing, "test-output")
if notif.Updates("foo") != 1 { if notif.Updates("foo") != 1 {
@ -159,13 +152,13 @@ func TestCheckTTL(t *testing.T) {
} }
// Ensure we don't fail early // Ensure we don't fail early
time.Sleep(75 * time.Millisecond) time.Sleep(150 * time.Millisecond)
if notif.Updates("foo") != 1 { if notif.Updates("foo") != 1 {
t.Fatalf("should have 1 updates %v", notif.UpdatesMap()) t.Fatalf("should have 1 updates %v", notif.UpdatesMap())
} }
// Wait for the TTL to expire // Wait for the TTL to expire
time.Sleep(75 * time.Millisecond) time.Sleep(150 * time.Millisecond)
if notif.Updates("foo") != 2 { if notif.Updates("foo") != 2 {
t.Fatalf("should have 2 updates %v", notif.UpdatesMap()) t.Fatalf("should have 2 updates %v", notif.UpdatesMap())
@ -655,14 +648,14 @@ func expectDockerCheckStatus(t *testing.T, dockerClient DockerClient, status str
Script: "/health.sh", Script: "/health.sh",
DockerContainerID: "54432bad1fc7", DockerContainerID: "54432bad1fc7",
Shell: "/bin/sh", Shell: "/bin/sh",
Interval: 10 * time.Millisecond, Interval: 25 * time.Millisecond,
Logger: log.New(ioutil.Discard, UniqueID(), log.LstdFlags), Logger: log.New(ioutil.Discard, UniqueID(), log.LstdFlags),
dockerClient: dockerClient, dockerClient: dockerClient,
} }
check.Start() check.Start()
defer check.Stop() defer check.Stop()
time.Sleep(50 * time.Millisecond) time.Sleep(250 * time.Millisecond)
// Should have at least 2 updates // Should have at least 2 updates
if notif.Updates("foo") < 2 { if notif.Updates("foo") < 2 {

View File

@ -22,11 +22,11 @@ func generateUUID() (ret string) {
} }
func TestRexecWriter(t *testing.T) { func TestRexecWriter(t *testing.T) {
t.Parallel() // t.Parallel() // timing test. no parallel
writer := &rexecWriter{ writer := &rexecWriter{
BufCh: make(chan []byte, 16), BufCh: make(chan []byte, 16),
BufSize: 16, BufSize: 16,
BufIdle: 10 * time.Millisecond, BufIdle: 100 * time.Millisecond,
CancelCh: make(chan struct{}), CancelCh: make(chan struct{}),
} }

View File

@ -250,7 +250,7 @@ func TestSessionCustomTTL(t *testing.T) {
} }
func TestSessionTTLRenew(t *testing.T) { func TestSessionTTLRenew(t *testing.T) {
t.Parallel() // t.Parallel() // timing test. no parallel
ttl := 250 * time.Millisecond ttl := 250 * time.Millisecond
cfg := TestConfig() cfg := TestConfig()
cfg.SessionTTLMin = ttl cfg.SessionTTLMin = ttl