mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-22 10:13:11 +00:00
🔔 fix ctx matched bug, it should be reset to false when acquired
This commit is contained in:
parent
2e1dde0c1d
commit
95362e51b6
@ -40,7 +40,12 @@ func Test_App_MethodNotAllowed(t *testing.T) {
|
||||
|
||||
app.Options("/", func(c *Ctx) {})
|
||||
|
||||
resp, err := app.Test(httptest.NewRequest("GET", "/", nil))
|
||||
resp, err := app.Test(httptest.NewRequest("POST", "/", nil))
|
||||
utils.AssertEqual(t, nil, err)
|
||||
utils.AssertEqual(t, 200, resp.StatusCode)
|
||||
utils.AssertEqual(t, "", resp.Header.Get(HeaderAllow))
|
||||
|
||||
resp, err = app.Test(httptest.NewRequest("GET", "/", nil))
|
||||
utils.AssertEqual(t, nil, err)
|
||||
utils.AssertEqual(t, 405, resp.StatusCode)
|
||||
utils.AssertEqual(t, "POST, OPTIONS", resp.Header.Get(HeaderAllow))
|
||||
|
2
ctx.go
2
ctx.go
@ -87,6 +87,8 @@ func (app *App) AcquireCtx(fctx *fasthttp.RequestCtx) *Ctx {
|
||||
// Reset route and handler index
|
||||
ctx.indexRoute = -1
|
||||
ctx.indexHandler = 0
|
||||
// Reset matched flag
|
||||
ctx.matched = false
|
||||
// Set paths
|
||||
ctx.path = getString(fctx.URI().PathOriginal())
|
||||
ctx.pathOriginal = ctx.path
|
||||
|
Loading…
x
Reference in New Issue
Block a user