3 Star 0 Fork 0

Gitee 极速下载/gcache

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/bluele/gcache
克隆/下载
lru_test.go 1.59 KB
一键复制 编辑 原始数据 按行查看 历史
Jun Kimura 提交于 2019-05-18 07:48 +08:00 . add test for expired items
package gcache
import (
"fmt"
"testing"
"time"
)
func TestLRUGet(t *testing.T) {
size := 1000
gc := buildTestCache(t, TYPE_LRU, size)
testSetCache(t, gc, size)
testGetCache(t, gc, size)
}
func TestLoadingLRUGet(t *testing.T) {
size := 1000
gc := buildTestLoadingCache(t, TYPE_LRU, size, loader)
testGetCache(t, gc, size)
}
func TestLRULength(t *testing.T) {
gc := buildTestLoadingCache(t, TYPE_LRU, 1000, loader)
gc.Get("test1")
gc.Get("test2")
length := gc.Len(true)
expectedLength := 2
if length != expectedLength {
t.Errorf("Expected length is %v, not %v", length, expectedLength)
}
}
func TestLRUEvictItem(t *testing.T) {
cacheSize := 10
numbers := 11
gc := buildTestLoadingCache(t, TYPE_LRU, 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 TestLRUGetIFPresent(t *testing.T) {
testGetIFPresent(t, TYPE_LRU)
}
func TestLRUHas(t *testing.T) {
gc := buildTestLoadingCacheWithExpiration(t, TYPE_LRU, 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

搜索帮助