3 Star 0 Fork 0

Gitee 极速下载/gcache

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/bluele/gcache
克隆/下载
arc_test.go 2.26 KB
一键复制 编辑 原始数据 按行查看 历史
Jun Kimura 提交于 2019-05-18 07:48 +08:00 . add test for expired items
package gcache
import (
"fmt"
"testing"
"time"
)
func TestARCGet(t *testing.T) {
size := 1000
gc := buildTestCache(t, TYPE_ARC, size)
testSetCache(t, gc, size)
testGetCache(t, gc, size)
}
func TestLoadingARCGet(t *testing.T) {
size := 1000
numbers := 1000
testGetCache(t, buildTestLoadingCache(t, TYPE_ARC, size, loader), numbers)
}
func TestARCLength(t *testing.T) {
gc := buildTestLoadingCacheWithExpiration(t, TYPE_ARC, 2, time.Millisecond)
gc.Get("test1")
gc.Get("test2")
gc.Get("test3")
length := gc.Len(true)
expectedLength := 2
if length != expectedLength {
t.Errorf("Expected length is %v, not %v", expectedLength, length)
}
time.Sleep(time.Millisecond)
gc.Get("test4")
length = gc.Len(true)
expectedLength = 1
if length != expectedLength {
t.Errorf("Expected length is %v, not %v", expectedLength, length)
}
}
func TestARCEvictItem(t *testing.T) {
cacheSize := 10
numbers := cacheSize + 1
gc := buildTestLoadingCache(t, TYPE_ARC, cacheSize, loader)
for i := 0; i < numbers; i++ {
_, err := gc.Get(fmt.Sprintf("Key-%d", i))
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
}
}
func TestARCPurgeCache(t *testing.T) {
cacheSize := 10
purgeCount := 0
gc := New(cacheSize).
ARC().
LoaderFunc(loader).
PurgeVisitorFunc(func(k, v interface{}) {
purgeCount++
}).
Build()
for i := 0; i < cacheSize; i++ {
_, err := gc.Get(fmt.Sprintf("Key-%d", i))
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
}
gc.Purge()
if purgeCount != cacheSize {
t.Errorf("failed to purge everything")
}
}
func TestARCGetIFPresent(t *testing.T) {
testGetIFPresent(t, TYPE_ARC)
}
func TestARCHas(t *testing.T) {
gc := buildTestLoadingCacheWithExpiration(t, TYPE_ARC, 2, 10*time.Millisecond)
for i := 0; i < 10; i++ {
t.Run(fmt.Sprint(i), func(t *testing.T) {
gc.Get("test1")
gc.Get("test2")
if gc.Has("test0") {
t.Fatal("should not have test0")
}
if !gc.Has("test1") {
t.Fatal("should have test1")
}
if !gc.Has("test2") {
t.Fatal("should have test2")
}
time.Sleep(20 * time.Millisecond)
if gc.Has("test0") {
t.Fatal("should not have test0")
}
if gc.Has("test1") {
t.Fatal("should not have test1")
}
if gc.Has("test2") {
t.Fatal("should not have test2")
}
})
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/gcache.git
git@gitee.com:mirrors/gcache.git
mirrors
gcache
gcache
master

搜索帮助