fix test - ensures the server is listening before the test
All checks were successful
PR Build / Test (pull_request) Successful in 2m40s
PR Build / Build_Image (pull_request) Successful in 1m4s

This commit is contained in:
Julian Haseleu
2025-10-09 14:44:43 +00:00
parent 00708eef30
commit d3467b357f

View File

@@ -4,6 +4,7 @@ import (
"net/http" "net/http"
"strings" "strings"
"testing" "testing"
"time"
) )
func TestHealth(t *testing.T) { func TestHealth(t *testing.T) {
@@ -11,14 +12,19 @@ func TestHealth(t *testing.T) {
go func() { go func() {
hs.Start() hs.Start()
}() }()
// Give the server time to start up
time.Sleep(100 * time.Millisecond)
request, _ := http.NewRequest(http.MethodGet, "http://localhost:8080/health", strings.NewReader("")) request, _ := http.NewRequest(http.MethodGet, "http://localhost:8080/health", strings.NewReader(""))
resp, err := http.DefaultClient.Do(request) resp, err := http.DefaultClient.Do(request)
if err != nil { if err != nil {
t.Errorf("Health endpoint did not start: %v", err) t.Errorf("Health endpoint did not start: %v", err)
return
} }
if resp.StatusCode != http.StatusOK { if resp != nil && resp.StatusCode != http.StatusOK {
t.Errorf("Bad response from health endpoint. Want: %d, got %d", http.StatusOK, resp.StatusCode) t.Errorf("Bad response from health endpoint. Want: %d, got %d", http.StatusOK, resp.StatusCode)
} }
} }