Hunter0x7c7
2022-08-11 a82f9cb69f63aaeba40c024960deda7d75b9fece
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package cache_test
 
import (
    "testing"
 
    . "github.com/v2fly/v2ray-core/v5/common/cache"
)
 
func TestLruReplaceValue(t *testing.T) {
    lru := NewLru(2)
    lru.Put(2, 6)
    lru.Put(1, 5)
    lru.Put(1, 2)
    v, _ := lru.Get(1)
    if v != 2 {
        t.Error("should get 2", v)
    }
    v, _ = lru.Get(2)
    if v != 6 {
        t.Error("should get 6", v)
    }
}
 
func TestLruRemoveOld(t *testing.T) {
    lru := NewLru(2)
    v, ok := lru.Get(2)
    if ok {
        t.Error("should get nil", v)
    }
    lru.Put(1, 1)
    lru.Put(2, 2)
    v, _ = lru.Get(1)
    if v != 1 {
        t.Error("should get 1", v)
    }
    lru.Put(3, 3)
    v, ok = lru.Get(2)
    if ok {
        t.Error("should get nil", v)
    }
    lru.Put(4, 4)
    v, ok = lru.Get(1)
    if ok {
        t.Error("should get nil", v)
    }
    v, _ = lru.Get(3)
    if v != 3 {
        t.Error("should get 3", v)
    }
    v, _ = lru.Get(4)
    if v != 4 {
        t.Error("should get 4", v)
    }
}
 
func TestGetKeyFromValue(t *testing.T) {
    lru := NewLru(2)
    lru.Put(3, 3)
    lru.Put(2, 2)
    lru.Put(1, 1)
    v, ok := lru.GetKeyFromValue(3)
    if ok {
        t.Error("should get nil", v)
    }
    v, _ = lru.GetKeyFromValue(2)
    if v != 2 {
        t.Error("should get 2", v)
    }
}