Files
wehub-resource-sync f36e2104d8
tests / ragflow_tests_infinity (push) Has been cancelled
tests / ragflow_tests_elasticsearch (push) Has been cancelled
sep-tests / ragflow_preflight (push) Has been cancelled
sep-tests / ragflow_tests_infinity (push) Has been cancelled
sep-tests / ragflow_tests_elasticsearch (push) Has been cancelled
tests / ragflow_preflight (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:16:49 +08:00

20 lines
597 B
Go

package service
import "testing"
func TestSystemServiceHealthzReportsUnhealthyDependencies(t *testing.T) {
result, allOK := NewSystemService().Healthz(t.Context())
if allOK {
t.Fatal("allOK=true, want false without initialized dependencies")
}
if result.Status != "nok" {
t.Fatalf("status=%q, want nok", result.Status)
}
if result.DB != "nok" || result.Redis != "nok" || result.DocEngine != "nok" || result.Storage != "nok" || result.MessageQueue != "nok" {
t.Fatalf("unexpected health result: %+v", result)
}
if len(result.Meta) == 0 {
t.Fatal("expected failure metadata")
}
}