agent: wrap deferred anti-entropy sync test in WaitForResult
This commit is contained in:
parent
ab7896256f
commit
12cd27e588
|
@ -431,20 +431,23 @@ func TestAgentAntiEntropy_Check_DeferSync(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for a deferred update
|
// Wait for a deferred update
|
||||||
time.Sleep(100 * time.Millisecond)
|
testutil.WaitForResult(func() (bool, error) {
|
||||||
if err := agent.RPC("Health.NodeChecks", &req, &checks); err != nil {
|
if err := agent.RPC("Health.NodeChecks", &req, &checks); err != nil {
|
||||||
t.Fatalf("err: %v", err)
|
return false, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Verify not updated
|
// Verify updated
|
||||||
for _, chk := range checks.HealthChecks {
|
for _, chk := range checks.HealthChecks {
|
||||||
switch chk.CheckID {
|
switch chk.CheckID {
|
||||||
case "web":
|
case "web":
|
||||||
if chk.Output != "output" {
|
if chk.Output != "output" {
|
||||||
t.Fatalf("no update: %v", chk)
|
return false, fmt.Errorf("no update: %v", chk)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}, func(err error) {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
var testRegisterRules = `
|
var testRegisterRules = `
|
||||||
|
|
Loading…
Reference in New Issue