1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00

test(os/gcache): fix unit testing occasionally failed due to too short expration duration set (#3842)

This commit is contained in:
John Guo 2024-10-08 13:06:11 +08:00 committed by GitHub
parent 2301de6e8c
commit 7cbc9e8533
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -45,11 +45,11 @@ func (m *Model) Data(data ...interface{}) *Model {
model.data = s
model.extraArgs = data[1:]
} else {
m := make(map[string]interface{})
newData := make(map[string]interface{})
for i := 0; i < len(data); i += 2 {
m[gconv.String(data[i])] = data[i+1]
newData[gconv.String(data[i])] = data[i+1]
}
model.data = m
model.data = newData
}
} else if len(data) == 1 {
switch value := data[0].(type) {

View File

@ -179,12 +179,12 @@ func TestCache_LRU(t *testing.T) {
func TestCache_LRU_expire(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
cache := gcache.New(2)
t.Assert(cache.Set(ctx, 1, nil, time.Millisecond), nil)
t.Assert(cache.Set(ctx, 1, nil, 50*time.Millisecond), nil)
n, _ := cache.Size(ctx)
t.Assert(n, 1)
time.Sleep(time.Millisecond * 10)
time.Sleep(time.Millisecond * 100)
n, _ = cache.Size(ctx)
t.Assert(n, 0)