Add some test logging
This commit is contained in:
parent
a545091c36
commit
1c1d46e1ac
@ -104,7 +104,11 @@ func TestConsul_GetService_WithHealthyServiceNodes(t *testing.T) {
|
|||||||
})
|
})
|
||||||
defer cl()
|
defer cl()
|
||||||
|
|
||||||
svc, _ := cr.GetService("service-name")
|
svc, err := cr.GetService("service-name")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Unexpected error", err)
|
||||||
|
}
|
||||||
|
|
||||||
if exp, act := 1, len(svc); exp != act {
|
if exp, act := 1, len(svc); exp != act {
|
||||||
t.Fatalf("Expected len of svc to be `%d`, got `%d`.", exp, act)
|
t.Fatalf("Expected len of svc to be `%d`, got `%d`.", exp, act)
|
||||||
}
|
}
|
||||||
@ -140,7 +144,11 @@ func TestConsul_GetService_WithUnhealthyServiceNode(t *testing.T) {
|
|||||||
})
|
})
|
||||||
defer cl()
|
defer cl()
|
||||||
|
|
||||||
svc, _ := cr.GetService("service-name")
|
svc, err := cr.GetService("service-name")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Unexpected error", err)
|
||||||
|
}
|
||||||
|
|
||||||
if exp, act := 1, len(svc); exp != act {
|
if exp, act := 1, len(svc); exp != act {
|
||||||
t.Fatalf("Expected len of svc to be `%d`, got `%d`.", exp, act)
|
t.Fatalf("Expected len of svc to be `%d`, got `%d`.", exp, act)
|
||||||
}
|
}
|
||||||
@ -176,7 +184,11 @@ func TestConsul_GetService_WithUnhealthyServiceNodes(t *testing.T) {
|
|||||||
})
|
})
|
||||||
defer cl()
|
defer cl()
|
||||||
|
|
||||||
svc, _ := cr.GetService("service-name")
|
svc, err := cr.GetService("service-name")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Unexpected error", err)
|
||||||
|
}
|
||||||
|
|
||||||
if exp, act := 1, len(svc); exp != act {
|
if exp, act := 1, len(svc); exp != act {
|
||||||
t.Fatalf("Expected len of svc to be `%d`, got `%d`.", exp, act)
|
t.Fatalf("Expected len of svc to be `%d`, got `%d`.", exp, act)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user