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:
parent
2301de6e8c
commit
7cbc9e8533
@ -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) {
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user