mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 01:20:26 +08:00
21 lines
371 B
Go
21 lines
371 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package iplibrary
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestIPIsAllowed(t *testing.T) {
|
|
manager := NewIPListManager()
|
|
manager.init()
|
|
|
|
var before = time.Now()
|
|
defer func() {
|
|
t.Log(time.Since(before).Seconds()*1000, "ms")
|
|
}()
|
|
t.Log(AllowIP("127.0.0.1", 0))
|
|
t.Log(AllowIP("127.0.0.1", 23))
|
|
}
|