mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-06-29 15:31:05 +08:00
20 lines
565 B
Go
20 lines
565 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" {
|
||
|
|
t.Fatalf("unexpected health result: %+v", result)
|
||
|
|
}
|
||
|
|
if len(result.Meta) == 0 {
|
||
|
|
t.Fatal("expected failure metadata")
|
||
|
|
}
|
||
|
|
}
|