-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathutils_test.go
156 lines (121 loc) · 2.92 KB
/
utils_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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package onecache
import (
"reflect"
"testing"
"time"
)
func TestItem_IsExpired(t *testing.T) {
item := &Item{ExpiresAt: time.Now().Add(-2 * time.Minute), Data: []byte("Ping-Pong")}
if !item.IsExpired() {
t.Fatal("Item should be expired since it's expiration date is set 2 minutes backwards")
}
}
func TestBytesToItem(t *testing.T) {
serializer := NewCacheSerializer()
item := &Item{ExpiresAt: time.Now(), Data: []byte("Ping-Pong")}
b, err := serializer.Serialize(item)
if err != nil {
t.Error(err)
}
i := new(Item)
err = serializer.DeSerialize(b, i)
if err != nil {
t.Error(err)
}
if !item.ExpiresAt.Equal(i.ExpiresAt) {
t.Fatalf("Time should equal.. Expected %v \n Got %v", item.ExpiresAt, i.ExpiresAt)
}
if !reflect.DeepEqual(item.Data, i.Data) {
t.Fatalf("Data not equal.. Expected %v \n. Got %v", item.ExpiresAt, i.ExpiresAt)
}
}
func TestDecrease(t *testing.T) {
var tests = []struct {
give interface{}
expected interface{}
steps interface{}
}{
{52, 42, 10},
{int32(32), int32(26), 6},
{int64(30), int64(20), 10},
{uint(8), uint(8), 0},
{uint8(15), uint8(7), 8},
{uint16(10), uint16(2), 8},
{uint32(40), uint32(10), 30},
{uint64(100), uint64(90), 10},
{"42", "41", 1},
{"30", "20", 10},
}
for _, v := range tests {
val, err := Decrement(v.give, v.steps.(int))
if err != nil {
t.Fatalf("An error occurred... %v", err)
}
if !reflect.DeepEqual(v.expected, val) {
t.Fatalf(
"Differs.. Expected %v .\n Got %v instead",
v.expected, val)
}
}
}
func TestIncrease(t *testing.T) {
var tests = []struct {
expected interface{}
give interface{}
steps interface{}
}{
{52, 42, 10},
{int32(32), int32(26), 6},
{int64(30), int64(20), 10},
{uint(8), uint(8), 0},
{uint8(15), uint8(7), 8},
{uint16(10), uint16(2), 8},
{uint32(40), uint32(10), 30},
{uint64(100), uint64(90), 10},
{"42", "41", 1},
{"30", "20", 10},
}
for _, v := range tests {
val, err := Increment(v.give, v.steps.(int))
if err != nil {
t.Fatalf("An error occurred... %v", err)
}
if !reflect.DeepEqual(v.expected, val) {
t.Fatalf(
"Differs.. Expected %v .\n Got %v instead",
v.expected, val)
}
}
}
func TestIncrementForUnSupportedType(t *testing.T) {
var tests = []struct {
give interface{}
steps interface{}
}{
{true, 10},
{"10.0", 2},
}
for _, v := range tests {
_, err := Increment(v.give, v.steps.(int))
if err == nil {
t.Fatalf(
`There should be an error on encountering an unsupported data type
.. %v`, err)
}
}
}
func TestSerializer_SerializeBailsOutIfTypeIsAlreadyAByteArray(t *testing.T) {
serializer := NewCacheSerializer()
byt := make([]byte, 10)
newBytes, err := serializer.Serialize(byt)
if err != nil {
t.Fatalf(
`Expected serialization to be successful... %v`,
err)
}
if !reflect.DeepEqual(byt, newBytes) {
t.Fatalf(
`Values differ \n Expected %v \n Got %v`,
byt, newBytes)
}
}