mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 21:50:28 +08:00
30 lines
487 B
Go
30 lines
487 B
Go
|
|
package uimanager
|
||
|
|
|
||
|
|
import (
|
||
|
|
_ "github.com/iwind/TeaGo/bootstrap"
|
||
|
|
"testing"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestLoadSecurityConfig(t *testing.T) {
|
||
|
|
for i := 0; i < 10; i++ {
|
||
|
|
before := time.Now()
|
||
|
|
config, err := LoadUIConfig()
|
||
|
|
if err != nil {
|
||
|
|
t.Fatal(err)
|
||
|
|
}
|
||
|
|
t.Log(time.Since(before).Seconds()*1000, "ms")
|
||
|
|
t.Logf("%p", config)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestLoadUIConfig2(t *testing.T) {
|
||
|
|
for i := 0; i < 10; i++ {
|
||
|
|
config, err := LoadUIConfig()
|
||
|
|
if err != nil {
|
||
|
|
t.Fatal(err)
|
||
|
|
}
|
||
|
|
t.Log(config)
|
||
|
|
}
|
||
|
|
}
|