lemma-engine 0.8.19

A language that means business.
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
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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
use lemma::DateTimeValue;
use lemma::{Engine, ExecutionPlan, ValueKind};
use rust_decimal::Decimal;
use std::collections::HashMap;
use std::str::FromStr;

fn decimal_lit(d: &str) -> Decimal {
    Decimal::from_str(d).unwrap()
}

fn run_override_veto_message(
    engine: &Engine,
    spec: &str,
    data: HashMap<String, String>,
    rule_name: &str,
) -> String {
    let now = DateTimeValue::now();
    let resp = engine
        .run(None, spec, Some(&now), data, true, None)
        .unwrap_or_else(|err| panic!("run must complete with veto, not Error: {err}"));
    let rr = resp
        .results
        .get(rule_name)
        .unwrap_or_else(|| panic!("rule '{rule_name}' not found"));
    assert!(
        rr.vetoed,
        "rule '{rule_name}' must veto on invalid override, got {:?}",
        rr.display
    );
    rr.veto_reason.clone().expect("veto reason")
}

#[test]
fn quantity_comparison_converts_units_before_comparing() {
    // unit usd 0.84: 1 USD = 0.84 EUR (canonical).
    // 100 USD = 84 EUR in base, so 150 EUR > 100 USD triggers veto.
    let code = r#"
spec pricing
data money: quantity
    -> unit eur 1
    -> unit usd 0.84

data price: money

rule check: accept
    unless price > 100 usd then veto "This price is too high."
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    let response = engine
        .run(
            None,
            "pricing",
            Some(&now),
            HashMap::from([("price".to_string(), "150 eur".to_string())]),
            true,
            None,
        )
        .unwrap();

    let rule_result = response
        .results
        .values()
        .find(|r| r.rule.name == "check")
        .unwrap();

    assert!(rule_result.vetoed);
    assert_eq!(
        rule_result.veto_reason.as_deref(),
        Some("This price is too high.")
    );
}

#[test]
fn quantity_data_value_rejects_unknown_unit() {
    let code = r#"
spec pricing
data money: quantity
    -> unit eur 1
    -> unit usd 0.84

data price: money

rule check: price
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let msg = run_override_veto_message(
        &engine,
        "pricing",
        HashMap::from([("price".to_string(), "100 btc".to_string())]),
        "check",
    );
    assert!(msg.contains("btc"), "actual veto: {msg}");
}

#[test]
fn quantity_as_operator_converts_units() {
    // unit usd 0.84: 1 USD = 0.84 EUR (canonical). 100 usd as eur = 84 eur.
    let code = r#"
spec pricing
data money: quantity
    -> unit eur 1
    -> unit usd 0.84

data amount: 100 usd
rule price_eur: amount as eur
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    let response = engine
        .run(None, "pricing", Some(&now), HashMap::new(), true, None)
        .unwrap();
    let rule_result = response
        .results
        .values()
        .find(|r| r.rule.name == "price_eur")
        .unwrap();

    assert!(!rule_result.vetoed);
    let lit = rule_result
        .explanation
        .as_ref()
        .expect("explanation")
        .result
        .value()
        .expect("value");
    let (value, lemma_type) = (&lit.value, &lit.lemma_type);

    assert!(
        lemma_type.is_quantity(),
        "Expected quantity type, got: {lemma_type:?}"
    );

    let (amount, unit) = match value {
        ValueKind::Quantity(amount, sig) => (
            amount,
            sig.first()
                .map(|(n, _)| n.as_str())
                .unwrap_or("")
                .to_string(),
        ),
        other => panic!("Expected a quantity value, got: {other:?}"),
    };

    assert_eq!(
        lemma::ValueKind::Number(amount.clone())
            .as_decimal_magnitude()
            .unwrap(),
        Decimal::from(84)
    );
    assert_eq!(unit.as_str(), "eur");
}

#[test]
fn quantity_add_subtract_converts_units_when_same_family() {
    // Quantity add/subtract with different units (same quantity family) must convert, not Veto.
    // Regression: previously returned Veto "Cannot apply '-' to values with different units".
    let code = r#"
spec t
data money: quantity -> unit eur 1.00 -> unit usd 0.84
data gross: 7600 usd
data pension: 0 eur
rule taxable: gross - pension
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    let response = engine
        .run(None, "t", Some(&now), HashMap::new(), true, None)
        .unwrap();

    let rule_result = response
        .results
        .values()
        .find(|r| r.rule.name == "taxable")
        .unwrap();

    assert!(!rule_result.vetoed);
    let quantity = rule_result.quantity.as_ref().expect("quantity map");
    assert_eq!(quantity.get("eur"), Some(&"6384".to_string()));
    assert_eq!(quantity.get("usd"), Some(&"7600".to_string()));
}

#[test]
fn quantity_as_operator_rejects_unknown_unit() {
    let code = r#"
spec pricing
data money: quantity
    -> unit eur 1
    -> unit usd 0.84

rule price_gbp: 100 as gbp
"#;

    let mut engine = Engine::new();
    let load_err = engine.load(code, lemma::SourceType::Volatile).unwrap_err();
    let msg = load_err
        .errors
        .iter()
        .map(|e| e.to_string())
        .collect::<Vec<_>>()
        .join("; ");

    assert!(msg.contains("Unknown unit 'gbp'"), "actual error: {msg}");
    assert!(msg.contains("Valid units:"), "actual error: {msg}");
}

#[test]
fn named_quantity_type_comparison_with_unit_literal() {
    // Regression: planning rejected `package_weight > 1 kilogram` with
    // "Cannot compare different quantity types: quantity and weight" because it
    // used strict name equality instead of same_quantity_family.
    let code = r#"
spec shipping

data weight: quantity -> unit kilogram 1.0

data package_weight: 2.5 kilogram

rule base_shipping: 5.99
    unless package_weight > 1 kilogram then 8.99
    unless package_weight > 5 kilogram then 15.99
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    let response = engine
        .run(None, "shipping", Some(&now), HashMap::new(), true, None)
        .unwrap();

    let rule_result = response
        .results
        .values()
        .find(|r| r.rule.name == "base_shipping")
        .unwrap();

    // package_weight = 2.5 kg, which is > 1 kg but not > 5 kg, so second unless wins: 8.99
    assert!(!rule_result.vetoed);
    let lit = rule_result
        .explanation
        .as_ref()
        .expect("explanation")
        .result
        .value()
        .expect("value");
    match &lit.value {
        ValueKind::Number(d) => {
            assert_eq!(
                lemma::ValueKind::Number(d.clone())
                    .as_decimal_magnitude()
                    .unwrap(),
                Decimal::new(899, 2)
            );
        }
        other => panic!("Expected Number value, got {:?}", other),
    }
}

#[test]
fn named_quantity_type_arithmetic_within_same_family() {
    // Regression: planning rejected arithmetic between values of the same
    // quantity family when their type names differed (e.g. "quantity" vs "weight").
    let code = r#"
spec shipping

data money: quantity -> unit USD 1.00

data base_fee: 5.99 USD
data surcharge: 2.00 USD

rule total: base_fee + surcharge
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    let response = engine
        .run(None, "shipping", Some(&now), HashMap::new(), true, None)
        .unwrap();

    let rule_result = response
        .results
        .values()
        .find(|r| r.rule.name == "total")
        .unwrap();

    assert!(!rule_result.vetoed);
    let lit = rule_result
        .explanation
        .as_ref()
        .expect("explanation")
        .result
        .value()
        .expect("value");
    match &lit.value {
        ValueKind::Quantity(d, _) => {
            assert_eq!(
                lemma::ValueKind::Number(d.clone())
                    .as_decimal_magnitude()
                    .unwrap(),
                Decimal::new(799, 2)
            );
        }
        other => panic!("Expected Quantity value, got {:?}", other),
    }
}

// ═══════════════════════════════════════════════════════════════════
// Regression: convert_unit must use from_factor / to_factor.
// Quantity unit factor = canonical units per 1 unit (gram 0.001 => 1 g = 0.001 kg).
// ═══════════════════════════════════════════════════════════════════

#[test]
fn quantity_as_converts_kg_to_gram() {
    let code = r#"
spec physics
data mass: quantity
    -> unit kilogram 1.0
    -> unit gram 0.001
    -> default 2 kilogram

rule result: mass as gram as number
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    let response = engine
        .run(None, "physics", Some(&now), HashMap::new(), true, None)
        .unwrap();
    let rule = response
        .results
        .values()
        .find(|r| r.rule.name == "result")
        .unwrap();

    assert!(!rule.vetoed);
    let lit = rule
        .explanation
        .as_ref()
        .expect("explanation")
        .result
        .value()
        .expect("value");
    let amount = match &lit.value {
        ValueKind::Number(n) => n.clone(),
        other => panic!("expected Number from unit extraction, got {other:?}"),
    };

    assert_eq!(
        lemma::ValueKind::Number(amount)
            .as_decimal_magnitude()
            .unwrap(),
        Decimal::from(2000),
        "2 kg in gram = 2000"
    );
}

#[test]
fn quantity_as_converts_gram_to_kg() {
    let code = r#"
spec physics
data mass: quantity
    -> unit kilogram 1.0
    -> unit gram 0.001
    -> default 500 gram

rule result: mass as kilogram as number
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    let response = engine
        .run(None, "physics", Some(&now), HashMap::new(), true, None)
        .unwrap();
    let rule = response
        .results
        .values()
        .find(|r| r.rule.name == "result")
        .unwrap();

    assert!(!rule.vetoed);
    let lit = rule
        .explanation
        .as_ref()
        .expect("explanation")
        .result
        .value()
        .expect("value");
    let amount = match &lit.value {
        ValueKind::Number(n) => n.clone(),
        other => panic!("expected Number from unit extraction, got {other:?}"),
    };

    assert_eq!(
        lemma::ValueKind::Number(amount)
            .as_decimal_magnitude()
            .unwrap(),
        decimal_lit("0.5"),
        "500 gram in kilogram = 0.5"
    );
}

#[test]
fn quantity_as_converts_pound_to_gram() {
    let code = r#"
spec physics
data mass: quantity
    -> unit kilogram 1.0
    -> unit gram 0.001
    -> unit pound 0.453592
    -> default 1 pound

rule result: mass as gram as number
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    let response = engine
        .run(None, "physics", Some(&now), HashMap::new(), true, None)
        .unwrap();
    let rule = response
        .results
        .values()
        .find(|r| r.rule.name == "result")
        .unwrap();

    assert!(!rule.vetoed);
    let lit = rule
        .explanation
        .as_ref()
        .expect("explanation")
        .result
        .value()
        .expect("value");
    let amount = match &lit.value {
        ValueKind::Number(n) => n.clone(),
        other => panic!("expected Number from unit extraction, got {other:?}"),
    };

    assert_eq!(
        lemma::ValueKind::Number(amount)
            .as_decimal_magnitude()
            .unwrap(),
        decimal_lit("453.592"),
        "1 pound in gram = 453.592"
    );
}

#[test]
fn quantity_arithmetic_different_units_converts_correctly() {
    let code = r#"
spec physics
data mass: quantity
    -> unit kilogram 1.0
    -> unit gram 0.001

data a: 1 kilogram
data b: 500 gram

rule total: a + b
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    let response = engine
        .run(None, "physics", Some(&now), HashMap::new(), true, None)
        .unwrap();
    let rule = response
        .results
        .values()
        .find(|r| r.rule.name == "total")
        .unwrap();

    assert!(!rule.vetoed);
    let quantity = rule.quantity.as_ref().expect("quantity map");
    assert_eq!(quantity.get("kilogram"), Some(&"1.5".to_string()));
    assert_eq!(quantity.get("gram"), Some(&"1500".to_string()));
}

#[test]
fn quantity_comparison_different_units_physical() {
    let code = r#"
spec physics
data mass: quantity
    -> unit kilogram 1.0
    -> unit gram 0.001

data package: 1500 gram
rule heavy: package > 1 kilogram
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    let response = engine
        .run(None, "physics", Some(&now), HashMap::new(), true, None)
        .unwrap();
    let rule = response
        .results
        .values()
        .find(|r| r.rule.name == "heavy")
        .unwrap();

    assert_eq!(rule.boolean, Some(true));
}

// ═══════════════════════════════════════════════════════════════════
// Bug 2: validate_value_against_type compares raw quantity value
// against base-unit bounds without converting. A value like
// "1500 gram" with maximum "2 kilogram" (stored as 2.0 base)
// is wrongly rejected because 1500 > 2.
// ═══════════════════════════════════════════════════════════════════

#[test]
fn quantity_validation_respects_unit_for_maximum() {
    let code = r#"
spec physics
data mass: quantity
    -> unit kilogram 1.0
    -> unit gram 0.001
    -> maximum 2 kilogram

data weight: mass

rule result: weight
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    // 1500 gram = 1.5 kg, which is under the 2 kg maximum
    let response = engine.run(
        None,
        "physics",
        Some(&now),
        HashMap::from([("weight".to_string(), "1500 gram".to_string())]),
        true,
        None,
    );

    assert!(
        response.is_ok(),
        "1500 gram (= 1.5 kg) should pass maximum 2 kg, got: {:?}",
        response.unwrap_err()
    );
}

#[test]
fn quantity_validation_respects_unit_for_minimum() {
    let code = r#"
spec physics
data mass: quantity
    -> unit kilogram 1.0
    -> unit gram 0.001
    -> minimum 1 kilogram

data weight: mass

rule result: weight
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let now = DateTimeValue::now();
    // 1500 gram = 1.5 kg, which is above the 1 kg minimum
    let response = engine.run(
        None,
        "physics",
        Some(&now),
        HashMap::from([("weight".to_string(), "1500 gram".to_string())]),
        true,
        None,
    );

    assert!(
        response.is_ok(),
        "1500 gram (= 1.5 kg) should pass minimum 1 kg, got: {:?}",
        response.unwrap_err()
    );
}

#[test]
fn quantity_validation_rejects_over_maximum_in_non_base_unit() {
    let code = r#"
spec physics
data mass: quantity
    -> unit kilogram 1.0
    -> unit gram 0.001
    -> maximum 2 kilogram

data weight: mass

rule result: weight
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    // 3000 gram = 3 kg, which exceeds the 2 kg maximum
    let message = run_override_veto_message(
        &engine,
        "physics",
        HashMap::from([("weight".to_string(), "3000 gram".to_string())]),
        "result",
    );
    assert!(
        message.contains("maximum") || message.contains("above"),
        "3000 gram (= 3 kg) should fail maximum 2 kg, got: {message}"
    );
    assert!(
        !message.to_lowercase().contains("canonical"),
        "must not mention canonical units, got: {message}"
    );
}

#[test]
fn quantity_below_minimum_error_uses_per_unit_not_canonical() {
    let code = r#"
spec s
data money: quantity -> unit eur 1 -> unit usd 0.91
data mass: quantity -> unit kilogram 1
data cost_per_unit: quantity
  -> unit eur_per_kilo eur/kilogram
  -> minimum 1.20 eur_per_kilo
rule out: cost_per_unit
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let message = run_override_veto_message(
        &engine,
        "s",
        HashMap::from([("cost_per_unit".to_string(), "1 eur_per_kilo".to_string())]),
        "out",
    );
    assert!(
        message.contains("below minimum"),
        "expected below minimum, got: {message}"
    );
    assert!(
        message.contains("eur_per_kilo"),
        "expected user unit in message, got: {message}"
    );
    assert!(
        message.contains("1.2") || message.contains("1.20"),
        "expected per-unit minimum magnitude, got: {message}"
    );
    assert!(
        !message.to_lowercase().contains("canonical"),
        "must not mention canonical units, got: {message}"
    );
}

#[test]
fn quantity_below_minimum_error_respects_type_decimals() {
    let code = r#"
spec s
data money: quantity -> unit eur 1 -> unit usd 0.91
data mass: quantity -> unit kilogram 1 -> unit tonne 1000
data cost_per_unit: quantity
  -> unit eur_per_kilo eur/kilogram
  -> unit usd_per_tonne usd/tonne
  -> minimum 1.20 eur_per_kilo
  -> decimals 2
rule out: cost_per_unit
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let message = run_override_veto_message(
        &engine,
        "s",
        HashMap::from([(
            "cost_per_unit".to_string(),
            "2.01 usd_per_tonne".to_string(),
        )]),
        "out",
    );
    assert!(
        message.contains("below minimum"),
        "expected below minimum, got: {message}"
    );
    assert!(
        message.contains("usd_per_tonne"),
        "expected user unit in message, got: {message}"
    );
    assert!(
        message.contains("1318.68"),
        "expected minimum bound rounded to 2 decimals, got: {message}"
    );
    assert!(
        !message.contains("1318.681"),
        "must not show extra decimal precision beyond type decimals, got: {message}"
    );
}

const COMPOUND_COST_VALIDATION_SPEC: &str = r#"
spec s
data money: quantity -> unit eur 1 -> unit usd 0.91
data mass: quantity -> unit kilogram 1 -> unit tonne 1000
data cost_per_unit: quantity
  -> unit eur_per_kilo eur/kilogram
  -> unit usd_per_tonne usd/tonne
  -> maximum 2.00 eur_per_kilo
rule out: cost_per_unit
"#;

#[test]
fn compound_quantity_below_maximum_in_other_unit_passes() {
    let mut engine = Engine::new();
    engine
        .load(COMPOUND_COST_VALIDATION_SPEC, lemma::SourceType::Volatile)
        .unwrap();

    let now = DateTimeValue::now();
    let response = engine.run(
        None,
        "s",
        Some(&now),
        HashMap::from([(
            "cost_per_unit".to_string(),
            "2.01 usd_per_tonne".to_string(),
        )]),
        true,
        None,
    );

    assert!(
        response.is_ok(),
        "2.01 usd_per_tonne is below converted maximum of 2.00 eur_per_kilo, got: {:?}",
        response.as_ref().err()
    );
}

#[test]
fn compound_quantity_above_maximum_shows_converted_bound_in_user_unit() {
    let mut engine = Engine::new();
    engine
        .load(COMPOUND_COST_VALIDATION_SPEC, lemma::SourceType::Volatile)
        .unwrap();

    let message = run_override_veto_message(
        &engine,
        "s",
        HashMap::from([(
            "cost_per_unit".to_string(),
            "5000 usd_per_tonne".to_string(),
        )]),
        "out",
    );
    assert!(
        message.contains("above maximum"),
        "expected above maximum, got: {message}"
    );
    assert!(
        message.contains("usd_per_tonne"),
        "expected user unit in message, got: {message}"
    );
    assert!(
        !message.contains("2 usd_per_tonne"),
        "must not compare against unconverted maximum 2 usd_per_tonne, got: {message}"
    );
}

const TRI_COMPOUND_COST_VALIDATION_SPEC: &str = r#"
spec s
uses lemma units

data money: quantity
  -> unit eur 1
  -> unit usd 0.91

data mass: quantity
  -> unit kilogram 1
  -> unit tonne 1000

data storage_cost: quantity
  -> unit eur_per_kilo_hour eur/kilogram/hour
  -> unit usd_per_ton_hour usd/tonne/hour
  -> maximum 2.00 eur_per_kilo_hour

rule out: storage_cost
"#;

#[test]
fn tri_compound_quantity_below_maximum_in_other_unit_passes() {
    let mut engine = Engine::new();
    engine
        .load(
            TRI_COMPOUND_COST_VALIDATION_SPEC,
            lemma::SourceType::Volatile,
        )
        .unwrap();

    let now = DateTimeValue::now();
    let response = engine.run(
        None,
        "s",
        Some(&now),
        HashMap::from([(
            "storage_cost".to_string(),
            "2.01 usd_per_ton_hour".to_string(),
        )]),
        true,
        None,
    );

    assert!(
        response.is_ok(),
        "2.01 usd_per_ton_hour is below converted maximum of 2.00 eur_per_kilo_hour, got: {:?}",
        response.as_ref().err()
    );
}

#[test]
fn tri_compound_quantity_above_maximum_shows_converted_bound_in_user_unit() {
    let mut engine = Engine::new();
    engine
        .load(
            TRI_COMPOUND_COST_VALIDATION_SPEC,
            lemma::SourceType::Volatile,
        )
        .unwrap();

    let message = run_override_veto_message(
        &engine,
        "s",
        HashMap::from([(
            "storage_cost".to_string(),
            "5000 usd_per_ton_hour".to_string(),
        )]),
        "out",
    );
    assert!(
        message.contains("above maximum"),
        "expected above maximum, got: {message}"
    );
    assert!(
        message.contains("usd_per_ton_hour"),
        "expected user unit in message, got: {message}"
    );
    assert!(
        !message.contains("2 usd_per_ton_hour"),
        "must not compare against unconverted maximum 2 usd_per_ton_hour, got: {message}"
    );
}

#[test]
fn quantity_below_minimum_cross_unit_error_message() {
    let code = r#"
spec physics
data mass: quantity
    -> unit kilogram 1.0
    -> unit gram 0.001
    -> minimum 1 kilogram

data weight: mass

rule result: weight
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let message = run_override_veto_message(
        &engine,
        "physics",
        HashMap::from([("weight".to_string(), "500 gram".to_string())]),
        "result",
    );
    assert!(
        message.contains("500 gram is below minimum 1000 gram"),
        "expected cross-unit bound in user's unit, got: {message}"
    );
    assert!(
        !message.to_lowercase().contains("canonical"),
        "must not mention canonical units, got: {message}"
    );
}

// --- precision stress: prime unit chains from seed 37 ---

fn reference_named_unit_conversion(
    stored: Decimal,
    from_factor: Decimal,
    to_factor: Decimal,
) -> Decimal {
    stored
        .checked_mul(from_factor)
        .expect("reference conversion multiply failed")
        .checked_div(to_factor)
        .expect("reference conversion divide failed")
}

fn eval_rule_quantity_magnitude(
    engine: &Engine,
    spec_name: &str,
    rule_name: &str,
) -> (Decimal, String) {
    let now = DateTimeValue::now();
    let response = engine
        .run(None, spec_name, Some(&now), HashMap::new(), true, None)
        .expect("precision stress evaluation must complete");
    let rule = response
        .results
        .values()
        .find(|r| r.rule.name == rule_name)
        .unwrap_or_else(|| panic!("rule '{rule_name}' missing in spec '{spec_name}'"));
    assert!(
        !rule.vetoed,
        "rule '{rule_name}' must not Veto, got {:?}",
        rule.veto_reason
    );
    if let Some(quantity) = &rule.quantity {
        let lit = rule
            .explanation
            .as_ref()
            .expect("explanation")
            .result
            .value()
            .expect("value");
        let unit = match &lit.value {
            ValueKind::Quantity(_, sig) => sig
                .first()
                .map(|(n, _)| n.clone())
                .unwrap_or_else(|| panic!("quantity result missing signature unit")),
            other => panic!("expected Quantity from '{rule_name}', got {other:?}"),
        };
        let amount = quantity
            .get(&unit)
            .unwrap_or_else(|| panic!("quantity map missing unit '{unit}'"));
        return (
            Decimal::from_str(amount).expect("quantity map decimal"),
            unit,
        );
    }
    let lit = rule
        .explanation
        .as_ref()
        .expect("explanation")
        .result
        .value()
        .expect("value");
    match &lit.value {
        ValueKind::Quantity(amount, sig) => (
            lemma::ValueKind::Number(amount.clone())
                .as_decimal_magnitude()
                .unwrap(),
            sig.first().map(|(n, _)| n.clone()).unwrap_or_default(),
        ),
        other => panic!("expected Quantity from '{rule_name}', got {other:?}"),
    }
}

fn prime_precision_spec_header(primes: &[u32]) -> String {
    let mut spec = String::from(
        "spec prime_precision\n\
         data seed: quantity\n    -> unit base 1\n",
    );
    for prime in primes {
        spec.push_str(&format!("    -> unit p{prime} {prime}\n"));
    }
    spec.push_str("data anchor: 37 base\nrule step0: anchor\n");
    spec
}

#[test]
fn precision_baseline_roundtrip_base_p2_base() {
    let code = r#"
spec prime_precision
data seed: quantity
    -> unit base 1
    -> unit p2 2
data anchor: 37 base
rule step0: anchor
rule step1: step0 as p2
rule step2: step1 as base
"#;
    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();
    let (amount, unit) = eval_rule_quantity_magnitude(&engine, "prime_precision", "step2");
    assert_eq!(unit, "base");
    assert_eq!(amount, Decimal::from(37));
}

#[test]
fn precision_short_prime_chain_matches_stepwise_reference() {
    let primes: &[u32] = &[2, 3, 5];
    let mut code = prime_precision_spec_header(primes);
    let mut last = String::from("step0");
    let mut step_index = 0;
    for prime in primes {
        step_index += 1;
        let rule = format!("step{step_index}");
        code.push_str(&format!("rule {rule}: {last} as p{prime}\n"));
        last = rule;
    }
    let units_reverse: Vec<u32> = primes.iter().rev().copied().collect();
    for index in 0..units_reverse.len() - 1 {
        step_index += 1;
        let rule = format!("step{step_index}");
        code.push_str(&format!(
            "rule {rule}: {last} as p{}\n",
            units_reverse[index + 1]
        ));
        last = rule;
    }
    step_index += 1;
    let final_rule = format!("step{step_index}");
    code.push_str(&format!("rule {final_rule}: {last} as base\n"));

    let mut engine = Engine::new();
    engine.load(&code, lemma::SourceType::Volatile).unwrap();

    let (lemma_amount, unit) =
        eval_rule_quantity_magnitude(&engine, "prime_precision", &final_rule);
    assert_eq!(unit, "base");
    assert_eq!(
        lemma_amount,
        Decimal::from(37),
        "37 base through prime unit chain forward and back must stay exactly 37"
    );
}

#[test]
fn precision_prime_ladder_forward_reverse_matches_reference() {
    let primes: &[u32] = &[2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 41, 43, 47];
    let mut code = prime_precision_spec_header(primes);
    let mut last = String::from("step0");
    let mut step_index = 0;
    for prime in primes {
        step_index += 1;
        let rule = format!("step{step_index}");
        code.push_str(&format!("rule {rule}: {last} as p{prime}\n"));
        last = rule;
    }
    let units_reverse: Vec<u32> = primes.iter().rev().copied().collect();
    for index in 0..units_reverse.len() - 1 {
        step_index += 1;
        let rule = format!("step{step_index}");
        code.push_str(&format!(
            "rule {rule}: {last} as p{}\n",
            units_reverse[index + 1]
        ));
        last = rule;
    }
    step_index += 1;
    let final_rule = format!("step{step_index}");
    code.push_str(&format!("rule {final_rule}: {last} as base\n"));

    let mut engine = Engine::new();
    engine.load(&code, lemma::SourceType::Volatile).unwrap();

    let (lemma_amount, unit) =
        eval_rule_quantity_magnitude(&engine, "prime_precision", &final_rule);
    assert_eq!(unit, "base");
    assert_eq!(
        lemma_amount,
        Decimal::from(37),
        "37 base through fourteen prime units forward and back must stay exactly 37"
    );
}

#[test]
fn precision_many_prime_cycles_deterministic() {
    let cycle: &[u32] = &[2, 3, 5, 7, 11];
    let mut code = String::from(
        "spec prime_cycles\n\
         data seed: quantity\n    -> unit base 1\n",
    );
    for prime in cycle {
        code.push_str(&format!("    -> unit p{prime} {prime}\n"));
    }
    code.push_str("data anchor: 37 base\nrule step0: anchor\n");
    let mut previous = String::from("step0");
    let mut step_number = 0;
    for _cycle_index in 0..20 {
        for prime in cycle {
            step_number += 1;
            let rule = format!("step{step_number}");
            code.push_str(&format!("rule {rule}: {previous} as p{prime}\n"));
            previous = rule;
        }
    }
    code.push_str(&format!("rule final_step: {previous} as base\n"));

    let mut engine = Engine::new();
    engine.load(&code, lemma::SourceType::Volatile).unwrap();

    let (first, _) = eval_rule_quantity_magnitude(&engine, "prime_cycles", "final_step");
    let (second, _) = eval_rule_quantity_magnitude(&engine, "prime_cycles", "final_step");
    assert_eq!(first, second, "repeated evaluation must be deterministic");
    assert!(first > Decimal::ZERO);
}

#[test]
fn precision_ping_pong_p7_p11_forty_hops() {
    let mut code = String::from(
        "spec ping_pong\n\
         data seed: quantity\n    -> unit base 1\n    -> unit p7 7\n    -> unit p11 11\n\
         data anchor: 37 base\nrule step0: anchor\n",
    );
    let mut previous = String::from("step0");
    for index in 0..40 {
        let unit = if index % 2 == 0 { "p7" } else { "p11" };
        let rule = format!("step{}", index + 1);
        code.push_str(&format!("rule {rule}: {previous} as {unit}\n"));
        previous = rule;
    }
    code.push_str(&format!("rule final_step: {previous} as base\n"));

    let mut engine = Engine::new();
    engine.load(&code, lemma::SourceType::Volatile).unwrap();
    let (amount, unit) = eval_rule_quantity_magnitude(&engine, "ping_pong", "final_step");
    assert_eq!(unit, "base");
    assert!(amount > Decimal::ZERO);
}

#[test]
fn precision_mixed_arithmetic_conversion_completes() {
    let code = r#"
spec mixed_arith
data seed: quantity
    -> unit base 1
    -> unit p3 3
    -> unit p7 7
data anchor: 37 base
data five: 5
data two: 2
rule step0: anchor
rule step1: step0 as p3
rule step2: step1 * five
rule step3: step2 as p7
rule step4: step3 / two
rule step5: step4 as base
"#;
    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();

    let mut reference =
        reference_named_unit_conversion(Decimal::from(37), Decimal::ONE, Decimal::from(3));
    reference = reference
        .checked_mul(Decimal::from(5))
        .expect("reference multiply by five");
    reference = reference_named_unit_conversion(reference, Decimal::from(3), Decimal::from(7));
    reference = reference
        .checked_div(Decimal::from(2))
        .expect("reference divide by two");
    reference = reference_named_unit_conversion(reference, Decimal::from(7), Decimal::ONE);

    let (lemma_amount, unit) = eval_rule_quantity_magnitude(&engine, "mixed_arith", "step5");
    assert_eq!(unit, "base");
    assert_eq!(lemma_amount, reference);
}

#[test]
fn precision_api_display_ping_pong_twenty_unit_toggles() {
    let mut code = String::from(
        "spec api_ping_pong\n\
         data seed: quantity\n    -> unit base 1\n    -> unit p7 7\n    -> unit p11 11\n\
         data anchor: 37 base\nrule step0: anchor\n",
    );
    let mut previous = String::from("step0");
    for index in 0..20 {
        let unit = if index % 2 == 0 { "p7" } else { "p11" };
        let rule = format!("step{}", index + 1);
        code.push_str(&format!("rule {rule}: {previous} as {unit}\n"));
        previous = rule;
    }

    let mut engine = Engine::new();
    engine.load(&code, lemma::SourceType::Volatile).unwrap();

    let (in_spec_amount, in_spec_unit) =
        eval_rule_quantity_magnitude(&engine, "api_ping_pong", &previous);
    let in_spec_factor = match in_spec_unit.as_str() {
        "p7" => Decimal::from(7),
        "p11" => Decimal::from(11),
        other => panic!("unexpected in-spec unit {other}"),
    };

    for index in 0..20 {
        let rule = format!("step{}", index + 1);
        let target_unit = if index % 2 == 0 { "p7" } else { "p11" };
        let target_factor = if index % 2 == 0 {
            Decimal::from(7)
        } else {
            Decimal::from(11)
        };
        let (amount, unit) = eval_rule_quantity_magnitude(&engine, "api_ping_pong", &rule);
        assert_eq!(unit, target_unit);
        let expected =
            reference_named_unit_conversion(in_spec_amount, in_spec_factor, target_factor);
        assert_eq!(
            amount, expected,
            "in-spec conversion at hop {index} must match reference"
        );
    }
}

#[test]
fn precision_division_by_zero_control_vetoes() {
    let code = r#"
spec div0_control
data ten: 10
data zero: 0
rule quotient: ten / zero
"#;
    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();
    let now = DateTimeValue::now();
    let response = engine
        .run(None, "div0_control", Some(&now), HashMap::new(), true, None)
        .expect("evaluation must complete");
    let rule = response
        .results
        .values()
        .find(|r| r.rule.name == "quotient")
        .expect("quotient missing");
    assert!(rule.vetoed, "division by zero path must Veto, not panic");
    let reason = rule.veto_reason.as_deref().expect("veto reason");
    assert!(
        reason.contains("Division by zero") || reason.contains("division"),
        "expected division veto, got: {reason}"
    );
}

/// Regression: stripping expression-scope unit_index from a serialized plan must
/// not invalidate unit conversions that carry their owning type at plan time.
#[test]
fn eval_stripped_plan_unit_index_still_plans_and_runs() {
    let code = r#"
spec t
uses lemma units
data duration: units.duration
data x: number -> default 5
rule r: x as minutes
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();
    let now = DateTimeValue::now();

    let plan = engine.get_plan(None, "t", Some(&now)).unwrap();

    let mut json: serde_json::Value =
        serde_json::to_value(lemma::ExecutionPlanSerialized::from(plan)).unwrap();
    let unit_index = json["unit_index"]
        .as_object_mut()
        .expect("unit_index object");
    assert!(
        unit_index.contains_key("minutes"),
        "x as minutes must register minutes in unit_index before tampering; keys: {:?}",
        unit_index.keys().collect::<Vec<_>>()
    );
    unit_index.remove("minutes");

    let serialized: lemma::ExecutionPlanSerialized = serde_json::from_value(json).unwrap();
    let reconstructed = ExecutionPlan::try_from(serialized)
        .expect("carried owning_type must not need plan unit_index");
    let response = engine
        .run_plan(&reconstructed, Some(&now), HashMap::new(), false, None)
        .expect("evaluation must succeed with carried conversion types");
    let display = response
        .results
        .get("r")
        .expect("rule r must be present")
        .display
        .clone()
        .expect("rule r must have display");
    assert_eq!(display, "5 minutes");
}

/// Regression: tampered unit conversion target rejected at TryFrom, not at eval.
#[test]
fn eval_tampered_unit_conversion_target_rejected_at_try_from() {
    let code = r#"
spec t
uses lemma units
data duration: units.duration
data x: number -> default 5
rule r: x as minutes
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();
    let now = DateTimeValue::now();

    let plan = engine.get_plan(None, "t", Some(&now)).unwrap();

    let mut json: serde_json::Value =
        serde_json::to_value(lemma::ExecutionPlanSerialized::from(plan)).unwrap();
    let code_array = json["rules"][0]["instructions"]["code"]
        .as_array_mut()
        .expect("instruction code array");
    let conversion = code_array
        .iter_mut()
        .find(|insn| insn.get("unit_conversion").is_some())
        .expect("plan must contain a unit_conversion instruction");
    let target = conversion
        .get_mut("unit_conversion")
        .expect("unit_conversion object")
        .get_mut("target")
        .expect("conversion target");
    let unit = target
        .get_mut("unit")
        .expect("unit conversion target must be unit variant");
    unit["unit_name"] = serde_json::Value::String("tampered_unit".to_string());

    let serialized: lemma::ExecutionPlanSerialized = serde_json::from_value(json).unwrap();
    let result = ExecutionPlan::try_from(serialized);
    let err = result.expect_err("tampered conversion target must fail TryFrom");
    assert_eq!(
        err.message(),
        "Serialized execution plan for spec 't' is invalid: Unit conversion target 'tampered_unit' is not declared on owning type 'duration'"
    );
}

#[test]
fn shadowed_duration_rejects_minutes_alias_at_load() {
    let code = r#"
spec s
uses lemma units
data duration: quantity
  -> unit minute 60
rule r: 5 as minutes
"#;

    let mut engine = Engine::new();
    let err = engine
        .load(code, lemma::SourceType::Volatile)
        .expect_err("shadowed duration must reject minutes alias at load");
    let msg = format!("{err:?}");
    assert!(
        msg.contains("minutes"),
        "expected unknown minutes at load, got: {msg}"
    );
}

#[test]
fn stdlib_duration_minutes_loads_and_runs() {
    let code = r#"
spec t
uses lemma units
data duration: units.duration
data x: number -> default 5
rule r: x as minutes
"#;

    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();
    let now = DateTimeValue::now();
    let response = engine
        .run(None, "t", Some(&now), HashMap::new(), true, None)
        .expect("stdlib duration with minutes must run");
    let display = response
        .results
        .get("r")
        .expect("rule r")
        .display
        .as_deref()
        .expect("display");
    assert_eq!(display, "5 minutes");
}

// ═══════════════════════════════════════════════════════════════════
// Cross-family relabel: `5 eur as kg` = 5 kg (no factor).
// `amount as eur as kg` converts in the money family first, then relabels.
// ═══════════════════════════════════════════════════════════════════

#[test]
fn cross_family_relabel_quantity_literal_no_factor() {
    // `5 eur as kg` — magnitude carried unchanged, target family is mass.
    let code = r#"
spec t
data money: quantity -> unit eur 1 -> unit usd 0.91
data mass: quantity -> unit kg 1
rule out: 5 eur as kg
"#;
    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();
    let now = DateTimeValue::now();
    let response = engine
        .run(None, "t", Some(&now), HashMap::new(), true, None)
        .unwrap();
    let lit = response
        .results
        .get("out")
        .unwrap()
        .explanation
        .as_ref()
        .expect("explanation")
        .result
        .value()
        .expect("value");
    let (magnitude, sig) = match &lit.value {
        ValueKind::Quantity(m, s) => (
            lemma::ValueKind::Number(m.clone())
                .as_decimal_magnitude()
                .unwrap(),
            s,
        ),
        other => panic!("expected Quantity, got {other:?}"),
    };
    assert_eq!(
        magnitude,
        Decimal::from(5),
        "5 eur as kg must carry magnitude 5 unchanged"
    );
    assert_eq!(
        sig.first().map(|(n, _)| n.as_str()),
        Some("kg"),
        "target unit must be kg"
    );
    assert!(
        lit.lemma_type.is_quantity(),
        "result must be a quantity type"
    );
}

#[test]
fn cross_family_relabel_via_convert_then_relabel() {
    // `amount as eur as kg`: 100 usd → 91 eur (money factor), then relabel → 91 kg (no factor).
    let code = r#"
spec t
data money: quantity -> unit eur 1 -> unit usd 0.91
data mass: quantity -> unit kg 1
data amount: 100 usd
rule out: amount as eur as kg
"#;
    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();
    let now = DateTimeValue::now();
    let response = engine
        .run(None, "t", Some(&now), HashMap::new(), true, None)
        .unwrap();
    let lit = response
        .results
        .get("out")
        .unwrap()
        .explanation
        .as_ref()
        .expect("explanation")
        .result
        .value()
        .expect("value");
    let (magnitude, sig) = match &lit.value {
        ValueKind::Quantity(m, s) => (
            lemma::ValueKind::Number(m.clone())
                .as_decimal_magnitude()
                .unwrap(),
            s,
        ),
        other => panic!("expected Quantity, got {other:?}"),
    };
    // 100 usd × 0.91 = 91 eur (money family factor), then relabel to kg with the same magnitude.
    assert_eq!(magnitude, Decimal::new(91, 0), "100 usd → 91 eur → 91 kg");
    assert_eq!(
        sig.first().map(|(n, _)| n.as_str()),
        Some("kg"),
        "target unit must be kg"
    );
}

#[test]
fn cross_family_extract_then_relabel_number_bridge() {
    // `amount as eur as number as kg`: strip to 91, then construct 91 kg.
    let code = r#"
spec t
data money: quantity -> unit eur 1 -> unit usd 0.91
data mass: quantity -> unit kg 1
data amount: 100 usd
rule out: amount as eur as number as kg
"#;
    let mut engine = Engine::new();
    engine.load(code, lemma::SourceType::Volatile).unwrap();
    let now = DateTimeValue::now();
    let response = engine
        .run(None, "t", Some(&now), HashMap::new(), true, None)
        .unwrap();
    let lit = response
        .results
        .get("out")
        .unwrap()
        .explanation
        .as_ref()
        .expect("explanation")
        .result
        .value()
        .expect("value");
    let (magnitude, sig) = match &lit.value {
        ValueKind::Quantity(m, s) => (
            lemma::ValueKind::Number(m.clone())
                .as_decimal_magnitude()
                .unwrap(),
            s,
        ),
        other => panic!("expected Quantity, got {other:?}"),
    };
    assert_eq!(
        magnitude,
        Decimal::new(91, 0),
        "91 eur → 91 (number) → 91 kg"
    );
    assert_eq!(sig.first().map(|(n, _)| n.as_str()), Some("kg"));
}

// ═══════════════════════════════════════════════════════════════════
// Rejections: bare quantity `as number` / bare cross-family `as <unit>`
// require a source unit to be named first.
// ═══════════════════════════════════════════════════════════════════

#[test]
fn bare_quantity_reference_as_number_rejected() {
    // `amount as number` without naming a unit must be rejected with a suggestion.
    let code = r#"
spec t
data money: quantity -> unit eur 1 -> unit usd 0.91
data amount: money
rule out: amount as number
"#;
    let mut engine = Engine::new();
    let err = engine.load(code, lemma::SourceType::Volatile).unwrap_err();
    let msg = err
        .errors
        .iter()
        .map(|e| e.to_string())
        .collect::<Vec<_>>()
        .join("; ");
    assert!(
        msg.contains("eur") || msg.contains("as eur"),
        "error must suggest explicit unit, got: {msg}"
    );
    assert!(
        msg.to_lowercase().contains("number"),
        "error must mention 'number', got: {msg}"
    );
}

#[test]
fn bare_quantity_reference_cross_family_as_unit_rejected() {
    // `amount as kg` without naming source unit must be rejected.
    let code = r#"
spec t
data money: quantity -> unit eur 1
data mass: quantity -> unit kg 1
data amount: money
rule out: amount as kg
"#;
    let mut engine = Engine::new();
    let err = engine.load(code, lemma::SourceType::Volatile).unwrap_err();
    let msg = err
        .errors
        .iter()
        .map(|e| e.to_string())
        .collect::<Vec<_>>()
        .join("; ");
    assert!(
        msg.contains("eur") || msg.to_lowercase().contains("unit"),
        "error must suggest expressing source unit first, got: {msg}"
    );
}