-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathhandlers_test.go
67 lines (57 loc) · 1.54 KB
/
handlers_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package main
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/go-ozzo/ozzo-routing"
"github.com/go-ozzo/ozzo-routing/content"
)
func newRouter() *routing.Router {
rtr := routing.New()
rtr.Group("/api", content.TypeNegotiator(content.JSON))
return rtr
}
func testHealthHandler(t *testing.T, rtr *routing.Router) {
rtr.Get("/health", healthRoute)
req, err := http.NewRequest("GET", "/health", nil)
req.Header.Set("Content-Type", "application/json")
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
rtr.ServeHTTP(rr, req)
if status := rr.Code; status != http.StatusOK {
t.Errorf("handler returned wrong status code: got %v want %v",
status, http.StatusOK)
}
expected := `OK`
if rr.Body.String() != expected {
t.Errorf("handler returned unexpected body: got %v want %v",
rr.Body.String(), expected)
}
}
func testRepoHandler(t *testing.T, rtr *routing.Router) {
rtr.Get("/repo", repoRoute)
req, err := http.NewRequest("GET", "/repo", nil)
req.Header.Set("Content-Type", "application/json")
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
rtr.ServeHTTP(rr, req)
if status := rr.Code; status != http.StatusOK {
t.Errorf("handler returned wrong status code: got %v want %v",
status, http.StatusOK)
}
expected := `[]`
if rr.Body.String() != expected {
t.Errorf("handler returned unexpected body: got %v want %v",
rr.Body.String(), expected)
}
}
func TestHealth(t *testing.T) {
testHealthHandler(t, newRouter())
}
func TestRepo(t *testing.T) {
testRepoHandler(t, newRouter())
}