mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			264 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			264 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package caches
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"github.com/cespare/xxhash"
 | 
						|
	"github.com/iwind/TeaGo/logs"
 | 
						|
	"github.com/iwind/TeaGo/rands"
 | 
						|
	"math/rand"
 | 
						|
	"strconv"
 | 
						|
	"testing"
 | 
						|
	"time"
 | 
						|
)
 | 
						|
 | 
						|
func TestMemoryList_Add(t *testing.T) {
 | 
						|
	list := NewMemoryList().(*MemoryList)
 | 
						|
	_ = list.Init()
 | 
						|
	_ = list.Add("a", &Item{
 | 
						|
		Key:        "a1",
 | 
						|
		ExpiredAt:  time.Now().Unix() + 3600,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	_ = list.Add("b", &Item{
 | 
						|
		Key:        "b1",
 | 
						|
		ExpiredAt:  time.Now().Unix() + 3600,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	_ = list.Add("123456", &Item{
 | 
						|
		Key:        "c1",
 | 
						|
		ExpiredAt:  time.Now().Unix() + 3600,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	t.Log(list.prefixes)
 | 
						|
	logs.PrintAsJSON(list.itemMaps, t)
 | 
						|
	logs.PrintAsJSON(list.weekItemMaps, t)
 | 
						|
	t.Log(list.Count())
 | 
						|
}
 | 
						|
 | 
						|
func TestMemoryList_Remove(t *testing.T) {
 | 
						|
	list := NewMemoryList().(*MemoryList)
 | 
						|
	_ = list.Init()
 | 
						|
	_ = list.Add("a", &Item{
 | 
						|
		Key:        "a1",
 | 
						|
		ExpiredAt:  time.Now().Unix() + 3600,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	_ = list.Add("b", &Item{
 | 
						|
		Key:        "b1",
 | 
						|
		ExpiredAt:  time.Now().Unix() + 3600,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	_ = list.Remove("b")
 | 
						|
	list.print(t)
 | 
						|
	logs.PrintAsJSON(list.weekItemMaps, t)
 | 
						|
	t.Log(list.Count())
 | 
						|
}
 | 
						|
 | 
						|
func TestMemoryList_Purge(t *testing.T) {
 | 
						|
	list := NewMemoryList().(*MemoryList)
 | 
						|
	_ = list.Init()
 | 
						|
	_ = list.Add("a", &Item{
 | 
						|
		Key:        "a1",
 | 
						|
		ExpiredAt:  time.Now().Unix() + 3600,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	_ = list.Add("b", &Item{
 | 
						|
		Key:        "b1",
 | 
						|
		ExpiredAt:  time.Now().Unix() + 3600,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	_ = list.Add("c", &Item{
 | 
						|
		Key:        "c1",
 | 
						|
		ExpiredAt:  time.Now().Unix() - 3600,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	_ = list.Add("d", &Item{
 | 
						|
		Key:        "d1",
 | 
						|
		ExpiredAt:  time.Now().Unix() - 2,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	_, _ = list.Purge(100, func(hash string) error {
 | 
						|
		t.Log("delete:", hash)
 | 
						|
		return nil
 | 
						|
	})
 | 
						|
	list.print(t)
 | 
						|
	logs.PrintAsJSON(list.weekItemMaps, t)
 | 
						|
 | 
						|
	for i := 0; i < 1000; i++ {
 | 
						|
		_, _ = list.Purge(100, func(hash string) error {
 | 
						|
			t.Log("delete:", hash)
 | 
						|
			return nil
 | 
						|
		})
 | 
						|
		t.Log(list.purgeIndex)
 | 
						|
	}
 | 
						|
 | 
						|
	t.Log(list.Count())
 | 
						|
}
 | 
						|
 | 
						|
func TestMemoryList_Purge_Large_List(t *testing.T) {
 | 
						|
	list := NewMemoryList().(*MemoryList)
 | 
						|
	_ = list.Init()
 | 
						|
 | 
						|
	for i := 0; i < 1_000_000; i++ {
 | 
						|
		_ = list.Add("a"+strconv.Itoa(i), &Item{
 | 
						|
			Key:        "a" + strconv.Itoa(i),
 | 
						|
			ExpiredAt:  time.Now().Unix() + int64(rands.Int(0, 24*3600)),
 | 
						|
			HeaderSize: 1024,
 | 
						|
		})
 | 
						|
	}
 | 
						|
 | 
						|
	time.Sleep(1 * time.Hour)
 | 
						|
}
 | 
						|
 | 
						|
func TestMemoryList_Stat(t *testing.T) {
 | 
						|
	list := NewMemoryList()
 | 
						|
	_ = list.Init()
 | 
						|
	_ = list.Add("a", &Item{
 | 
						|
		Key:        "a1",
 | 
						|
		ExpiredAt:  time.Now().Unix() + 3600,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	_ = list.Add("b", &Item{
 | 
						|
		Key:        "b1",
 | 
						|
		ExpiredAt:  time.Now().Unix() + 3600,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	_ = list.Add("c", &Item{
 | 
						|
		Key:        "c1",
 | 
						|
		ExpiredAt:  time.Now().Unix(),
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	_ = list.Add("d", &Item{
 | 
						|
		Key:        "d1",
 | 
						|
		ExpiredAt:  time.Now().Unix() - 2,
 | 
						|
		HeaderSize: 1024,
 | 
						|
	})
 | 
						|
	result, _ := list.Stat(func(hash string) bool {
 | 
						|
		// 随机测试
 | 
						|
		rand.Seed(time.Now().UnixNano())
 | 
						|
		return rand.Int()%2 == 0
 | 
						|
	})
 | 
						|
	t.Log(result)
 | 
						|
}
 | 
						|
 | 
						|
func TestMemoryList_CleanPrefix(t *testing.T) {
 | 
						|
	list := NewMemoryList()
 | 
						|
	_ = list.Init()
 | 
						|
	before := time.Now()
 | 
						|
	for i := 0; i < 1_000_000; i++ {
 | 
						|
		key := "https://www.teaos.cn/hello/" + strconv.Itoa(i/10000) + "/" + strconv.Itoa(i) + ".html"
 | 
						|
		_ = list.Add(fmt.Sprintf("%d", xxhash.Sum64String(key)), &Item{
 | 
						|
			Key:        key,
 | 
						|
			ExpiredAt:  time.Now().Unix() + 3600,
 | 
						|
			BodySize:   0,
 | 
						|
			HeaderSize: 0,
 | 
						|
		})
 | 
						|
	}
 | 
						|
	t.Log(time.Since(before).Seconds()*1000, "ms")
 | 
						|
 | 
						|
	before = time.Now()
 | 
						|
	err := list.CleanPrefix("https://www.teaos.cn/hello/10")
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
 | 
						|
	logs.Println(list.Stat(func(hash string) bool {
 | 
						|
		return true
 | 
						|
	}))
 | 
						|
 | 
						|
	t.Log(time.Since(before).Seconds()*1000, "ms")
 | 
						|
}
 | 
						|
 | 
						|
func TestMemoryList_PurgeLFU(t *testing.T) {
 | 
						|
	var list = NewMemoryList().(*MemoryList)
 | 
						|
	list.minWeek = 2704
 | 
						|
 | 
						|
	var before = time.Now()
 | 
						|
	defer func() {
 | 
						|
		t.Log(time.Since(before).Seconds()*1000, "ms")
 | 
						|
	}()
 | 
						|
 | 
						|
	t.Log("current week:", currentWeek())
 | 
						|
 | 
						|
	_ = list.Add("1", &Item{})
 | 
						|
	_ = list.Add("2", &Item{})
 | 
						|
	_ = list.Add("3", &Item{})
 | 
						|
	_ = list.Add("4", &Item{})
 | 
						|
	_ = list.Add("5", &Item{})
 | 
						|
	_ = list.Add("6", &Item{Week: 2704})
 | 
						|
	_ = list.Add("7", &Item{Week: 2704})
 | 
						|
	_ = list.Add("8", &Item{Week: 2705})
 | 
						|
 | 
						|
	err := list.PurgeLFU(2, func(hash string) error {
 | 
						|
		t.Log("purge lfu:", hash)
 | 
						|
		return nil
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		t.Fatal(err)
 | 
						|
	}
 | 
						|
	t.Log("ok")
 | 
						|
 | 
						|
	logs.PrintAsJSON(list.weekItemMaps, t)
 | 
						|
	t.Log(list.Count())
 | 
						|
}
 | 
						|
 | 
						|
func TestMemoryList_IncreaseHit(t *testing.T) {
 | 
						|
	var list = NewMemoryList().(*MemoryList)
 | 
						|
	var item = &Item{}
 | 
						|
	item.Week = 2705
 | 
						|
	item.Week2Hits = 100
 | 
						|
 | 
						|
	_ = list.Add("a", &Item{})
 | 
						|
	_ = list.Add("a", item)
 | 
						|
	t.Log("hits1:", item.Week1Hits, "hits2:", item.Week2Hits, "week:", item.Week)
 | 
						|
	logs.PrintAsJSON(list.weekItemMaps, t)
 | 
						|
 | 
						|
	_ = list.IncreaseHit("a")
 | 
						|
	t.Log("hits1:", item.Week1Hits, "hits2:", item.Week2Hits, "week:", item.Week)
 | 
						|
	logs.PrintAsJSON(list.weekItemMaps, t)
 | 
						|
 | 
						|
	_ = list.IncreaseHit("a")
 | 
						|
	t.Log("hits1:", item.Week1Hits, "hits2:", item.Week2Hits, "week:", item.Week)
 | 
						|
	logs.PrintAsJSON(list.weekItemMaps, t)
 | 
						|
}
 | 
						|
 | 
						|
func TestMemoryList_CleanAll(t *testing.T) {
 | 
						|
	var list = NewMemoryList().(*MemoryList)
 | 
						|
	var item = &Item{}
 | 
						|
	item.Week = 2705
 | 
						|
	item.Week2Hits = 100
 | 
						|
 | 
						|
	_ = list.Add("a", &Item{})
 | 
						|
	_ = list.CleanAll()
 | 
						|
	logs.PrintAsJSON(list.itemMaps, t)
 | 
						|
	logs.PrintAsJSON(list.weekItemMaps, t)
 | 
						|
	t.Log(list.Count())
 | 
						|
}
 | 
						|
 | 
						|
func TestMemoryList_GC(t *testing.T) {
 | 
						|
	list := NewMemoryList().(*MemoryList)
 | 
						|
	_ = list.Init()
 | 
						|
	for i := 0; i < 1_000_000; i++ {
 | 
						|
		key := "https://www.teaos.cn/hello" + strconv.Itoa(i/100000) + "/" + strconv.Itoa(i) + ".html"
 | 
						|
		_ = list.Add(fmt.Sprintf("%d", xxhash.Sum64String(key)), &Item{
 | 
						|
			Key:        key,
 | 
						|
			ExpiredAt:  0,
 | 
						|
			BodySize:   0,
 | 
						|
			HeaderSize: 0,
 | 
						|
		})
 | 
						|
	}
 | 
						|
	time.Sleep(10 * time.Second)
 | 
						|
	t.Log("clean...", len(list.itemMaps))
 | 
						|
	_ = list.CleanAll()
 | 
						|
	t.Log("cleanAll...", len(list.itemMaps))
 | 
						|
	before := time.Now()
 | 
						|
	//runtime.GC()
 | 
						|
	t.Log("gc cost:", time.Since(before).Seconds()*1000, "ms")
 | 
						|
 | 
						|
	timeout := time.NewTimer(2 * time.Minute)
 | 
						|
	<-timeout.C
 | 
						|
	t.Log("2 minutes passed")
 | 
						|
 | 
						|
	time.Sleep(30 * time.Minute)
 | 
						|
}
 |