-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain_test.go
51 lines (42 loc) · 1.07 KB
/
main_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
package main
import (
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
)
func TestRootRedirect(t *testing.T) {
req, err := http.NewRequest("GET", "/", nil)
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
handler := http.HandlerFunc(versionRedirect)
handler.ServeHTTP(rr, req)
if status := rr.Code; status != http.StatusFound {
t.Errorf("handler returned wrong status code: got %v want %v",
status, http.StatusFound)
}
if location := rr.Header().Get("Location"); location != "/v1/" {
t.Errorf("handler returned wrong status code: got %v want %v",
location, "/v1/")
}
}
func TestOpenApi(t *testing.T) {
req, err := http.NewRequest("GET", "/openapi.json", nil)
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
handler := http.HandlerFunc(openAPI)
handler.ServeHTTP(rr, req)
if status := rr.Code; status != http.StatusOK {
t.Errorf("handler returned wrong status code: got %v want %v",
status, http.StatusOK)
}
var resp interface{}
err = json.NewDecoder(rr.Body).Decode(&resp)
if err != nil {
t.Fatal(err)
}
}