-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmiddlewares_test.go
128 lines (105 loc) · 2.73 KB
/
middlewares_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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package gojison
import (
"bytes"
"net/http"
"net/http/httptest"
"testing"
"github.com/ndyakov/whatever"
"github.com/zenazn/goji/web"
)
func wrong(t *testing.T, method string, expected, got interface{}) {
t.Errorf(
"whatever.Params.%s was incorrect.\n Expected: %#v, Got: %#v",
method,
expected,
got,
)
}
func TestResponse(t *testing.T) {
w := httptest.NewRecorder()
r := &http.Request{}
Response(TestHandler{}).ServeHTTP(w, r)
if w.Header().Get("Content-Type") != "application/json" {
t.Error("Expected content-type to be set to application/json")
}
}
func TestRequest(t *testing.T) {
request := []byte(`
{
"one": 1,
"nested":{
"two": 2
}
}
`)
body := bytes.NewBuffer(request)
w := httptest.NewRecorder()
c := &web.C{Env: make(map[interface{}]interface{})}
r, err := http.NewRequest("POST", "/", body)
if err != nil {
t.Error(err)
}
r.Header = map[string][]string{
"Content-Type": {"application/json"},
}
Request(c, TestHandler{}).ServeHTTP(w, r)
paramsAsInterface, ok := c.Env["Params"]
if !ok {
t.Error("Expected params to be set into the context.")
}
params, ok := paramsAsInterface.(whatever.Params)
if params == nil || !ok {
t.Error("Expected params to be unmarshalled into the context.")
}
if c.Env["GojisonDecodeError"] != nil {
t.Error("Expected params to be decoded without an error.")
}
if params.Get("one") != "1" {
wrong(t, "Get on unmarshaled params", "1", params.Get("one"))
}
if params.GetP("nested").GetInt("two") != 2 {
wrong(t, "GetP#GetInt on unmarshaled params", 2, params.GetP("nested").GetInt("two"))
}
}
func TestRequest_withoutJSON(t *testing.T) {
request := []byte{}
body := bytes.NewBuffer(request)
w := httptest.NewRecorder()
c := &web.C{Env: make(map[interface{}]interface{})}
r, err := http.NewRequest("GET", "/", body)
if err != nil {
t.Error(err)
}
r.Header = map[string][]string{}
Request(c, TestHandler{}).ServeHTTP(w, r)
_, ok := c.Env["Params"]
if ok {
t.Error("Expected params to be empty when there is no application/json request.")
}
}
func TestRequest_withInvalidBody(t *testing.T) {
request := []byte(`
{"one"}
`)
body := bytes.NewBuffer(request)
w := httptest.NewRecorder()
c := &web.C{Env: make(map[interface{}]interface{})}
r, err := http.NewRequest("POST", "/", body)
if err != nil {
t.Error(err)
}
r.Header = map[string][]string{
"Content-Type": {"application/json"},
}
Request(c, TestHandler{}).ServeHTTP(w, r)
_, ok := c.Env["Params"]
if !ok {
t.Error("Expected params to be set into the context.")
}
if c.Env["GojisonDecodeError"] == nil {
t.Error("Expected to be an Error when decoding the params.")
}
}
type TestHandler struct{}
func (th TestHandler) ServeHTTP(_ http.ResponseWriter, _ *http.Request) {
}