-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconnection_string_test.go
More file actions
445 lines (435 loc) · 14.1 KB
/
Copy pathconnection_string_test.go
File metadata and controls
445 lines (435 loc) · 14.1 KB
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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
package minisql
import (
"encoding/hex"
"testing"
"time"
"github.com/RichardKnop/minisql/internal/minisql"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestParseConnectionString(t *testing.T) {
t.Parallel()
tests := []struct {
name string
connStr string
wantConfig *ConnectionConfig
wantErr bool
errContains string
}{
{
name: "simple path",
connStr: "./test.db",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "set log level",
connStr: "./test.db?log_level=debug",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "debug",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "set max cached pages",
connStr: "./test.db?max_cached_pages=500",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: 500,
Synchronous: SynchronousNormal,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "custom checkpoint threshold",
connStr: "./test.db?wal_checkpoint_threshold=500",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: 500,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "custom write buffer size",
connStr: "./test.db?wal_write_buffer_size=131072",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: 131072,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "zero write buffer size disables batching",
connStr: "./test.db?wal_write_buffer_size=0",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: 0,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "all parameters",
connStr: "./test.db?wal_checkpoint_threshold=200&log_level=info&max_cached_pages=4000&slow_query_threshold=75ms",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: 200,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "info",
MaxCachedPages: 4000,
SlowQueryThreshold: 75 * time.Millisecond,
Synchronous: SynchronousNormal,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "zero checkpoint threshold disables auto-checkpoint",
connStr: "./test.db?wal_checkpoint_threshold=0",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: 0,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "synchronous=full",
connStr: "./test.db?synchronous=full",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousFull,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "synchronous=normal explicit",
connStr: "./test.db?synchronous=normal",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "synchronous=off",
connStr: "./test.db?synchronous=off",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousOff,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "invalid wal_checkpoint_threshold - negative",
connStr: "./test.db?wal_checkpoint_threshold=-1",
wantErr: true,
errContains: "invalid wal_checkpoint_threshold",
},
{
name: "invalid wal_checkpoint_threshold - not a number",
connStr: "./test.db?wal_checkpoint_threshold=abc",
wantErr: true,
errContains: "invalid wal_checkpoint_threshold",
},
{
name: "invalid wal_write_buffer_size - negative",
connStr: "./test.db?wal_write_buffer_size=-1",
wantErr: true,
errContains: "invalid wal_write_buffer_size",
},
{
name: "invalid wal_write_buffer_size - not a number",
connStr: "./test.db?wal_write_buffer_size=abc",
wantErr: true,
errContains: "invalid wal_write_buffer_size",
},
{
name: "invalid max_cached_pages - negative",
connStr: "./test.db?max_cached_pages=-100",
wantErr: true,
errContains: "must be a non-negative integer",
},
{
name: "invalid max_cached_pages - not a number",
connStr: "./test.db?max_cached_pages=abc",
wantErr: true,
errContains: "must be a non-negative integer",
},
{
name: "invalid log level",
connStr: "./test.db?log_level=verbose",
wantErr: true,
errContains: "invalid log_level parameter",
},
{
name: "invalid slow query threshold",
connStr: "./test.db?slow_query_threshold=soon",
wantErr: true,
errContains: "invalid slow_query_threshold parameter",
},
{
name: "negative slow query threshold",
connStr: "./test.db?slow_query_threshold=-1ms",
wantErr: true,
errContains: "invalid slow_query_threshold parameter",
},
{
name: "invalid synchronous value",
connStr: "./test.db?synchronous=extra",
wantErr: true,
errContains: "invalid synchronous parameter",
},
{
name: "parallel_scan=on",
connStr: "./test.db?parallel_scan=on",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
ParallelScan: true,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "parallel_scan=off explicit",
connStr: "./test.db?parallel_scan=off",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
ParallelScan: false,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "invalid parallel_scan value",
connStr: "./test.db?parallel_scan=maybe",
wantErr: true,
errContains: "invalid parallel_scan parameter",
},
{
name: "encryption_key set",
connStr: "./test.db?encryption_key=" + hex.EncodeToString([]byte("my-secret-key-32bytes-long-paddd")),
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
EncryptionKey: []byte("my-secret-key-32bytes-long-paddd"),
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "invalid encryption_key (not hex)",
connStr: "./test.db?encryption_key=not-hex!!",
wantErr: true,
errContains: "invalid encryption_key parameter",
},
{
name: "sort_mem_limit=1048576",
connStr: "./test.db?sort_mem_limit=1048576",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
SortMemLimit: 1048576,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "sort_mem_limit=0 disables external sort",
connStr: "./test.db?sort_mem_limit=0",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
SortMemLimit: 0,
HNSWVecCacheSize: DefaultHNSWVecCacheSize,
},
wantErr: false,
},
{
name: "invalid sort_mem_limit - negative",
connStr: "./test.db?sort_mem_limit=-1",
wantErr: true,
errContains: "invalid sort_mem_limit parameter",
},
{
name: "invalid sort_mem_limit - not a number",
connStr: "./test.db?sort_mem_limit=big",
wantErr: true,
errContains: "invalid sort_mem_limit parameter",
},
{
name: "sort_mem_limit exceeds maximum",
connStr: "./test.db?sort_mem_limit=3221225472",
wantErr: true,
errContains: "exceeds maximum of 2 GiB",
},
{
name: "hnsw_vec_cache_size=512",
connStr: "./test.db?hnsw_vec_cache_size=512",
wantConfig: &ConnectionConfig{
FilePath: "./test.db",
WALCheckpointThreshold: DefaultWALCheckpointThreshold,
WALWriteBufferSize: DefaultWALWriteBufferSize,
LogLevel: "warn",
MaxCachedPages: minisql.PageCacheSize,
Synchronous: SynchronousNormal,
SortMemLimit: DefaultSortMemLimit,
HNSWVecCacheSize: 512,
},
wantErr: false,
},
{
name: "invalid hnsw_vec_cache_size - zero",
connStr: "./test.db?hnsw_vec_cache_size=0",
wantErr: true,
errContains: "invalid hnsw_vec_cache_size parameter",
},
{
name: "invalid hnsw_vec_cache_size - negative",
connStr: "./test.db?hnsw_vec_cache_size=-1",
wantErr: true,
errContains: "invalid hnsw_vec_cache_size parameter",
},
{
name: "invalid hnsw_vec_cache_size - not a number",
connStr: "./test.db?hnsw_vec_cache_size=big",
wantErr: true,
errContains: "invalid hnsw_vec_cache_size parameter",
},
{
name: "wal_write_buffer_size exceeds maximum",
connStr: "./test.db?wal_write_buffer_size=268435457",
wantErr: true,
errContains: "exceeds maximum of 256 MiB",
},
{
name: "encryption_key too short",
connStr: "./test.db?encryption_key=" + hex.EncodeToString([]byte("tooshort")),
wantErr: true,
errContains: "key too short",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
config, err := ParseConnectionString(tt.connStr)
if tt.wantErr {
require.Error(t, err)
if tt.errContains != "" {
assert.Contains(t, err.Error(), tt.errContains)
}
return
}
require.NoError(t, err)
assert.Equal(t, tt.wantConfig, config)
})
}
}
func TestGetZapLevel(t *testing.T) {
t.Parallel()
tests := []struct {
level string
wantName string
}{
{"debug", "debug"},
{"info", "info"},
{"warn", "warn"},
{"error", "error"},
{"unknown", "warn"}, // default falls back to warn
{"", "warn"}, // empty string → default warn
}
for _, tt := range tests {
t.Run(tt.level, func(t *testing.T) {
t.Parallel()
cfg := &ConnectionConfig{LogLevel: tt.level}
got := cfg.GetZapLevel()
assert.Equal(t, tt.wantName, got.String())
})
}
}