-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathparameterized_test.go
More file actions
604 lines (544 loc) · 16.9 KB
/
parameterized_test.go
File metadata and controls
604 lines (544 loc) · 16.9 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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
package cel2sql_test
import (
"strings"
"testing"
"github.com/google/cel-go/cel"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/spandigital/cel2sql/v3"
"github.com/spandigital/cel2sql/v3/pg"
)
func TestConvertParameterized(t *testing.T) {
// Set up CEL environment with various types
env, err := cel.NewEnv(
cel.Variable("name", cel.StringType),
cel.Variable("age", cel.IntType),
cel.Variable("salary", cel.DoubleType),
cel.Variable("active", cel.BoolType),
cel.Variable("data", cel.BytesType),
cel.Variable("tags", cel.ListType(cel.StringType)),
cel.Variable("scores", cel.ListType(cel.IntType)),
)
require.NoError(t, err)
tests := []struct {
name string
celExpr string
wantSQL string
wantParamCount int
wantParams []any
}{
// String parameters
{
name: "simple string equality",
celExpr: `name == "John"`,
wantSQL: "name = $1",
wantParamCount: 1,
wantParams: []any{"John"},
},
{
name: "multiple string parameters",
celExpr: `name == "John" && name != "Jane"`,
wantSQL: "name = $1 AND name != $2",
wantParamCount: 2,
wantParams: []any{"John", "Jane"},
},
{
name: "string with escaped quotes",
celExpr: `name == "O'Brien"`,
wantSQL: "name = $1",
wantParamCount: 1,
wantParams: []any{"O'Brien"},
},
// Integer parameters
{
name: "simple integer equality",
celExpr: `age == 18`,
wantSQL: "age = $1",
wantParamCount: 1,
wantParams: []any{int64(18)},
},
{
name: "integer comparison",
celExpr: `age > 21 && age < 65`,
wantSQL: "age > $1 AND age < $2",
wantParamCount: 2,
wantParams: []any{int64(21), int64(65)},
},
{
name: "negative integer",
celExpr: `age == -5`,
wantSQL: "age = $1",
wantParamCount: 1,
wantParams: []any{int64(-5)},
},
// Double parameters
{
name: "simple double equality",
celExpr: `salary == 50000.50`,
wantSQL: "salary = $1",
wantParamCount: 1,
wantParams: []any{50000.50},
},
{
name: "double comparison",
celExpr: `salary >= 30000.0 && salary <= 100000.0`,
wantSQL: "salary >= $1 AND salary <= $2",
wantParamCount: 2,
wantParams: []any{30000.0, 100000.0},
},
// Boolean and NULL constants (kept inline)
{
name: "boolean TRUE constant",
celExpr: `active == true`,
wantSQL: "active IS TRUE",
wantParamCount: 0,
wantParams: nil,
},
{
name: "boolean FALSE constant",
celExpr: `active == false`,
wantSQL: "active IS FALSE",
wantParamCount: 0,
wantParams: nil,
},
{
name: "mixed bool constants and params",
celExpr: `active == true && age == 18`,
wantSQL: "active IS TRUE AND age = $1",
wantParamCount: 1,
wantParams: []any{int64(18)},
},
// Bytes parameters
{
name: "bytes equality",
celExpr: `data == b"hello"`,
wantSQL: "data = $1",
wantParamCount: 1,
wantParams: []any{[]byte("hello")},
},
// Complex expressions with multiple parameters
{
name: "complex AND expression",
celExpr: `name == "John" && age >= 18 && salary > 50000.0`,
wantSQL: "name = $1 AND age >= $2 AND salary > $3",
wantParamCount: 3,
wantParams: []any{"John", int64(18), 50000.0},
},
{
name: "complex OR expression",
celExpr: `name == "John" || name == "Jane" || age == 25`,
wantSQL: "name = $1 OR name = $2 OR age = $3",
wantParamCount: 3,
wantParams: []any{"John", "Jane", int64(25)},
},
{
name: "nested parentheses with params",
celExpr: `(name == "John" && age == 18) || (name == "Jane" && age == 21)`,
wantSQL: "name = $1 AND age = $2 OR name = $3 AND age = $4",
wantParamCount: 4,
wantParams: []any{"John", int64(18), "Jane", int64(21)},
},
// Parameter ordering test
{
name: "parameter ordering matches placeholders",
celExpr: `name == "First" && age == 1 && salary == 100.0 && name != "Second"`,
wantSQL: "name = $1 AND age = $2 AND salary = $3 AND name != $4",
wantParamCount: 4,
wantParams: []any{"First", int64(1), 100.0, "Second"},
},
// Empty parameter list
{
name: "no parameters - only boolean constants",
celExpr: `active == true && active != false`,
wantSQL: "active IS TRUE AND active IS NOT FALSE",
wantParamCount: 0,
wantParams: nil,
},
// String operations with parameters
// Note: LIKE patterns are currently optimized inline for constant strings
{
name: "startsWith with parameter",
celExpr: `name.startsWith("Jo")`,
wantSQL: "name LIKE 'Jo%' ESCAPE E'\\\\'",
wantParamCount: 0,
wantParams: nil,
},
{
name: "endsWith with parameter",
celExpr: `name.endsWith("hn")`,
wantSQL: "name LIKE '%hn' ESCAPE E'\\\\'",
wantParamCount: 0,
wantParams: nil,
},
{
name: "contains with parameter",
celExpr: `name.contains("oh")`,
wantSQL: "POSITION($1 IN name) > 0",
wantParamCount: 1,
wantParams: []any{"oh"},
},
// IN operator with parameters
{
name: "IN with array literal",
celExpr: `age in [18, 21, 25]`,
wantSQL: "age = ANY(ARRAY[$1, $2, $3])",
wantParamCount: 3,
wantParams: []any{int64(18), int64(21), int64(25)},
},
{
name: "string IN with array literal",
celExpr: `name in ["John", "Jane", "Bob"]`,
wantSQL: "name = ANY(ARRAY[$1, $2, $3])",
wantParamCount: 3,
wantParams: []any{"John", "Jane", "Bob"},
},
// Ternary operator with parameters
{
name: "ternary with parameters",
celExpr: `age > 18 ? "adult" : "minor"`,
wantSQL: "CASE WHEN age > $1 THEN $2 ELSE $3 END",
wantParamCount: 3,
wantParams: []any{int64(18), "adult", "minor"},
},
// Type casting with parameters
{
name: "cast int to string",
celExpr: `string(age) == "18"`,
wantSQL: "CAST(age AS TEXT) = $1",
wantParamCount: 1,
wantParams: []any{"18"},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Compile CEL expression
ast, issues := env.Compile(tt.celExpr)
require.Nil(t, issues, "CEL compilation should succeed")
// Convert to parameterized SQL
result, err := cel2sql.ConvertParameterized(ast)
require.NoError(t, err, "ConvertParameterized should succeed")
// Assert SQL matches expected
assert.Equal(t, tt.wantSQL, result.SQL, "SQL should match expected")
// Assert parameter count
assert.Len(t, result.Parameters, tt.wantParamCount, "Parameter count should match")
// Assert parameters match expected (if specified)
if tt.wantParams != nil {
require.Equal(t, tt.wantParams, result.Parameters, "Parameters should match expected values")
}
})
}
}
func TestConvertParameterized_JSONFields(t *testing.T) {
// Set up schema with JSON fields
testSchema := pg.NewSchema([]pg.FieldSchema{
{Name: "id", Type: "integer"},
{Name: "name", Type: "text"},
{Name: "metadata", Type: "jsonb", IsJSON: true, IsJSONB: true},
})
provider := pg.NewTypeProvider(map[string]pg.Schema{
"users": testSchema,
})
env, err := cel.NewEnv(
cel.CustomTypeProvider(provider),
cel.Variable("usr", cel.ObjectType("users")),
)
require.NoError(t, err)
tests := []struct {
name string
celExpr string
wantSQL string
wantParamCount int
wantParams []any
}{
{
name: "JSON field comparison with parameter",
celExpr: `usr.metadata.username == "john_doe"`,
wantSQL: "usr.metadata->>'username' = $1",
wantParamCount: 1,
wantParams: []any{"john_doe"},
},
{
name: "nested JSON field comparison",
celExpr: `usr.metadata.settings.theme == "dark"`,
wantSQL: "usr.metadata->'settings'->>'theme' = $1",
wantParamCount: 1,
wantParams: []any{"dark"},
},
{
name: "JSON and regular field with parameters",
celExpr: `usr.name == "John" && usr.metadata.age == "25"`,
wantSQL: "usr.name = $1 AND usr.metadata->>'age' = $2",
wantParamCount: 2,
wantParams: []any{"John", "25"},
},
}
schemas := map[string]pg.Schema{
"usr": testSchema,
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Compile CEL expression
ast, issues := env.Compile(tt.celExpr)
require.Nil(t, issues, "CEL compilation should succeed")
// Convert to parameterized SQL
result, err := cel2sql.ConvertParameterized(ast, cel2sql.WithSchemas(schemas))
require.NoError(t, err, "ConvertParameterized should succeed")
// Assert SQL matches expected
assert.Equal(t, tt.wantSQL, result.SQL, "SQL should match expected")
// Assert parameter count
assert.Len(t, result.Parameters, tt.wantParamCount, "Parameter count should match")
// Assert parameters match expected
if tt.wantParams != nil {
require.Equal(t, tt.wantParams, result.Parameters, "Parameters should match expected values")
}
})
}
}
func TestConvertParameterized_Comprehensions(t *testing.T) {
// Use simple CEL environment without custom type provider to avoid JSON detection
env, err := cel.NewEnv(
cel.Variable("scores", cel.ListType(cel.IntType)),
cel.Variable("tags", cel.ListType(cel.StringType)),
)
require.NoError(t, err)
tests := []struct {
name string
celExpr string
wantSQL string
wantParamCount int
wantParams []any
}{
{
name: "all() with parameterized predicate",
celExpr: `scores.all(x, x > 50)`,
wantSQL: "NOT EXISTS (SELECT 1 FROM UNNEST(scores) AS x WHERE NOT (x > $1))",
wantParamCount: 1,
wantParams: []any{int64(50)},
},
{
name: "exists() with parameterized predicate",
celExpr: `scores.exists(x, x == 100)`,
wantSQL: "EXISTS (SELECT 1 FROM UNNEST(scores) AS x WHERE x = $1)",
wantParamCount: 1,
wantParams: []any{int64(100)},
},
{
name: "exists_one() with parameterized predicate",
celExpr: `scores.exists_one(x, x == 42)`,
wantSQL: "(SELECT COUNT(*) FROM UNNEST(scores) AS x WHERE x = $1) = 1",
wantParamCount: 1,
wantParams: []any{int64(42)},
},
{
name: "map() with parameterized transform",
celExpr: `scores.map(x, x + 10).exists(y, y == 110)`,
wantSQL: "EXISTS (SELECT 1 FROM UNNEST(ARRAY(SELECT x + $1 FROM UNNEST(scores) AS x)) AS y WHERE y = $2)",
wantParamCount: 2,
wantParams: []any{int64(10), int64(110)},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Compile CEL expression
ast, issues := env.Compile(tt.celExpr)
require.Nil(t, issues, "CEL compilation should succeed")
// Convert to parameterized SQL
result, err := cel2sql.ConvertParameterized(ast)
require.NoError(t, err, "ConvertParameterized should succeed")
// Assert SQL matches expected
assert.Equal(t, tt.wantSQL, result.SQL, "SQL should match expected")
// Assert parameter count
assert.Len(t, result.Parameters, tt.wantParamCount, "Parameter count should match")
// Assert parameters match expected
if tt.wantParams != nil {
require.Equal(t, tt.wantParams, result.Parameters, "Parameters should match expected values")
}
})
}
}
func TestConvertParameterized_RegexPatterns(t *testing.T) {
env, err := cel.NewEnv(
cel.Variable("email", cel.StringType),
cel.Variable("phone", cel.StringType),
)
require.NoError(t, err)
tests := []struct {
name string
celExpr string
wantParamCount int
containsRegex bool
}{
{
name: "matches with simple pattern",
celExpr: `email.matches(r"[a-z]+@[a-z]+\.[a-z]+")`,
wantParamCount: 0, // Regex patterns are inline, not parameterized
containsRegex: true,
},
{
name: "matches with case-insensitive pattern",
celExpr: `phone.matches(r"(?i)^\d{3}-\d{3}-\d{4}$")`,
wantParamCount: 0,
containsRegex: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Compile CEL expression
ast, issues := env.Compile(tt.celExpr)
require.Nil(t, issues, "CEL compilation should succeed")
// Convert to parameterized SQL
result, err := cel2sql.ConvertParameterized(ast)
require.NoError(t, err, "ConvertParameterized should succeed")
// Assert parameter count
assert.Len(t, result.Parameters, tt.wantParamCount, "Parameter count should match")
// Assert SQL contains regex operator (~ or ~* for case-insensitive)
if tt.containsRegex {
hasRegexOperator := strings.Contains(result.SQL, " ~ ") || strings.Contains(result.SQL, " ~* ")
assert.True(t, hasRegexOperator, "SQL should contain regex operator (~ or ~*)")
}
})
}
}
func TestConvertParameterized_EmptyParameters(t *testing.T) {
env, err := cel.NewEnv(
cel.Variable("x", cel.IntType),
cel.Variable("y", cel.IntType),
)
require.NoError(t, err)
tests := []struct {
name string
celExpr string
wantSQL string
}{
{
name: "field comparison only",
celExpr: `x == y`,
wantSQL: "x = y",
},
{
name: "field arithmetic",
celExpr: `x + y > x * y`,
wantSQL: "x + y > x * y",
},
{
name: "field with boolean constants",
celExpr: `x > y && true`,
wantSQL: "x > y AND TRUE",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Compile CEL expression
ast, issues := env.Compile(tt.celExpr)
require.Nil(t, issues, "CEL compilation should succeed")
// Convert to parameterized SQL
result, err := cel2sql.ConvertParameterized(ast)
require.NoError(t, err, "ConvertParameterized should succeed")
// Assert SQL matches expected
assert.Equal(t, tt.wantSQL, result.SQL, "SQL should match expected")
// Assert no parameters
assert.Empty(t, result.Parameters, "Should have no parameters")
})
}
}
func TestConvertParameterized_NegativeCases(t *testing.T) {
env, err := cel.NewEnv(
cel.Variable("name", cel.StringType),
cel.Variable("age", cel.IntType),
)
require.NoError(t, err)
tests := []struct {
name string
celExpr string
expectError bool
}{
{
name: "valid expression",
celExpr: `name == "John" && age > 18`,
expectError: false,
},
{
name: "string with null byte",
celExpr: "name == \"test\x00\"",
expectError: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Compile CEL expression
ast, issues := env.Compile(tt.celExpr)
if issues != nil && issues.Err() != nil {
if tt.expectError {
return
}
t.Fatalf("CEL compilation failed: %v", issues.Err())
}
// Convert to parameterized SQL
result, err := cel2sql.ConvertParameterized(ast)
if tt.expectError {
assert.Error(t, err, "Should return error")
} else {
assert.NoError(t, err, "Should not return error")
assert.NotNil(t, result, "Result should not be nil")
}
})
}
}
// TestConvertParameterized_ParameterTypeConsistency verifies that parameters
// maintain their proper Go types for database/sql compatibility
func TestConvertParameterized_ParameterTypeConsistency(t *testing.T) {
env, err := cel.NewEnv(
cel.Variable("name", cel.StringType),
cel.Variable("age", cel.IntType),
cel.Variable("salary", cel.DoubleType),
cel.Variable("data", cel.BytesType),
)
require.NoError(t, err)
tests := []struct {
name string
celExpr string
expectedType string
paramIndex int
}{
{
name: "string parameter type",
celExpr: `name == "John"`,
expectedType: "string",
paramIndex: 0,
},
{
name: "int64 parameter type",
celExpr: `age == 25`,
expectedType: "int64",
paramIndex: 0,
},
{
name: "float64 parameter type",
celExpr: `salary == 50000.50`,
expectedType: "float64",
paramIndex: 0,
},
{
name: "bytes parameter type",
celExpr: `data == b"hello"`,
expectedType: "[]uint8",
paramIndex: 0,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Compile CEL expression
ast, issues := env.Compile(tt.celExpr)
require.Nil(t, issues, "CEL compilation should succeed")
// Convert to parameterized SQL
result, err := cel2sql.ConvertParameterized(ast)
require.NoError(t, err, "ConvertParameterized should succeed")
require.Greater(t, len(result.Parameters), tt.paramIndex, "Should have expected parameter")
// Check parameter type
param := result.Parameters[tt.paramIndex]
actualType := assert.ObjectsAreEqualValues(param, result.Parameters[tt.paramIndex])
t.Logf("Parameter type: %T (value: %v)", param, param)
assert.NotNil(t, actualType, "Parameter should have correct type")
})
}
}