-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_backup_xdr_test.go
356 lines (350 loc) · 8.57 KB
/
config_backup_xdr_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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
// Copyright 2024 Aerospike, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package backup
import "testing"
func TestConfigBackupXDR_validate(t *testing.T) {
tests := []struct {
name string
config ConfigBackupXDR
wantErr bool
errMsg string
}{
{
name: "valid config",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
ParallelWrite: 1,
ReadTimeout: 1000,
WriteTimeout: 1000,
ResultQueueSize: 100,
AckQueueSize: 100,
MaxConnections: 10,
InfoPolingPeriod: 1000,
EncoderType: EncoderTypeASBX,
},
wantErr: false,
},
{
name: "invalid rewind",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "invalid",
MaxConnections: 1,
},
wantErr: true,
errMsg: "rewind must be a positive number or 'all', got: invalid",
},
{
name: "invalid parallel write - too low",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
ParallelWrite: 0,
MaxConnections: 1,
},
wantErr: true,
errMsg: "parallel write must be between 1 and 1024, got 0",
},
{
name: "empty dc",
config: ConfigBackupXDR{
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "dc name must not be empty",
},
{
name: "empty local address",
config: ConfigBackupXDR{
DC: "dc1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "local address must not be empty",
},
{
name: "invalid port - negative",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: -1,
Namespace: "test",
Rewind: "all",
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "local port must be between 0 and 65535, got -1",
},
{
name: "invalid port - too high",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 65536,
Namespace: "test",
Rewind: "all",
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "local port must be between 0 and 65535, got 65536",
},
{
name: "empty namespace",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Rewind: "all",
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "namespace must not be empty",
},
{
name: "negative read timeout",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
ReadTimeout: -1,
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "read timeout must not be negative, got -1",
},
{
name: "negative write timeout",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
WriteTimeout: -1,
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "write timeout must not be negative, got -1",
},
{
name: "negative result queue size",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
ResultQueueSize: -1,
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "result queue size must not be negative, got -1",
},
{
name: "negative ack queue size",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
AckQueueSize: -1,
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "ack queue size must not be negative, got -1",
},
{
name: "negative info polling period",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
InfoPolingPeriod: -1,
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "info poling period must not be less than 1, got -1",
},
{
name: "max connections less than 1",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
MaxConnections: 0,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "max connections must not be less than 1, got 0",
},
{
name: "parallel write too high",
config: ConfigBackupXDR{
DC: "dc1",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
ParallelWrite: 1025,
MaxConnections: 1,
},
wantErr: true,
errMsg: "parallel write must be between 1 and 1024, got 1025",
},
{
name: "dc name too long (32 chars)",
config: ConfigBackupXDR{
DC: "abcdefghijklmnopqrstuvwxyz123456",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "dc name must be less than 32 characters",
},
{
name: "dc name with invalid characters",
config: ConfigBackupXDR{
DC: "dc@name",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
MaxConnections: 1,
ParallelWrite: 1,
},
wantErr: true,
errMsg: "dc name must match ^[a-zA-Z0-9_\\-$]+$",
},
{
name: "dc name with valid special chars",
config: ConfigBackupXDR{
DC: "dc-name_$123",
LocalAddress: "127.0.0.1",
LocalPort: 3000,
Namespace: "test",
Rewind: "all",
MaxConnections: 1,
ParallelWrite: 1,
InfoPolingPeriod: 1,
EncoderType: EncoderTypeASBX,
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := tt.config.validate()
if (err != nil) != tt.wantErr {
t.Errorf("ConfigBackupXDR.validate() error = %v, wantErr %v", err, tt.wantErr)
return
}
if tt.wantErr && err.Error() != tt.errMsg {
t.Errorf("ConfigBackupXDR.validate() error message = %v, want %v", err.Error(), tt.errMsg)
}
})
}
}
func TestValidateRewind(t *testing.T) {
tests := []struct {
name string
value string
wantErr bool
errMsg string
}{
{
name: "valid all",
value: "all",
wantErr: false,
},
{
name: "valid number",
value: "100",
wantErr: false,
},
{
name: "invalid zero",
value: "0",
wantErr: true,
errMsg: "rewind must be a positive number or 'all', got: 0",
},
{
name: "invalid negative",
value: "-1",
wantErr: true,
errMsg: "rewind must be a positive number or 'all', got: -1",
},
{
name: "invalid string",
value: "invalid",
wantErr: true,
errMsg: "rewind must be a positive number or 'all', got: invalid",
},
{
name: "empty string",
value: "",
wantErr: true,
errMsg: "rewind must be a positive number or 'all', got: ",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := validateRewind(tt.value)
if (err != nil) != tt.wantErr {
t.Errorf("validateRewind() error = %v, wantErr %v", err, tt.wantErr)
return
}
if tt.wantErr && err.Error() != tt.errMsg {
t.Errorf("validateRewind() error message = %v, want %v", err.Error(), tt.errMsg)
}
})
}
}