2016-07-26 01:30:28 +05:30
|
|
|
package server
|
2016-10-05 20:31:35 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
2016-10-13 07:21:32 +05:30
|
|
|
|
|
|
|
"golang.org/x/net/context"
|
2016-10-05 20:31:35 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
func TestHandleHealth(t *testing.T) {
|
2016-10-13 07:21:32 +05:30
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
2016-10-14 06:45:20 +05:30
|
|
|
httpServer, server := newTestServer(ctx, t, nil)
|
2016-10-05 20:31:35 +05:30
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|