-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcache_test.go
94 lines (81 loc) · 1.99 KB
/
cache_test.go
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package gouse
import (
"testing"
"time"
)
/* Testing Local Cache */
func TestGetLocal(t *testing.T) {
c := NewLocalCache()
c.SetLocalCache("test", "test")
if result, err := c.GetLocalCache("test"); result != "test" {
t.Error("GetLocal error", err)
}
}
func TestSetLocal(t *testing.T) {
c := NewLocalCache()
c.SetLocalCache("test", "test")
if result, err := c.GetLocalCache("test"); result != "test" {
t.Error("SetLocal error", err)
}
}
func TestDelLocal(t *testing.T) {
c := NewLocalCache()
c.SetLocalCache("test", "test")
c.DelLocalCache("test")
if result, err := c.GetLocalCache("test"); result != "" {
t.Error("DelLocal error", err)
}
}
func TestFlushLocal(t *testing.T) {
c := NewLocalCache()
c.SetLocalCache("test", "test")
c.FlushLocalCache()
if result, err := c.GetLocalCache("test"); result != "" {
t.Error("FlushLocal error", err)
}
}
func TestAllLocalCache(t *testing.T) {
c := NewLocalCache()
c.SetLocalCache("test", "test")
if c.AllLocalCache()["test"] != "test" {
t.Error("AllLocal error")
}
}
/* Testing Tmp Cache */
func TestGetTmpCache(t *testing.T) {
tmp := NewTmpCache(1 * time.Hour)
tmp.SetTmpCache("test", "test", 0)
if tmp.GetTmpCache("test") != "test" {
t.Error("TestGetTmp failed")
}
}
func TestSetTmpCache(t *testing.T) {
tmp := NewTmpCache(1 * time.Hour)
tmp.SetTmpCache("test", "test", 0)
if tmp.GetTmpCache("test") != "test" {
t.Error("TestSetTmp failed")
}
}
func TestDelTmpCache(t *testing.T) {
tmp := NewTmpCache(1 * time.Hour)
tmp.SetTmpCache("test", "test", 0)
tmp.DelTmpCache("test")
if tmp.GetTmpCache("test") != nil {
t.Error("TestDelTmp failed")
}
}
func TestFlushTmp(t *testing.T) {
tmp := NewTmpCache(1 * time.Hour)
tmp.SetTmpCache("test", "test", 0)
tmp.FlushTmpCache()
if tmp.GetTmpCache("test") != nil {
t.Error("TestFlushTmp failed")
}
}
func TestAllTmpCache(t *testing.T) {
tmp := NewTmpCache(1 * time.Hour)
tmp.SetTmpCache("test", "test", 0)
if tmp.AllTmpCache()["test"] != "test" {
t.Error("TestAllTmp failed")
}
}