-
Notifications
You must be signed in to change notification settings - Fork 1
/
linear_test.go
208 lines (159 loc) · 3.37 KB
/
linear_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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
package linear
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestPush(t *testing.T) {
assert := assert.New(t)
tests := []struct {
key string
value string
expected error
}{
{"1", "a", nil},
{"2", "b", nil},
{"3", "", nil},
{"4", "c", nil},
{"5", "d", nil},
}
linearClient := New(1024, false)
for _, test := range tests {
assert.Equal(linearClient.Push(test.key, test.value), test.expected)
}
assert.Equal(linearClient.GetNumberOfKeys(), 5)
}
func TestPop(t *testing.T) {
assert := assert.New(t)
// Setting up
datas := []struct {
key string
value string
}{
{"1", "a"},
{"2", "b"},
{"3", "c"},
}
linearClient := New(1024, false)
for _, data := range datas {
linearClient.Push(data.key, data.value)
}
// Testing
value, err := linearClient.Pop()
if err != nil {
t.Errorf("Pop failed, expected %v, got %v", "c", err.Error())
}
assert.Equal(value, "c")
assert.Equal(linearClient.GetNumberOfKeys(), 2)
}
func TestTake(t *testing.T) {
assert := assert.New(t)
// Setting up
datas := []struct {
key string
value string
}{
{"1", "a"},
{"2", "b"},
{"3", "c"},
}
linearClient := New(1024, false)
for _, data := range datas {
linearClient.Push(data.key, data.value)
}
// Testing
value, err := linearClient.Take()
if err != nil {
t.Errorf("Take failed, expected %v, got %v", "a", err)
}
assert.Equal(value, "a")
assert.Equal(linearClient.GetNumberOfKeys(), 2)
}
func TestGet(t *testing.T) {
assert := assert.New(t)
// Setting up
datas := []struct {
key string
value string
}{
{"1", "a"},
{"2", "b"},
{"3", "c"},
}
linearClient := New(1024, false)
for _, data := range datas {
linearClient.Push(data.key, data.value)
}
// Testing
value, err := linearClient.Get("2")
if err != nil {
t.Errorf("Get failed, expected %v, got %v", "b", err)
}
assert.Equal(value, "b")
assert.Equal(linearClient.GetNumberOfKeys(), 2)
}
func TestRead(t *testing.T) {
assert := assert.New(t)
// Setting up
datas := []struct {
key string
value string
}{
{"1", "a"},
{"2", "b"},
{"3", "c"},
}
linearClient := New(1024, false)
for _, data := range datas {
linearClient.Push(data.key, data.value)
}
// Testing
value, err := linearClient.Read("1")
if err != nil {
t.Errorf("Read failed, expected %v, got %v", "a", err)
}
assert.Equal(value, "a")
assert.Equal(linearClient.GetNumberOfKeys(), 3)
}
func TestUpdate(t *testing.T) {
assert := assert.New(t)
// Setting up
datas := []struct {
key string
value string
}{
{"1", "a"},
{"2", "b"},
{"2", "c"},
}
linearClient := New(1024, false)
for _, data := range datas {
linearClient.Push(data.key, data.value)
}
// Testing
err := linearClient.Update("2", "b2")
if err != nil {
t.Errorf("Update failed, expected %v, got %v", "b2", err)
}
value, err := linearClient.Read("2")
if err != nil {
t.Errorf("Update failed, expected %v, got %v", "b2", err)
}
assert.Equal(value, "b2")
assert.Equal(linearClient.GetNumberOfKeys(), 3)
}
func BenchmarkPush(b *testing.B) {
linearClient := New(1000000, true)
// Run the Push method b.N times
for n := 0; n < b.N; n++ {
linearClient.Push("1", "a")
}
}
func BenchmarkRead(b *testing.B) {
// Setting up
linearClient := New(1, false)
linearClient.Push("1", "a")
// Run the Read method b.N times
for n := 0; n < b.N; n++ {
linearClient.Read("1")
}
}