server: add a test for the health check handler

This commit is contained in:
Eric Chiang 2016-10-05 08:01:35 -07:00
parent e873a31b21
commit 9243a092cf
1 changed files with 18 additions and 0 deletions

View File

@ -1 +1,19 @@
package server
import (
"net/http"
"net/http/httptest"
"testing"
)
func TestHandleHealth(t *testing.T) {
httpServer, server := newTestServer(t, nil)
defer httpServer.Close()
rr := httptest.NewRecorder()
server.handleHealth(rr, httptest.NewRequest("GET", "/healthz", nil))
if rr.Code != http.StatusOK {
t.Errorf("expected 200 got %d", rr.Code)
}
}