9
9
10
10
func TestTree (t * testing.T ) {
11
11
hStub := http .HandlerFunc (func (w http.ResponseWriter , r * http.Request ) {})
12
+ misMatch1 := http .HandlerFunc (func (w http.ResponseWriter , r * http.Request ) {})
13
+ misMatch2 := http .HandlerFunc (func (w http.ResponseWriter , r * http.Request ) {})
12
14
hIndex := http .HandlerFunc (func (w http.ResponseWriter , r * http.Request ) {})
13
15
hFavicon := http .HandlerFunc (func (w http.ResponseWriter , r * http.Request ) {})
14
16
hArticleList := http .HandlerFunc (func (w http.ResponseWriter , r * http.Request ) {})
@@ -35,6 +37,9 @@ func TestTree(t *testing.T) {
35
37
tr .InsertRoute (mGET , "/" , hIndex )
36
38
tr .InsertRoute (mGET , "/favicon.ico" , hFavicon )
37
39
40
+ tr .InsertRoute (mGET , "/{:[a-z]+}/" , misMatch1 )
41
+ tr .InsertRoute (mGET , "/{:[1-9]\\ d*}/test" , misMatch2 )
42
+
38
43
tr .InsertRoute (mGET , "/pages/*" , hStub )
39
44
40
45
tr .InsertRoute (mGET , "/article" , hArticleList )
@@ -78,14 +83,19 @@ func TestTree(t *testing.T) {
78
83
tr .InsertRoute (mGET , "/hubs/{hubID}/users" , hHubView3 )
79
84
80
85
tests := []struct {
81
- r string // input request path
82
- h http.Handler // output matched handler
83
- k []string // output param keys
84
- v []string // output param values
86
+ r string // input request path
87
+ h http.Handler // output matched handler
88
+ k []string // output param keys
89
+ v []string // output param values
90
+ mismatch bool // if true, it means the match should fail
85
91
}{
86
92
{r : "/" , h : hIndex , k : []string {}, v : []string {}},
87
93
{r : "/favicon.ico" , h : hFavicon , k : []string {}, v : []string {}},
88
94
95
+ {r : "//" , h : misMatch1 , k : []string {}, v : []string {}, mismatch : true },
96
+ {r : "/123/test" , h : misMatch2 , k : []string {"" }, v : []string {"123" }},
97
+ {r : "//test" , h : misMatch2 , k : []string {}, v : []string {}, mismatch : true },
98
+
89
99
{r : "/pages" , h : nil , k : []string {}, v : []string {}},
90
100
{r : "/pages/" , h : hStub , k : []string {"*" }, v : []string {"" }},
91
101
{r : "/pages/yes" , h : hStub , k : []string {"*" }, v : []string {"yes" }},
@@ -129,7 +139,14 @@ func TestTree(t *testing.T) {
129
139
for i , tt := range tests {
130
140
rctx := NewRouteContext ()
131
141
132
- _ , handlers , _ := tr .FindRoute (rctx , mGET , tt .r )
142
+ n , handlers , _ := tr .FindRoute (rctx , mGET , tt .r )
143
+ if tt .mismatch && n != nil {
144
+ t .Errorf ("input [%d]: find '%s' should mismatch but get node(%+v)!" , i , tt .r , n )
145
+ continue
146
+ }
147
+ if tt .mismatch {
148
+ continue
149
+ }
133
150
134
151
var handler http.Handler
135
152
if methodHandler , ok := handlers [mGET ]; ok {
0 commit comments