Skip to content

Commit 609b87b

Browse files
committed
1 parent 0d7abac commit 609b87b

File tree

4 files changed

+24
-11
lines changed

4 files changed

+24
-11
lines changed

_examples/609/main.go

-1
This file was deleted.

mux_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1474,7 +1474,7 @@ func TestMuxRegexp2(t *testing.T) {
14741474
ts := httptest.NewServer(r)
14751475
defer ts.Close()
14761476

1477-
if _, body := testRequest(t, ts, "GET", "/foo-.json", nil); body != "" {
1477+
if resp, body := testRequest(t, ts, "GET", "/foo-.json", nil); resp.StatusCode != http.StatusNotFound {
14781478
t.Fatalf(body)
14791479
}
14801480
if _, body := testRequest(t, ts, "GET", "/foo-abc.json", nil); body != "abc" {

tree.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -429,12 +429,11 @@ func (n *node) findRoute(rctx *Context, method methodTyp, path string) *node {
429429
} else {
430430
continue
431431
}
432-
} else if ntyp == ntRegexp && p == 0 {
433-
continue
434432
}
435433

436434
if ntyp == ntRegexp && xn.rex != nil {
437435
if !xn.rex.MatchString(xsearch[:p]) {
436+
xn = nil
438437
continue
439438
}
440439
} else if strings.IndexByte(xsearch[:p], '/') != -1 {
@@ -471,8 +470,6 @@ func (n *node) findRoute(rctx *Context, method methodTyp, path string) *node {
471470
xsearch = search
472471
}
473472

474-
rctx.routeParams.Values = append(rctx.routeParams.Values, "")
475-
476473
default:
477474
// catch-all nodes
478475
rctx.routeParams.Values = append(rctx.routeParams.Values, search)

tree_test.go

+22-5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import (
99

1010
func TestTree(t *testing.T) {
1111
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) {})
1214
hIndex := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {})
1315
hFavicon := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {})
1416
hArticleList := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {})
@@ -35,6 +37,9 @@ func TestTree(t *testing.T) {
3537
tr.InsertRoute(mGET, "/", hIndex)
3638
tr.InsertRoute(mGET, "/favicon.ico", hFavicon)
3739

40+
tr.InsertRoute(mGET, "/{:[a-z]+}/", misMatch1)
41+
tr.InsertRoute(mGET, "/{:[1-9]\\d*}/test", misMatch2)
42+
3843
tr.InsertRoute(mGET, "/pages/*", hStub)
3944

4045
tr.InsertRoute(mGET, "/article", hArticleList)
@@ -78,14 +83,19 @@ func TestTree(t *testing.T) {
7883
tr.InsertRoute(mGET, "/hubs/{hubID}/users", hHubView3)
7984

8085
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
8591
}{
8692
{r: "/", h: hIndex, k: []string{}, v: []string{}},
8793
{r: "/favicon.ico", h: hFavicon, k: []string{}, v: []string{}},
8894

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+
8999
{r: "/pages", h: nil, k: []string{}, v: []string{}},
90100
{r: "/pages/", h: hStub, k: []string{"*"}, v: []string{""}},
91101
{r: "/pages/yes", h: hStub, k: []string{"*"}, v: []string{"yes"}},
@@ -129,7 +139,14 @@ func TestTree(t *testing.T) {
129139
for i, tt := range tests {
130140
rctx := NewRouteContext()
131141

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+
}
133150

134151
var handler http.Handler
135152
if methodHandler, ok := handlers[mGET]; ok {

0 commit comments

Comments
 (0)