-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice_test.go
292 lines (258 loc) · 7.15 KB
/
service_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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
package main
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"net/http/httptest"
"os"
"reflect"
"strings"
"sync"
"testing"
"time"
)
func BenchmarkSetHandler(b *testing.B) {
kvStore := KeyValueStore{
kvMap: make(map[Key]Value),
}
var payload SetRequest
var req *http.Request
// 1 byte value size
payload = SetRequest{
Key: "benchmark-key-1byte",
Value: Value(string(make([]byte, 1))), // 1 byte
}
body, _ := json.Marshal(payload)
req, _ = http.NewRequest("POST", "/set", bytes.NewBuffer(body))
b.Run("1 byte", func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
w := httptest.NewRecorder()
kvStore.SetHandler(w, req)
}
})
// 1KB value size
payload = SetRequest{
Key: "benchmark-key-1kb",
Value: Value(string(make([]byte, 1024))), // 1KB
}
body, _ = json.Marshal(payload)
req, _ = http.NewRequest("POST", "/set", bytes.NewBuffer(body))
b.Run("1KB", func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
w := httptest.NewRecorder()
kvStore.SetHandler(w, req)
}
})
// 100KB value size
payload = SetRequest{
Key: "benchmark-key-100kb",
Value: Value(string(make([]byte, 100*1024))), // 100KB
}
body, _ = json.Marshal(payload)
req, _ = http.NewRequest("POST", "/set", bytes.NewBuffer(body))
b.Run("100KB", func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
w := httptest.NewRecorder()
kvStore.SetHandler(w, req)
}
})
// 1MB value size
payload = SetRequest{
Key: "benchmark-key-1mb",
Value: Value(string(make([]byte, 1024*1024))), // 1MB
}
body, _ = json.Marshal(payload)
req, _ = http.NewRequest("POST", "/set", bytes.NewBuffer(body))
b.Run("1MB", func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
w := httptest.NewRecorder()
kvStore.SetHandler(w, req)
}
})
}
func BenchmarkGetHandler(b *testing.B) {
kvStore := KeyValueStore{
kvMap: map[Key]Value{
"benchmark-key": "benchmark-value",
},
}
var payload GetRequest
var req *http.Request
// 1 byte value size
kvStore.kvMap["benchmark-key"] = Value(string(make([]byte, 1)))
payload = GetRequest{
Key: "benchmark-key",
}
body, _ := json.Marshal(payload)
req, _ = http.NewRequest("POST", "/get", bytes.NewBuffer(body))
b.Run("1Byte", func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
w := httptest.NewRecorder()
kvStore.GetHandler(w, req)
}
})
// 1KB value size
kvStore.kvMap["benchmark-key"] = Value(string(make([]byte, 1024)))
payload = GetRequest{
Key: "benchmark-key",
}
body, _ = json.Marshal(payload)
req, _ = http.NewRequest("POST", "/get", bytes.NewBuffer(body))
b.Run("1KB", func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
w := httptest.NewRecorder()
kvStore.GetHandler(w, req)
}
})
// 100KB value size
kvStore.kvMap["benchmark-key"] = Value(string(make([]byte, 100*1024)))
payload = GetRequest{
Key: "benchmark-key",
}
body, _ = json.Marshal(payload)
req, _ = http.NewRequest("POST", "/get", bytes.NewBuffer(body))
b.Run("100KB", func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
w := httptest.NewRecorder()
kvStore.GetHandler(w, req)
}
})
// 1MB value size
kvStore.kvMap["benchmark-key"] = Value(string(make([]byte, 1024*1024)))
payload = GetRequest{
Key: "benchmark-key",
}
body, _ = json.Marshal(payload)
req, _ = http.NewRequest("POST", "/get", bytes.NewBuffer(body))
b.Run("1MB", func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
w := httptest.NewRecorder()
kvStore.GetHandler(w, req)
}
})
}
func TestUseEnvOrDefaultIfNotSet(t *testing.T) {
// Test case 1: environment variable is set
os.Setenv("ENV_VAR", "10s")
defer os.Unsetenv("ENV_VAR")
expected := 10 * time.Second
duration, _ := time.ParseDuration(os.Getenv("ENV_VAR"))
result := useEnvOrDefaultIfNotSet(duration, expected)
if result != expected {
t.Errorf("Test case 1 failed: useEnvOrDefaultIfNotSet() returned %v, expected %v", result, expected)
}
// Test case 2: environment variable is not set
os.Unsetenv("ENV_VAR")
expected = 20 * time.Second
result = useEnvOrDefaultIfNotSet(os.Getenv("ENV_VAR"), expected)
if result != expected {
t.Errorf("Test case 2 failed: useEnvOrDefaultIfNotSet() returned %v, expected %v", result, expected)
}
// Test case 3: environment variable is empty string
os.Setenv("ENV_VAR", "")
defer os.Unsetenv("ENV_VAR")
expected = 30 * time.Second
result = useEnvOrDefaultIfNotSet(os.Getenv("ENV_VAR"), expected)
if result != expected {
t.Errorf("Test case 3 failed: useEnvOrDefaultIfNotSet() returned %v, expected %v", result, expected)
}
// Test case 4: unexpected type passed as envValue
unexpected := []int{1, 2, 3}
expectedError := "unexpected type []int"
defer func() {
if r := recover(); r != nil {
errStr := fmt.Sprintf("%v", r)
if errStr != expectedError {
t.Errorf("Test case 4 failed: useEnvOrDefaultIfNotSet() panicked with message '%v', expected '%v'", errStr, expectedError)
}
} else {
t.Errorf("Test case 4 failed: useEnvOrDefaultIfNotSet() did not panic as expected")
}
}()
useEnvOrDefaultIfNotSet(unexpected, expected)
}
func TestKeyValueStore_SetHandler(t *testing.T) {
type fields struct {
Mutex sync.Mutex
kvMap map[Key]Value
}
type args struct {
w http.ResponseWriter
r *http.Request
}
tests := []struct {
name string
fields fields
args args
expectedMap map[Key]Value
expectedMsg string
expectError bool
}{
{
name: "valid request",
fields: fields{
Mutex: sync.Mutex{},
kvMap: map[Key]Value{},
},
args: args{
w: httptest.NewRecorder(),
r: httptest.NewRequest(http.MethodPost, "/set", bytes.NewBufferString(`{"key":"test", "value":"value"}`)),
},
expectedMap: map[Key]Value{"test": "value"},
expectedMsg: "202" + "\n",
expectError: false,
},
{
name: "invalid request body",
fields: fields{
Mutex: sync.Mutex{},
kvMap: map[Key]Value{},
},
args: args{
w: httptest.NewRecorder(),
r: httptest.NewRequest(http.MethodPost, "/set", bytes.NewBufferString(`"value":"value"}`)),
},
expectedMap: map[Key]Value{},
expectedMsg: "json: cannot unmarshal string into Go value of type main.SetRequest",
expectError: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
kv := &KeyValueStore{
Mutex: tt.fields.Mutex,
kvMap: tt.fields.kvMap,
}
kv.SetHandler(tt.args.w, tt.args.r)
if tt.expectError {
resp := tt.args.w.(*httptest.ResponseRecorder)
if resp.Code != http.StatusBadRequest {
t.Errorf("expected status %v but got %v", http.StatusBadRequest, resp.Code)
}
if !strings.Contains(resp.Body.String(), tt.expectedMsg) {
t.Errorf("expected message %v but got %v", tt.expectedMsg, resp.Body.String())
}
return
}
if !reflect.DeepEqual(kv.kvMap, tt.expectedMap) {
t.Errorf("expected map %v but got %v", tt.expectedMap, kv.kvMap)
}
resp := tt.args.w.(*httptest.ResponseRecorder)
if resp.Code != http.StatusOK {
t.Errorf("expected status %v but got %v", http.StatusOK, resp.Code)
}
if resp.Body.String() != tt.expectedMsg {
t.Errorf("expected message %v but got %v", tt.expectedMsg, resp.Body.String())
}
})
}
}