forked from labstack/echo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecho_test.go
202 lines (176 loc) · 4.17 KB
/
echo_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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
package echo
import (
"bytes"
"encoding/json"
"io"
"net/http"
"net/http/httptest"
"testing"
)
type (
user struct {
ID string `json:"id"`
Name string `json:"name"`
}
)
var u = user{
ID: "1",
Name: "Joe",
}
// TODO: Fix me
func TestEchoMaxParam(t *testing.T) {
e := New()
e.MaxParam(8)
if e.maxParam != 8 {
t.Errorf("max param should be 8, found %d", e.maxParam)
}
}
func TestEchoIndex(t *testing.T) {
e := New()
e.Index("example/public/index.html")
w := httptest.NewRecorder()
r, _ := http.NewRequest("GET", "/", nil)
e.ServeHTTP(w, r)
if w.Code != 200 {
t.Errorf("status code should be 200, found %d", w.Code)
}
}
func TestEchoStatic(t *testing.T) {
e := New()
e.Static("/js", "example/public/js")
w := httptest.NewRecorder()
r, _ := http.NewRequest("GET", "/js/main.js", nil)
e.ServeHTTP(w, r)
if w.Code != 200 {
t.Errorf("status code should be 200, found %d", w.Code)
}
}
func TestEchoMiddleware(t *testing.T) {
e := New()
b := new(bytes.Buffer)
// func(*echo.Context)
e.Use(func(c *Context) {
b.WriteString("a")
})
// func(echo.HandlerFunc) echo.HandlerFunc
e.Use(func(h HandlerFunc) HandlerFunc {
return HandlerFunc(func(c *Context) {
b.WriteString("b")
h(c)
})
})
// http.HandlerFunc
e.Use(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
b.WriteString("c")
}))
// http.Handler
e.Use(http.Handler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
b.WriteString("d")
})))
// func(http.Handler) http.Handler
e.Use(func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
b.WriteString("e")
h.ServeHTTP(w, r)
})
})
// func(http.ResponseWriter, *http.Request)
e.Use(func(w http.ResponseWriter, r *http.Request) {
b.WriteString("f")
})
// Route
e.Get("/hello", func(c *Context) {
c.String(200, "world")
})
w := httptest.NewRecorder()
r, _ := http.NewRequest("GET", "/hello", nil)
e.ServeHTTP(w, r)
if b.String() != "abcdef" {
t.Errorf("buffer should be abcdef, found %s", b.String())
}
if w.Body.String() != "world" {
t.Error("body should be world")
}
}
func TestEchoHandler(t *testing.T) {
e := New()
// func(*echo.Context)
e.Get("/1", func(c *Context) {
c.String(http.StatusOK, "1")
})
w := httptest.NewRecorder()
r, _ := http.NewRequest("GET", "/1", nil)
e.ServeHTTP(w, r)
if w.Body.String() != "1" {
t.Error("body should be 1")
}
// http.Handler/http.HandlerFunc
e.Get("/2", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("2"))
}))
w = httptest.NewRecorder()
r, _ = http.NewRequest("GET", "/2", nil)
e.ServeHTTP(w, r)
if w.Body.String() != "2" {
t.Error("body should be 2")
}
// func(http.ResponseWriter, *http.Request)
e.Get("/3", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("3"))
})
w = httptest.NewRecorder()
r, _ = http.NewRequest("GET", "/3", nil)
e.ServeHTTP(w, r)
if w.Body.String() != "3" {
t.Error("body should be 3")
}
}
func TestEchoMethod(t *testing.T) {
// e := New()
// // GET
// e.Get("/users", func(c *Context) {})
// h, _, _ := e.Router.Find("GET", "/users")
// if h == nil {
// t.Error("should find route for GET")
// }
}
func TestEchoServeHTTP(t *testing.T) {
e := New()
// OK
e.Get("/users", func(c *Context) {
})
w := httptest.NewRecorder()
r, _ := http.NewRequest("GET", "/users", nil)
e.ServeHTTP(w, r)
if w.Code != http.StatusOK {
t.Errorf("status code should be 200, found %d", w.Code)
}
// NotFound
r, _ = http.NewRequest("GET", "/user", nil)
w = httptest.NewRecorder()
e.ServeHTTP(w, r)
if w.Code != http.StatusNotFound {
t.Errorf("status code should be 404, found %d", w.Code)
}
// NotAllowed
r, _ = http.NewRequest("POST", "/users", nil)
w = httptest.NewRecorder()
e.ServeHTTP(w, r)
if w.Code != http.StatusMethodNotAllowed {
t.Errorf("status code should be 405, found %d", w.Code)
}
}
func verifyUser(rd io.Reader, t *testing.T) {
u2 := new(user)
dec := json.NewDecoder(rd)
err := dec.Decode(u2)
if err != nil {
t.Error(err)
}
if u2.ID != u.ID {
t.Errorf("user id should be %s, found %s", u.ID, u2.ID)
}
if u2.Name != u.Name {
t.Errorf("user name should be %s, found %s", u.Name, u2.Name)
}
}