forked from hugozhu/godingtalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil_test.go
78 lines (66 loc) · 1.42 KB
/
util_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
package godingtalk
import "testing"
import "time"
type ExpiresData struct {
Data string
Expires int `json:"expires_in"`
Created int64 `json:"created"`
}
func (e *ExpiresData) CreatedAt() int64 {
return e.Created
}
func (e *ExpiresData) ExpiresIn() int {
return e.Expires
}
func TestFileCache(t *testing.T) {
cache := NewFileCache(".test_cache")
data := ExpiresData{
Data: "Hello World!",
Expires: 7200,
Created: time.Now().Unix(),
}
cache.Set(&data)
var data2 ExpiresData
cache.Get(&data2)
t.Logf("%+v %+v", data, data2)
if data2.Created != data.Created {
t.Errorf("FileCache error")
}
data = ExpiresData{
Data: "Hello World 2!",
Expires: 0,
Created: time.Now().Unix(),
}
cache.Set(&data)
err := cache.Get(&data2)
if err == nil {
t.Error("FileCache error: err should not be nil")
}
t.Logf("%+v %+v", data, data2)
}
func TestInMemoryCache(t *testing.T) {
cache := NewInMemoryCache()
data := ExpiresData{
Data: "Hello World!",
Expires: 7200,
Created: time.Now().Unix(),
}
cache.Set(&data)
var data2 ExpiresData
cache.Get(&data2)
t.Logf("%+v %+v", data, data2)
if data2.Created != data.Created {
t.Errorf("InMemoryCache error")
}
data = ExpiresData{
Data: "Hello World 2!",
Expires: 0,
Created: time.Now().Unix(),
}
cache.Set(&data)
err := cache.Get(&data2)
if err == nil {
t.Error("InMemoryCache error: err should not be nil")
}
t.Logf("%+v %+v", data, data2)
}