- 新增 IsInternalRedirect 检测内部重定向请求 - static handler 支持 internal 访问限制 - proxy handler 支持 internal 访问限制 - 支持 X-Accel-Redirect 内部重定向 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
77 lines
1.7 KiB
Go
77 lines
1.7 KiB
Go
package matcher
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/valyala/fasthttp"
|
|
)
|
|
|
|
func BenchmarkRadixTree_Insert(b *testing.B) {
|
|
tree := NewRadixTree()
|
|
handler := func(ctx *fasthttp.RequestCtx) {}
|
|
|
|
paths := []string{
|
|
"/", "/api", "/api/v1", "/api/v2",
|
|
"/static", "/static/css", "/static/js",
|
|
"/user", "/user/profile", "/user/settings",
|
|
}
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
for _, p := range paths {
|
|
tree.Insert(p, handler, i, "prefix", false)
|
|
}
|
|
}
|
|
}
|
|
|
|
func BenchmarkRadixTree_Find(b *testing.B) {
|
|
tree := NewRadixTree()
|
|
handler := func(ctx *fasthttp.RequestCtx) {}
|
|
|
|
paths := []string{"/", "/api", "/api/v1", "/api/v2/users/123"}
|
|
for i, p := range paths {
|
|
tree.Insert(p, handler, i+1, "prefix", false)
|
|
}
|
|
tree.MarkInitialized()
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
tree.FindLongestPrefix("/api/v2/users/123/details")
|
|
}
|
|
}
|
|
|
|
func BenchmarkExactMatcher_Match(b *testing.B) {
|
|
handler := func(ctx *fasthttp.RequestCtx) {}
|
|
m := NewExactMatcher("/api/users", handler, 1, false)
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
m.Match("/api/users")
|
|
}
|
|
}
|
|
|
|
func BenchmarkRegexMatcher_Match(b *testing.B) {
|
|
m := MustRegexMatcher(`^/api/v[0-9]+/users/[0-9]+$`, nil, 3, false, false)
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
m.Match("/api/v1/users/123")
|
|
}
|
|
}
|
|
|
|
func BenchmarkLocationEngine_Match(b *testing.B) {
|
|
engine := NewLocationEngine()
|
|
handler := func(ctx *fasthttp.RequestCtx) {}
|
|
|
|
engine.AddExact("/api", handler, false)
|
|
engine.AddPrefixPriority("/api/", handler, false)
|
|
engine.AddRegex(`\.php$`, handler, false, false)
|
|
engine.AddPrefix("/", handler, false)
|
|
engine.MarkInitialized()
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
engine.Match("/api/users/123")
|
|
}
|
|
}
|