-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouter_test.go
206 lines (159 loc) · 5.4 KB
/
router_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
203
204
205
206
package httpserve
import (
"net/http"
"testing"
"github.com/julienschmidt/httprouter"
as "github.com/missionMeteora/apiserv/router"
)
const (
noParamRoute = "/hello/world"
)
var (
handlerSink Handler
paramsSink Params
jsHandleSink httprouter.Handle
jsParamsSink httprouter.Params
asHandlerSink as.Handler
asParamsSink as.Params
boolSink bool
)
func TestRouter(t *testing.T) {
var err error
cc := make(chan string, 3)
r := newRouter()
if err = r.GET(smallRoute, func(ctx *Context) Response {
cc <- "small"
return nil
}); err != nil {
t.Fatal(err)
}
if err = r.GET(mediumRoute, func(ctx *Context) Response {
cc <- "medium"
return nil
}); err != nil {
t.Fatal(err)
}
if err = r.GET(largeRoute, func(ctx *Context) Response {
cc <- "large"
return nil
}); err != nil {
t.Fatal(err)
}
fn, params, ok := r.Match("GET", smallRouteNoParam)
if !ok {
t.Fatal("expected match and none was found")
}
fn(nil)
if val := <-cc; val != "small" {
t.Fatalf("invalid value, expected \"%s\" and received \"%s\"", val, "small")
}
fn, params, ok = r.Match("GET", mediumRouteNoParam)
if !ok {
t.Fatal("expected match and none was found")
}
fn(nil)
if val := <-cc; val != "medium" {
t.Fatalf("invalid value, expected \"%s\" and received \"%s\"", val, "small")
}
fn, params, ok = r.Match("GET", largeRouteNoParam)
if !ok {
t.Fatal("expected match and none was found")
}
fn(nil)
if val := <-cc; val != "large" {
t.Fatalf("invalid value, expected \"%s\" and received \"%s\"", val, "small")
}
if params.ByName("name") != "name" {
t.Fatalf("invalid value, expected \"%s\" and received \"%s\"", "name", params.ByName("name"))
}
}
func BenchmarkRouter_small(b *testing.B) {
r := newRouter()
r.GET(smallRoute, func(ctx *Context) Response { return nil })
r.GET(mediumRoute, func(ctx *Context) Response { return nil })
r.GET(largeRoute, func(ctx *Context) Response { return nil })
for i := 0; i < b.N; i++ {
handlerSink, paramsSink, boolSink = r.Match("GET", smallRouteNoParam)
}
b.ReportAllocs()
}
func BenchmarkRouter_medium(b *testing.B) {
r := newRouter()
r.GET(smallRoute, func(ctx *Context) Response { return nil })
r.GET(mediumRoute, func(ctx *Context) Response { return nil })
r.GET(largeRoute, func(ctx *Context) Response { return nil })
for i := 0; i < b.N; i++ {
handlerSink, paramsSink, boolSink = r.Match("GET", mediumRouteNoParam)
}
b.ReportAllocs()
}
func BenchmarkRouter_large(b *testing.B) {
r := newRouter()
r.GET(smallRoute, func(ctx *Context) Response { return nil })
r.GET(mediumRoute, func(ctx *Context) Response { return nil })
r.GET(largeRoute, func(ctx *Context) Response { return nil })
for i := 0; i < b.N; i++ {
handlerSink, paramsSink, boolSink = r.Match("GET", largeRouteNoParam)
}
b.ReportAllocs()
}
func BenchmarkJulianSchmidt_small(b *testing.B) {
r := httprouter.New()
r.GET(smallRoute, func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {})
r.GET(mediumRoute, func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {})
r.GET(largeRoute, func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {})
for i := 0; i < b.N; i++ {
jsHandleSink, jsParamsSink, boolSink = r.Lookup("GET", smallRouteNoParam)
}
b.ReportAllocs()
}
func BenchmarkJulianSchmidt_medium(b *testing.B) {
r := httprouter.New()
r.GET(smallRoute, func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {})
r.GET(mediumRoute, func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {})
r.GET(largeRoute, func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {})
for i := 0; i < b.N; i++ {
jsHandleSink, jsParamsSink, boolSink = r.Lookup("GET", mediumRouteNoParam)
}
b.ReportAllocs()
}
func BenchmarkJulianSchmidt_large(b *testing.B) {
r := httprouter.New()
r.GET(smallRoute, func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {})
r.GET(mediumRoute, func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {})
r.GET(largeRoute, func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {})
for i := 0; i < b.N; i++ {
jsHandleSink, jsParamsSink, boolSink = r.Lookup("GET", largeRouteNoParam)
}
b.ReportAllocs()
}
func BenchmarkAPIServe_small(b *testing.B) {
r := as.New(nil)
r.GET(smallRoute, func(w http.ResponseWriter, r *http.Request, p as.Params) {})
r.GET(mediumRoute, func(w http.ResponseWriter, r *http.Request, p as.Params) {})
r.GET(largeRoute, func(w http.ResponseWriter, r *http.Request, p as.Params) {})
for i := 0; i < b.N; i++ {
asHandlerSink, asParamsSink = r.Match("GET", smallRouteNoParam)
}
b.ReportAllocs()
}
func BenchmarkAPIServe_medium(b *testing.B) {
r := as.New(nil)
r.GET(smallRoute, func(w http.ResponseWriter, r *http.Request, p as.Params) {})
r.GET(mediumRoute, func(w http.ResponseWriter, r *http.Request, p as.Params) {})
r.GET(largeRoute, func(w http.ResponseWriter, r *http.Request, p as.Params) {})
for i := 0; i < b.N; i++ {
asHandlerSink, asParamsSink = r.Match("GET", mediumRouteNoParam)
}
b.ReportAllocs()
}
func BenchmarkAPIServe_large(b *testing.B) {
r := as.New(nil)
r.GET(smallRoute, func(w http.ResponseWriter, r *http.Request, p as.Params) {})
r.GET(mediumRoute, func(w http.ResponseWriter, r *http.Request, p as.Params) {})
r.GET(largeRoute, func(w http.ResponseWriter, r *http.Request, p as.Params) {})
for i := 0; i < b.N; i++ {
asHandlerSink, asParamsSink = r.Match("GET", largeRouteNoParam)
}
b.ReportAllocs()
}