reinhardt-query 0.1.2

SQL query builder for Reinhardt framework
Documentation
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
//! Integration tests for the expression module.
//!
//! These tests verify that all components of the expression system
//! work together correctly.

use super::*;
use crate::types::BinOper;
use crate::value::Value;
use crate::{all, any};
use rstest::rstest;

// =============================================================================
// Integration tests: Expr + ExprTrait
// =============================================================================

#[rstest]
fn test_expr_trait_integration() {
	// Verify that Expr implements ExprTrait correctly
	let expr = Expr::col("age").gte(18);
	assert!(matches!(
		expr,
		SimpleExpr::Binary(_, BinOper::GreaterThanOrEqual, _)
	));
}

#[rstest]
fn test_simple_expr_trait_integration() {
	// Verify that SimpleExpr implements ExprTrait correctly
	let simple = SimpleExpr::Column(crate::types::ColumnRef::column("age"));
	let expr = simple.gte(18);
	assert!(matches!(
		expr,
		SimpleExpr::Binary(_, BinOper::GreaterThanOrEqual, _)
	));
}

// =============================================================================
// Integration tests: Expr + Condition
// =============================================================================

#[rstest]
fn test_condition_with_expr() {
	let cond = Cond::all()
		.add(Expr::col("active").eq(true))
		.add(Expr::col("verified").eq(true));

	assert_eq!(cond.condition_type, ConditionType::All);
	assert_eq!(cond.len(), 2);
}

#[rstest]
fn test_nested_condition_with_expr() {
	let cond = Cond::all().add(Expr::col("active").eq(true)).add(
		Cond::any()
			.add(Expr::col("role").eq("admin"))
			.add(Expr::col("role").eq("moderator")),
	);

	assert_eq!(cond.len(), 2);
	// Verify nested condition
	if let ConditionExpression::Condition(inner) = &cond.conditions[1] {
		assert_eq!(inner.condition_type, ConditionType::Any);
		assert_eq!(inner.len(), 2);
	} else {
		panic!("Expected nested Condition");
	}
}

#[rstest]
fn test_condition_with_negation() {
	let cond = Cond::all().add(Expr::col("deleted").eq(true)).not();

	assert!(cond.negate);
	assert_eq!(cond.len(), 1);
}

// =============================================================================
// Integration tests: Expr + SimpleExpr conversions
// =============================================================================

#[rstest]
fn test_expr_to_simple_expr() {
	let expr = Expr::col("name");
	let simple: SimpleExpr = expr.into();
	assert!(matches!(simple, SimpleExpr::Column(_)));
}

#[rstest]
fn test_simple_expr_to_expr() {
	let simple = SimpleExpr::Value(Value::Int(Some(42)));
	let expr: Expr = simple.into();
	assert!(matches!(expr.into_simple_expr(), SimpleExpr::Value(_)));
}

// =============================================================================
// Integration tests: Complex expressions
// =============================================================================

#[rstest]
fn test_complex_where_clause() {
	// Build: active = true AND (role = 'admin' OR role = 'moderator') AND age >= 18
	let cond = Cond::all()
		.add(Expr::col("active").eq(true))
		.add(
			Cond::any()
				.add(Expr::col("role").eq("admin"))
				.add(Expr::col("role").eq("moderator")),
		)
		.add(Expr::col("age").gte(18));

	assert_eq!(cond.len(), 3);
	assert_eq!(cond.condition_type, ConditionType::All);
}

#[rstest]
fn test_case_expression_in_condition() {
	let case_expr = Expr::case()
		.when(Expr::col("status").eq("active"), 1i32)
		.when(Expr::col("status").eq("pending"), 2i32)
		.else_result(0i32);

	// Can use case expression in condition
	let cond = Cond::all().add(case_expr.into_simple_expr().eq(1));
	assert_eq!(cond.len(), 1);
}

#[rstest]
fn test_arithmetic_expression_chain() {
	// Build: (price * quantity) + tax
	let expr = Expr::col("price")
		.mul(Expr::col("quantity"))
		.add(Expr::col("tax"));

	assert!(matches!(expr, SimpleExpr::Binary(_, BinOper::Add, _)));
}

#[rstest]
fn test_pattern_matching_helpers() {
	// Test starts_with - now uses CustomWithExpr with ESCAPE clause
	let expr1 = Expr::col("name").starts_with("John");
	if let SimpleExpr::CustomWithExpr(template, args) = &expr1 {
		assert_eq!(template, "? LIKE ? ESCAPE '\\'");
		if let SimpleExpr::Value(Value::String(Some(s))) = &args[1] {
			assert_eq!(**s, "John%");
		} else {
			panic!("Expected String value in LIKE pattern");
		}
	} else {
		panic!("Expected CustomWithExpr with 'John%' pattern");
	}

	// Test ends_with
	let expr2 = Expr::col("email").ends_with("@example.com");
	if let SimpleExpr::CustomWithExpr(template, args) = &expr2 {
		assert_eq!(template, "? LIKE ? ESCAPE '\\'");
		if let SimpleExpr::Value(Value::String(Some(s))) = &args[1] {
			assert_eq!(**s, "%@example.com");
		} else {
			panic!("Expected String value in LIKE pattern");
		}
	} else {
		panic!("Expected CustomWithExpr with '%@example.com' pattern");
	}

	// Test contains
	let expr3 = Expr::col("description").contains("important");
	if let SimpleExpr::CustomWithExpr(template, args) = &expr3 {
		assert_eq!(template, "? LIKE ? ESCAPE '\\'");
		if let SimpleExpr::Value(Value::String(Some(s))) = &args[1] {
			assert_eq!(**s, "%important%");
		} else {
			panic!("Expected String value in LIKE pattern");
		}
	} else {
		panic!("Expected CustomWithExpr with '%important%' pattern");
	}
}

// =============================================================================
// Integration tests: ConditionHolder
// =============================================================================

#[rstest]
fn test_condition_holder_build() {
	let mut holder = ConditionHolder::new();
	holder.add_and(Expr::col("active").eq(true));
	holder.add_and(Expr::col("verified").eq(true));

	let cond = holder.into_condition();
	assert!(cond.is_some());

	let cond = cond.unwrap();
	assert_eq!(cond.condition_type, ConditionType::All);
}

#[rstest]
fn test_condition_holder_or() {
	let mut holder = ConditionHolder::new();
	holder.add_and(Expr::col("active").eq(true));
	holder.add_or(Expr::col("superuser").eq(true));

	let cond = holder.into_condition();
	assert!(cond.is_some());
}

#[rstest]
fn test_condition_holder_set_condition() {
	let mut holder = ConditionHolder::new();
	holder.add_and(Expr::col("temp").eq(true)); // This will be replaced

	let new_cond = Cond::all()
		.add(Expr::col("active").eq(true))
		.add(Expr::col("verified").eq(true));

	holder.set_condition(new_cond);

	let cond = holder.into_condition();
	assert!(cond.is_some());
	let cond = cond.unwrap();
	assert_eq!(cond.len(), 2);
}

// =============================================================================
// Integration tests: Macros
// =============================================================================

#[rstest]
fn test_all_macro_integration() {
	let cond = all![
		Expr::col("active").eq(true),
		Expr::col("verified").eq(true),
		Expr::col("age").gte(18),
	];

	assert_eq!(cond.condition_type, ConditionType::All);
	assert_eq!(cond.len(), 3);
}

#[rstest]
fn test_any_macro_integration() {
	let cond = any![
		Expr::col("role").eq("admin"),
		Expr::col("role").eq("moderator"),
		Expr::col("role").eq("support"),
	];

	assert_eq!(cond.condition_type, ConditionType::Any);
	assert_eq!(cond.len(), 3);
}

#[rstest]
fn test_nested_macros() {
	let cond = all![
		Expr::col("active").eq(true),
		any![
			Expr::col("role").eq("admin"),
			Expr::col("role").eq("moderator"),
		],
	];

	assert_eq!(cond.len(), 2);
	if let ConditionExpression::Condition(inner) = &cond.conditions[1] {
		assert_eq!(inner.condition_type, ConditionType::Any);
	} else {
		panic!("Expected nested Condition");
	}
}

// =============================================================================
// Issue #2568: is_in/is_not_in with empty iterator
// =============================================================================

#[rstest]
fn test_is_in_empty_returns_false() {
	// Arrange
	let empty: Vec<i32> = vec![];

	// Act
	let expr = Expr::col("status").is_in(empty);

	// Assert
	assert!(
		matches!(expr, SimpleExpr::Constant(simple_expr::Keyword::False)),
		"Empty IN () should produce FALSE, got: {:?}",
		expr
	);
}

#[rstest]
fn test_is_not_in_empty_returns_true() {
	// Arrange
	let empty: Vec<i32> = vec![];

	// Act
	let expr = Expr::col("status").is_not_in(empty);

	// Assert
	assert!(
		matches!(expr, SimpleExpr::Constant(simple_expr::Keyword::True)),
		"Empty NOT IN () should produce TRUE, got: {:?}",
		expr
	);
}

#[rstest]
fn test_is_in_nonempty_works_normally() {
	// Arrange / Act
	let expr = Expr::col("status").is_in(["active", "pending"]);

	// Assert
	assert!(matches!(expr, SimpleExpr::Binary(_, BinOper::In, _)));
}

#[rstest]
fn test_is_not_in_nonempty_works_normally() {
	// Arrange / Act
	let expr = Expr::col("status").is_not_in(["deleted"]);

	// Assert
	assert!(matches!(expr, SimpleExpr::Binary(_, BinOper::NotIn, _)));
}

// =============================================================================
// Issue #2565: LIKE helpers escape SQL wildcards
// =============================================================================

#[rstest]
fn test_starts_with_escapes_wildcards() {
	// Arrange / Act
	let expr = Expr::col("name").starts_with("100%_done");

	// Assert - now uses CustomWithExpr with ESCAPE clause
	if let SimpleExpr::CustomWithExpr(template, args) = &expr {
		assert_eq!(template, "? LIKE ? ESCAPE '\\'");
		assert_eq!(args.len(), 2);
		if let SimpleExpr::Value(Value::String(Some(s))) = &args[1] {
			assert_eq!(**s, "100\\%\\_done%");
		} else {
			panic!("Expected String value in LIKE pattern");
		}
	} else {
		panic!("Expected CustomWithExpr expression, got: {:?}", expr);
	}
}

#[rstest]
fn test_ends_with_escapes_wildcards() {
	// Arrange / Act
	let expr = Expr::col("name").ends_with("test%");

	// Assert - now uses CustomWithExpr with ESCAPE clause
	if let SimpleExpr::CustomWithExpr(template, args) = &expr {
		assert_eq!(template, "? LIKE ? ESCAPE '\\'");
		assert_eq!(args.len(), 2);
		if let SimpleExpr::Value(Value::String(Some(s))) = &args[1] {
			assert_eq!(**s, "%test\\%");
		} else {
			panic!("Expected String value in LIKE pattern");
		}
	} else {
		panic!("Expected CustomWithExpr expression, got: {:?}", expr);
	}
}

#[rstest]
fn test_contains_escapes_wildcards() {
	// Arrange / Act
	let expr = Expr::col("name").contains("50%_off");

	// Assert - now uses CustomWithExpr with ESCAPE clause
	if let SimpleExpr::CustomWithExpr(template, args) = &expr {
		assert_eq!(template, "? LIKE ? ESCAPE '\\'");
		assert_eq!(args.len(), 2);
		if let SimpleExpr::Value(Value::String(Some(s))) = &args[1] {
			assert_eq!(**s, "%50\\%\\_off%");
		} else {
			panic!("Expected String value in LIKE pattern");
		}
	} else {
		panic!("Expected CustomWithExpr expression, got: {:?}", expr);
	}
}

#[rstest]
fn test_contains_escapes_backslash() {
	// Arrange / Act
	let expr = Expr::col("path").contains("C:\\Users");

	// Assert - now uses CustomWithExpr with ESCAPE clause
	if let SimpleExpr::CustomWithExpr(template, args) = &expr {
		assert_eq!(template, "? LIKE ? ESCAPE '\\'");
		assert_eq!(args.len(), 2);
		if let SimpleExpr::Value(Value::String(Some(s))) = &args[1] {
			assert_eq!(**s, "%C:\\\\Users%");
		} else {
			panic!("Expected String value in LIKE pattern");
		}
	} else {
		panic!("Expected CustomWithExpr expression, got: {:?}", expr);
	}
}

// =============================================================================
// Issue #2570: Expr::expr_as uses ExprAlias (not AsEnum)
// =============================================================================

#[rstest]
fn test_expr_as_produces_alias() {
	// Arrange / Act
	let expr = Expr::col("name").expr_as("alias_name");

	// Assert
	assert!(
		matches!(expr, SimpleExpr::ExprAlias(_, _)),
		"expr_as should produce ExprAlias, got: {:?}",
		expr
	);
}

#[rstest]
fn test_expr_as_not_as_enum() {
	// Arrange / Act
	let expr = Expr::col("name").expr_as("alias_name");

	// Assert - ensure it is NOT AsEnum (which was the bug)
	assert!(
		!matches!(expr, SimpleExpr::AsEnum(_, _)),
		"expr_as should NOT produce AsEnum (type cast)"
	);
}