2020-11-09 10:45:44 +08:00
|
|
|
package iplibrary
|
|
|
|
|
|
|
|
|
|
import (
|
2021-02-02 15:26:00 +08:00
|
|
|
"github.com/TeaOSLab/EdgeNode/internal/utils"
|
2021-01-03 20:18:47 +08:00
|
|
|
"github.com/iwind/TeaGo/assert"
|
|
|
|
|
"github.com/iwind/TeaGo/logs"
|
2021-10-04 17:42:38 +08:00
|
|
|
"github.com/iwind/TeaGo/rands"
|
2020-11-09 10:45:44 +08:00
|
|
|
"runtime"
|
2021-12-08 15:17:45 +08:00
|
|
|
"runtime/debug"
|
2020-11-09 10:45:44 +08:00
|
|
|
"strconv"
|
2021-12-08 15:17:45 +08:00
|
|
|
"sync"
|
2020-11-09 10:45:44 +08:00
|
|
|
"testing"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
2021-01-03 20:18:47 +08:00
|
|
|
func TestIPList_Add_Empty(t *testing.T) {
|
|
|
|
|
ipList := NewIPList()
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 1,
|
|
|
|
|
})
|
|
|
|
|
logs.PrintAsJSON(ipList.itemsMap, t)
|
2021-10-04 17:42:38 +08:00
|
|
|
logs.PrintAsJSON(ipList.allItemsMap, t)
|
2021-01-03 20:18:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestIPList_Add_One(t *testing.T) {
|
|
|
|
|
ipList := NewIPList()
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 1,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPFrom: utils.IP2Long("192.168.1.1"),
|
2021-01-03 20:18:47 +08:00
|
|
|
})
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 2,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPTo: utils.IP2Long("192.168.1.2"),
|
|
|
|
|
})
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 3,
|
2021-10-04 17:42:38 +08:00
|
|
|
IPFrom: utils.IP2Long("192.168.0.2"),
|
2021-02-02 15:26:00 +08:00
|
|
|
})
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 4,
|
2021-10-04 17:42:38 +08:00
|
|
|
IPFrom: utils.IP2Long("192.168.0.2"),
|
|
|
|
|
IPTo: utils.IP2Long("192.168.0.1"),
|
|
|
|
|
})
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 5,
|
|
|
|
|
IPFrom: utils.IP2Long("2001:db8:0:1::101"),
|
|
|
|
|
})
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 6,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPFrom: 0,
|
|
|
|
|
Type: "all",
|
2021-01-03 20:18:47 +08:00
|
|
|
})
|
2021-10-04 17:42:38 +08:00
|
|
|
t.Log("===items===")
|
2021-01-03 20:18:47 +08:00
|
|
|
logs.PrintAsJSON(ipList.itemsMap, t)
|
2021-10-04 17:42:38 +08:00
|
|
|
|
|
|
|
|
t.Log("===sorted items===")
|
|
|
|
|
logs.PrintAsJSON(ipList.sortedItems, t)
|
|
|
|
|
|
|
|
|
|
t.Log("===all items===")
|
|
|
|
|
logs.PrintAsJSON(ipList.allItemsMap, t) // ip => items
|
2021-01-03 20:18:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestIPList_Update(t *testing.T) {
|
|
|
|
|
ipList := NewIPList()
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 1,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPFrom: utils.IP2Long("192.168.1.1"),
|
2021-01-03 20:18:47 +08:00
|
|
|
})
|
|
|
|
|
/**ipList.Add(&IPItem{
|
|
|
|
|
Id: 2,
|
2021-10-04 17:42:38 +08:00
|
|
|
IPFrom: utils.IP2Long("192.168.1.1"),
|
2021-01-03 20:18:47 +08:00
|
|
|
})**/
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 1,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPTo: utils.IP2Long("192.168.1.2"),
|
2021-01-03 20:18:47 +08:00
|
|
|
})
|
|
|
|
|
logs.PrintAsJSON(ipList.itemsMap, t)
|
2021-10-04 17:42:38 +08:00
|
|
|
logs.PrintAsJSON(ipList.sortedItems, t)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestIPList_Update_AllItems(t *testing.T) {
|
|
|
|
|
ipList := NewIPList()
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 1,
|
|
|
|
|
Type: IPItemTypeAll,
|
|
|
|
|
IPFrom: 0,
|
|
|
|
|
})
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 1,
|
|
|
|
|
IPTo: 0,
|
|
|
|
|
})
|
|
|
|
|
t.Log("===items map===")
|
|
|
|
|
logs.PrintAsJSON(ipList.itemsMap, t)
|
|
|
|
|
t.Log("===all items map===")
|
|
|
|
|
logs.PrintAsJSON(ipList.allItemsMap, t)
|
2021-01-03 20:18:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestIPList_Add_Range(t *testing.T) {
|
|
|
|
|
ipList := NewIPList()
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 1,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPFrom: utils.IP2Long("192.168.1.1"),
|
|
|
|
|
IPTo: utils.IP2Long("192.168.2.1"),
|
2021-01-03 20:18:47 +08:00
|
|
|
})
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 2,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPTo: utils.IP2Long("192.168.1.2"),
|
2021-01-03 20:18:47 +08:00
|
|
|
})
|
2021-10-04 17:42:38 +08:00
|
|
|
t.Log(len(ipList.itemsMap), "ips")
|
2021-01-03 20:18:47 +08:00
|
|
|
logs.PrintAsJSON(ipList.itemsMap, t)
|
2021-10-04 17:42:38 +08:00
|
|
|
logs.PrintAsJSON(ipList.allItemsMap, t)
|
2021-01-03 20:18:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestIPList_Add_Overflow(t *testing.T) {
|
|
|
|
|
a := assert.NewAssertion(t)
|
|
|
|
|
|
|
|
|
|
ipList := NewIPList()
|
|
|
|
|
ipList.Add(&IPItem{
|
|
|
|
|
Id: 1,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPFrom: utils.IP2Long("192.168.1.1"),
|
|
|
|
|
IPTo: utils.IP2Long("192.169.255.1"),
|
2021-01-03 20:18:47 +08:00
|
|
|
})
|
2021-10-04 17:42:38 +08:00
|
|
|
t.Log(len(ipList.itemsMap), "ips")
|
|
|
|
|
a.IsTrue(len(ipList.itemsMap) <= 65535)
|
2021-01-03 20:18:47 +08:00
|
|
|
}
|
|
|
|
|
|
2020-11-09 10:45:44 +08:00
|
|
|
func TestNewIPList_Memory(t *testing.T) {
|
|
|
|
|
list := NewIPList()
|
|
|
|
|
|
|
|
|
|
for i := 0; i < 200_0000; i++ {
|
|
|
|
|
list.Add(&IPItem{
|
|
|
|
|
IPFrom: 1,
|
|
|
|
|
IPTo: 2,
|
|
|
|
|
ExpiredAt: time.Now().Unix(),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t.Log("ok")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestIPList_Contains(t *testing.T) {
|
2021-10-04 17:42:38 +08:00
|
|
|
var a = assert.NewAssertion(t)
|
|
|
|
|
|
2020-11-09 10:45:44 +08:00
|
|
|
list := NewIPList()
|
|
|
|
|
for i := 0; i < 255; i++ {
|
2021-10-04 17:42:38 +08:00
|
|
|
list.AddDelay(&IPItem{
|
2020-11-09 10:45:44 +08:00
|
|
|
Id: int64(i),
|
2021-02-02 15:26:00 +08:00
|
|
|
IPFrom: utils.IP2Long(strconv.Itoa(i) + ".168.0.1"),
|
|
|
|
|
IPTo: utils.IP2Long(strconv.Itoa(i) + ".168.255.1"),
|
2020-11-09 10:45:44 +08:00
|
|
|
ExpiredAt: 0,
|
|
|
|
|
})
|
|
|
|
|
}
|
2021-10-04 17:42:38 +08:00
|
|
|
for i := 0; i < 255; i++ {
|
|
|
|
|
list.AddDelay(&IPItem{
|
|
|
|
|
Id: int64(1000 + i),
|
|
|
|
|
IPFrom: utils.IP2Long("192.167.2." + strconv.Itoa(i)),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
list.Sort()
|
|
|
|
|
t.Log(len(list.itemsMap), "ip")
|
2021-01-03 20:18:47 +08:00
|
|
|
|
|
|
|
|
before := time.Now()
|
2021-10-04 17:42:38 +08:00
|
|
|
a.IsTrue(list.Contains(utils.IP2Long("192.168.1.100")))
|
|
|
|
|
a.IsTrue(list.Contains(utils.IP2Long("192.168.2.100")))
|
|
|
|
|
a.IsFalse(list.Contains(utils.IP2Long("192.169.3.100")))
|
|
|
|
|
a.IsFalse(list.Contains(utils.IP2Long("192.167.3.100")))
|
|
|
|
|
a.IsTrue(list.Contains(utils.IP2Long("192.167.2.100")))
|
|
|
|
|
t.Log(time.Since(before).Seconds()*1000, "ms")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestIPList_Contains_Many(t *testing.T) {
|
|
|
|
|
list := NewIPList()
|
|
|
|
|
for i := 0; i < 1_000_000; i++ {
|
|
|
|
|
list.AddDelay(&IPItem{
|
|
|
|
|
Id: int64(i),
|
|
|
|
|
IPFrom: utils.IP2Long(strconv.Itoa(rands.Int(0, 255)) + "." + strconv.Itoa(rands.Int(0, 255)) + "." + strconv.Itoa(rands.Int(0, 255)) + "." + strconv.Itoa(rands.Int(0, 255))),
|
|
|
|
|
IPTo: utils.IP2Long(strconv.Itoa(rands.Int(0, 255)) + "." + strconv.Itoa(rands.Int(0, 255)) + "." + strconv.Itoa(rands.Int(0, 255)) + "." + strconv.Itoa(rands.Int(0, 255))),
|
|
|
|
|
ExpiredAt: 0,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
list.Sort()
|
|
|
|
|
t.Log(len(list.itemsMap), "ip")
|
|
|
|
|
|
|
|
|
|
before := time.Now()
|
|
|
|
|
_ = list.Contains(utils.IP2Long("192.168.1.100"))
|
2021-01-03 20:18:47 +08:00
|
|
|
t.Log(time.Since(before).Seconds()*1000, "ms")
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-02 15:26:00 +08:00
|
|
|
func TestIPList_ContainsAll(t *testing.T) {
|
|
|
|
|
list := NewIPList()
|
|
|
|
|
list.Add(&IPItem{
|
|
|
|
|
Id: 1,
|
|
|
|
|
Type: "all",
|
|
|
|
|
IPFrom: 0,
|
|
|
|
|
})
|
|
|
|
|
b := list.Contains(utils.IP2Long("192.168.1.1"))
|
|
|
|
|
if b {
|
|
|
|
|
t.Log(b)
|
|
|
|
|
} else {
|
|
|
|
|
t.Fatal("'b' should be true")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
list.Delete(1)
|
|
|
|
|
|
|
|
|
|
b = list.Contains(utils.IP2Long("192.168.1.1"))
|
|
|
|
|
if !b {
|
|
|
|
|
t.Log(b)
|
|
|
|
|
} else {
|
|
|
|
|
t.Fatal("'b' should be false")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-04 17:42:38 +08:00
|
|
|
func TestIPList_ContainsIPStrings(t *testing.T) {
|
|
|
|
|
var a = assert.NewAssertion(t)
|
|
|
|
|
|
|
|
|
|
list := NewIPList()
|
|
|
|
|
for i := 0; i < 255; i++ {
|
|
|
|
|
list.Add(&IPItem{
|
|
|
|
|
Id: int64(i),
|
|
|
|
|
IPFrom: utils.IP2Long(strconv.Itoa(i) + ".168.0.1"),
|
|
|
|
|
IPTo: utils.IP2Long(strconv.Itoa(i) + ".168.255.1"),
|
|
|
|
|
ExpiredAt: 0,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
t.Log(len(list.itemsMap), "ip")
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
item, ok := list.ContainsIPStrings([]string{"192.168.1.100"})
|
|
|
|
|
t.Log("item:", item)
|
|
|
|
|
a.IsTrue(ok)
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
item, ok := list.ContainsIPStrings([]string{"192.167.1.100"})
|
|
|
|
|
t.Log("item:", item)
|
|
|
|
|
a.IsFalse(ok)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-03 20:18:47 +08:00
|
|
|
func TestIPList_Delete(t *testing.T) {
|
|
|
|
|
list := NewIPList()
|
|
|
|
|
list.Add(&IPItem{
|
|
|
|
|
Id: 1,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPFrom: utils.IP2Long("192.168.0.1"),
|
2021-01-03 20:18:47 +08:00
|
|
|
ExpiredAt: 0,
|
|
|
|
|
})
|
|
|
|
|
list.Add(&IPItem{
|
|
|
|
|
Id: 2,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPFrom: utils.IP2Long("192.168.0.1"),
|
2021-01-03 20:18:47 +08:00
|
|
|
ExpiredAt: 0,
|
|
|
|
|
})
|
|
|
|
|
t.Log("===BEFORE===")
|
|
|
|
|
logs.PrintAsJSON(list.itemsMap, t)
|
2021-10-04 17:42:38 +08:00
|
|
|
logs.PrintAsJSON(list.allItemsMap, t)
|
2021-01-03 20:18:47 +08:00
|
|
|
|
|
|
|
|
list.Delete(1)
|
|
|
|
|
|
|
|
|
|
t.Log("===AFTER===")
|
|
|
|
|
logs.PrintAsJSON(list.itemsMap, t)
|
2021-10-04 17:42:38 +08:00
|
|
|
logs.PrintAsJSON(list.allItemsMap, t)
|
2021-01-03 20:18:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestGC(t *testing.T) {
|
|
|
|
|
list := NewIPList()
|
|
|
|
|
list.Add(&IPItem{
|
|
|
|
|
Id: 1,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPFrom: utils.IP2Long("192.168.1.100"),
|
|
|
|
|
IPTo: utils.IP2Long("192.168.1.101"),
|
2021-01-03 20:18:47 +08:00
|
|
|
ExpiredAt: time.Now().Unix() + 1,
|
|
|
|
|
})
|
|
|
|
|
list.Add(&IPItem{
|
|
|
|
|
Id: 2,
|
2021-02-02 15:26:00 +08:00
|
|
|
IPFrom: utils.IP2Long("192.168.1.102"),
|
|
|
|
|
IPTo: utils.IP2Long("192.168.1.103"),
|
2021-01-03 20:18:47 +08:00
|
|
|
ExpiredAt: 0,
|
|
|
|
|
})
|
|
|
|
|
logs.PrintAsJSON(list.itemsMap, t)
|
2021-10-04 17:42:38 +08:00
|
|
|
logs.PrintAsJSON(list.allItemsMap, t)
|
2021-01-03 20:18:47 +08:00
|
|
|
|
|
|
|
|
time.Sleep(2 * time.Second)
|
|
|
|
|
t.Log("===AFTER GC===")
|
|
|
|
|
logs.PrintAsJSON(list.itemsMap, t)
|
2021-10-04 17:42:38 +08:00
|
|
|
logs.PrintAsJSON(list.sortedItems, t)
|
2020-11-09 10:45:44 +08:00
|
|
|
}
|
|
|
|
|
|
2021-12-08 15:17:45 +08:00
|
|
|
func TestTooManyLists(t *testing.T) {
|
|
|
|
|
debug.SetMaxThreads(20)
|
|
|
|
|
|
|
|
|
|
var lists = []*IPList{}
|
|
|
|
|
var locker = &sync.Mutex{}
|
|
|
|
|
for i := 0; i < 1000; i++ {
|
|
|
|
|
locker.Lock()
|
|
|
|
|
lists = append(lists, NewIPList())
|
|
|
|
|
locker.Unlock()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
|
t.Log(runtime.NumGoroutine())
|
|
|
|
|
t.Log(len(lists), "lists")
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-09 10:45:44 +08:00
|
|
|
func BenchmarkIPList_Contains(b *testing.B) {
|
|
|
|
|
runtime.GOMAXPROCS(1)
|
|
|
|
|
|
2022-03-17 19:48:04 +08:00
|
|
|
var list = NewIPList()
|
|
|
|
|
for i := 1; i < 200_000; i++ {
|
|
|
|
|
list.AddDelay(&IPItem{
|
2021-10-04 17:42:38 +08:00
|
|
|
Id: int64(i),
|
2022-03-17 19:48:04 +08:00
|
|
|
IPFrom: utils.IP2Long(strconv.Itoa(rands.Int(0, 255)) + "." + strconv.Itoa(rands.Int(0, 255)) + ".0.1"),
|
|
|
|
|
IPTo: utils.IP2Long(strconv.Itoa(rands.Int(0, 255)) + "." + strconv.Itoa(rands.Int(0, 255)) + ".0.1"),
|
2020-11-09 10:45:44 +08:00
|
|
|
ExpiredAt: time.Now().Unix() + 60,
|
|
|
|
|
})
|
|
|
|
|
}
|
2022-03-17 19:48:04 +08:00
|
|
|
list.Sort()
|
|
|
|
|
|
2021-10-04 17:42:38 +08:00
|
|
|
b.Log(len(list.itemsMap), "ip")
|
2022-03-17 19:48:04 +08:00
|
|
|
|
|
|
|
|
b.ResetTimer()
|
2020-11-09 10:45:44 +08:00
|
|
|
for i := 0; i < b.N; i++ {
|
2021-02-02 15:26:00 +08:00
|
|
|
_ = list.Contains(utils.IP2Long("192.168.1.100"))
|
2020-11-09 10:45:44 +08:00
|
|
|
}
|
|
|
|
|
}
|