3 Star 0 Fork 0

Gitee 极速下载/gcache

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/bluele/gcache
克隆/下载
simple_test.go 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
Jun Kimura 提交于 2019-05-18 07:48 +08:00 . add test for expired items
package gcache
import (
"fmt"
"testing"
"time"
)
func TestSimpleGet(t *testing.T) {
size := 1000
gc := buildTestCache(t, TYPE_SIMPLE, size)
testSetCache(t, gc, size)
testGetCache(t, gc, size)
}
func TestLoadingSimpleGet(t *testing.T) {
size := 1000
numbers := 1000
testGetCache(t, buildTestLoadingCache(t, TYPE_SIMPLE, size, loader), numbers)
}
func TestSimpleLength(t *testing.T) {
gc := buildTestLoadingCache(t, TYPE_SIMPLE, 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 TestSimpleEvictItem(t *testing.T) {
cacheSize := 10
numbers := 11
gc := buildTestLoadingCache(t, TYPE_SIMPLE, 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 TestSimpleUnboundedNoEviction(t *testing.T) {
numbers := 1000
size_tracker := 0
gcu := buildTestLoadingCache(t, TYPE_SIMPLE, 0, loader)
for i := 0; i < numbers; i++ {
current_size := gcu.Len(true)
if current_size != size_tracker {
t.Errorf("Excepted cache size is %v not %v", current_size, size_tracker)
}
_, err := gcu.Get(fmt.Sprintf("Key-%d", i))
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
size_tracker++
}
}
func TestSimpleGetIFPresent(t *testing.T) {
testGetIFPresent(t, TYPE_SIMPLE)
}
func TestSimpleHas(t *testing.T) {
gc := buildTestLoadingCacheWithExpiration(t, TYPE_SIMPLE, 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

搜索帮助