Add /health endpoint

This commit is contained in:
Maxim Baz
2018-07-30 22:32:42 +02:00
parent 2b72ea66e8
commit 12bc12fa7e
2 changed files with 10 additions and 0 deletions

View File

@ -131,6 +131,7 @@ func TestJSONHandlers(t *testing.T) {
{s.URL + "/port/65356", `{"error":"Invalid port: 65356"}`, 400},
{s.URL + "/port/31337", `{"ip":"127.0.0.1","port":31337,"reachable":true}`, 200},
{s.URL + "/foo", `{"error":"404 page not found"}`, 404},
{s.URL + "/health", `{"status":"OK"}`, 200},
}
for _, tt := range tests {