mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-07 18:50:27 +08:00
反向代理支持RequestPath、RequestURI等
This commit is contained in:
23
internal/utils/path_test.go
Normal file
23
internal/utils/path_test.go
Normal file
@@ -0,0 +1,23 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"github.com/iwind/TeaGo/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestCleanPath(t *testing.T) {
|
||||
a := assert.NewAssertion(t)
|
||||
|
||||
a.IsTrue(CleanPath("") == "/")
|
||||
a.IsTrue(CleanPath("/hello/world") == "/hello/world")
|
||||
a.IsTrue(CleanPath("\\hello\\world") == "/hello/world")
|
||||
a.IsTrue(CleanPath("/\\hello\\//world") == "/hello/world")
|
||||
a.IsTrue(CleanPath("hello/world") == "/hello/world")
|
||||
a.IsTrue(CleanPath("/hello////world") == "/hello/world")
|
||||
}
|
||||
|
||||
func BenchmarkCleanPath(b *testing.B) {
|
||||
for i := 0; i < b.N; i++ {
|
||||
_ = CleanPath("/hello///world/very/long/very//long")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user