mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20:25 +08:00
29 lines
736 B
Go
29 lines
736 B
Go
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 TestCleanPath_Args(t *testing.T) {
|
|
a := assert.NewAssertion(t)
|
|
a.IsTrue(CleanPath("/hello/world?base=///////") == "/hello/world?base=///////")
|
|
}
|
|
|
|
func BenchmarkCleanPath(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
_ = CleanPath("/hello///world/very/long/very//long")
|
|
}
|
|
}
|