mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2026-01-07 04:25:50 +08:00
实现HTTP部分功能
This commit is contained in:
17
pkg/serverconfigs/http_location_config_test.go
Normal file
17
pkg/serverconfigs/http_location_config_test.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package serverconfigs
|
||||
|
||||
import (
|
||||
"regexp"
|
||||
"testing"
|
||||
"time"
|
||||
)
|
||||
|
||||
func TestHTTPLocationConfig_Match_Reg(t *testing.T) {
|
||||
randString := "1024"
|
||||
reg := regexp.MustCompile(`(?P<num>\d+)`)
|
||||
before := time.Now()
|
||||
subNames := reg.SubexpNames()
|
||||
match := reg.FindStringSubmatch(randString)
|
||||
t.Log(time.Since(before).Seconds()*1000, "ms")
|
||||
t.Log(subNames[1], "=", match[1])
|
||||
}
|
||||
Reference in New Issue
Block a user