oxidize-pdf 2.5.0

A pure Rust PDF generation and manipulation library with zero external dependencies
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
//! Enhanced form calculation system with JavaScript support
//!
//! This module provides a complete calculation system for PDF forms supporting:
//! - JavaScript calculations (AFSimple, AFPercent, AFDate)
//! - Field dependencies and automatic recalculation
//! - Calculation order management
//! - Format validation

use crate::error::PdfError;
use crate::forms::calculations::{CalculationEngine, FieldValue};
use crate::objects::{Dictionary, Object};
use chrono::{DateTime, NaiveDate, Utc};
use std::collections::{HashMap, HashSet, VecDeque};
use std::fmt;

/// Complete calculation system for PDF forms
#[derive(Debug, Clone)]
pub struct FormCalculationSystem {
    /// Core calculation engine
    engine: CalculationEngine,
    /// JavaScript calculations
    js_calculations: HashMap<String, JavaScriptCalculation>,
    /// Field formats
    field_formats: HashMap<String, FieldFormat>,
    /// Calculation events
    events: Vec<CalculationEvent>,
    /// Settings
    settings: CalculationSettings,
}

/// JavaScript calculation types (Adobe Forms)
#[derive(Debug, Clone)]
pub enum JavaScriptCalculation {
    /// AFSimple_Calculate - Basic arithmetic operations
    SimpleCalculate {
        operation: SimpleOperation,
        fields: Vec<String>,
    },
    /// AFPercent_Calculate - Percentage calculations
    PercentCalculate {
        base_field: String,
        percent_field: String,
        mode: PercentMode,
    },
    /// AFDate_Calculate - Date calculations
    DateCalculate {
        start_date_field: String,
        days_field: Option<String>,
        format: String,
    },
    /// AFRange_Calculate - Range validation
    RangeCalculate {
        field: String,
        min: Option<f64>,
        max: Option<f64>,
    },
    /// AFNumber_Calculate - Number formatting
    NumberCalculate {
        field: String,
        decimals: usize,
        sep_style: SeparatorStyle,
        currency: Option<String>,
    },
    /// Custom JavaScript code
    Custom {
        script: String,
        dependencies: Vec<String>,
    },
}

/// Simple arithmetic operations for AFSimple_Calculate
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum SimpleOperation {
    Sum,     // SUM
    Product, // PRD
    Average, // AVG
    Minimum, // MIN
    Maximum, // MAX
}

/// Percentage calculation modes
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum PercentMode {
    /// Calculate X% of base
    PercentOf,
    /// Calculate what % X is of base
    PercentageOf,
    /// Add X% to base
    AddPercent,
    /// Subtract X% from base
    SubtractPercent,
}

/// Number separator styles
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum SeparatorStyle {
    /// 1,234.56
    CommaPeriod,
    /// 1.234,56
    PeriodComma,
    /// 1 234.56
    SpacePeriod,
    /// 1'234.56
    ApostrophePeriod,
    /// 1234.56
    None,
}

/// Field format specification
#[derive(Debug, Clone)]
pub enum FieldFormat {
    /// Number format
    Number {
        decimals: usize,
        separator: SeparatorStyle,
        negative_style: NegativeStyle,
        currency: Option<String>,
    },
    /// Percentage format
    Percent { decimals: usize },
    /// Date format
    Date { format: String },
    /// Time format
    Time { format: String },
    /// Special format (SSN, Phone, Zip)
    Special { format_type: SpecialFormat },
    /// Custom format
    Custom { format_string: String },
}

/// Negative number display styles
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum NegativeStyle {
    MinusBlack,       // -1,234.56
    RedParentheses,   // (1,234.56) in red
    BlackParentheses, // (1,234.56) in black
    MinusRed,         // -1,234.56 in red
}

/// Special format types
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum SpecialFormat {
    ZipCode,      // 12345 or 12345-6789
    ZipCodePlus4, // 12345-6789
    PhoneNumber,  // (123) 456-7890
    SSN,          // 123-45-6789
}

/// Calculation event for logging
#[derive(Debug, Clone)]
#[allow(dead_code)]
pub struct CalculationEvent {
    /// Timestamp
    timestamp: DateTime<Utc>,
    /// Field that triggered the event
    field: String,
    /// Event type
    event_type: EventType,
    /// Old value
    old_value: Option<FieldValue>,
    /// New value
    new_value: Option<FieldValue>,
}

/// Event types
#[derive(Debug, Clone, PartialEq)]
pub enum EventType {
    ValueChanged,
    CalculationTriggered,
    ValidationFailed,
    FormatApplied,
    DependencyUpdated,
}

/// Calculation system settings
#[derive(Debug, Clone)]
pub struct CalculationSettings {
    /// Enable automatic recalculation
    pub auto_recalculate: bool,
    /// Maximum calculation depth (to prevent infinite loops)
    pub max_depth: usize,
    /// Enable event logging
    pub log_events: bool,
    /// Decimal precision
    pub decimal_precision: usize,
}

impl Default for CalculationSettings {
    fn default() -> Self {
        Self {
            auto_recalculate: true,
            max_depth: 100,
            log_events: true,
            decimal_precision: 2,
        }
    }
}

impl Default for FormCalculationSystem {
    fn default() -> Self {
        Self {
            engine: CalculationEngine::new(),
            js_calculations: HashMap::new(),
            field_formats: HashMap::new(),
            events: Vec::new(),
            settings: CalculationSettings::default(),
        }
    }
}

impl FormCalculationSystem {
    /// Create a new calculation system
    pub fn new() -> Self {
        Self::default()
    }

    /// Create with custom settings
    pub fn with_settings(settings: CalculationSettings) -> Self {
        Self {
            settings,
            ..Self::default()
        }
    }

    /// Set a field value and trigger calculations
    pub fn set_field_value(
        &mut self,
        field_name: impl Into<String>,
        value: FieldValue,
    ) -> Result<(), PdfError> {
        let field_name = field_name.into();

        // Log event if enabled
        if self.settings.log_events {
            let old_value = self.engine.get_field_value(&field_name).cloned();
            self.events.push(CalculationEvent {
                timestamp: Utc::now(),
                field: field_name.clone(),
                event_type: EventType::ValueChanged,
                old_value,
                new_value: Some(value.clone()),
            });
        }

        // Set value in engine
        self.engine.set_field_value(field_name.clone(), value);

        // Trigger JavaScript calculations if enabled
        if self.settings.auto_recalculate {
            self.recalculate_js_fields(&field_name)?;
        }

        Ok(())
    }

    /// Add a JavaScript calculation
    pub fn add_js_calculation(
        &mut self,
        field_name: impl Into<String>,
        calculation: JavaScriptCalculation,
    ) -> Result<(), PdfError> {
        let field_name = field_name.into();

        // Extract dependencies
        let dependencies = self.extract_js_dependencies(&calculation);

        // Check for circular dependencies
        if self.would_create_cycle(&field_name, &dependencies) {
            return Err(PdfError::InvalidStructure(format!(
                "Circular dependency detected for field '{}'",
                field_name
            )));
        }

        // Store calculation
        self.js_calculations.insert(field_name.clone(), calculation);

        // Perform initial calculation
        self.calculate_js_field(&field_name)?;

        Ok(())
    }

    /// Extract dependencies from JavaScript calculation
    fn extract_js_dependencies(&self, calc: &JavaScriptCalculation) -> HashSet<String> {
        let mut deps = HashSet::new();

        match calc {
            JavaScriptCalculation::SimpleCalculate { fields, .. } => {
                deps.extend(fields.iter().cloned());
            }
            JavaScriptCalculation::PercentCalculate {
                base_field,
                percent_field,
                ..
            } => {
                deps.insert(base_field.clone());
                deps.insert(percent_field.clone());
            }
            JavaScriptCalculation::DateCalculate {
                start_date_field,
                days_field,
                ..
            } => {
                deps.insert(start_date_field.clone());
                if let Some(df) = days_field {
                    deps.insert(df.clone());
                }
            }
            JavaScriptCalculation::RangeCalculate { field, .. } => {
                deps.insert(field.clone());
            }
            JavaScriptCalculation::NumberCalculate { field, .. } => {
                deps.insert(field.clone());
            }
            JavaScriptCalculation::Custom { dependencies, .. } => {
                deps.extend(dependencies.iter().cloned());
            }
        }

        deps
    }

    /// Check for circular dependencies
    fn would_create_cycle(&self, field: &str, new_deps: &HashSet<String>) -> bool {
        for dep in new_deps {
            if dep == field {
                return true; // Self-reference
            }

            // Check if dep depends on field
            if self.depends_on(dep, field) {
                return true;
            }
        }

        false
    }

    /// Check if field A depends on field B
    fn depends_on(&self, field_a: &str, field_b: &str) -> bool {
        let mut visited = HashSet::new();
        let mut queue = VecDeque::new();
        queue.push_back(field_a.to_string());

        while let Some(current) = queue.pop_front() {
            if current == field_b {
                return true;
            }

            if visited.contains(&current) {
                continue;
            }
            visited.insert(current.clone());

            // Check JavaScript calculation dependencies
            if let Some(calc) = self.js_calculations.get(&current) {
                let deps = self.extract_js_dependencies(calc);
                for dep in deps {
                    queue.push_back(dep);
                }
            }
        }

        false
    }

    /// Calculate a JavaScript field
    fn calculate_js_field(&mut self, field_name: &str) -> Result<(), PdfError> {
        if let Some(calculation) = self.js_calculations.get(field_name).cloned() {
            let value = self.evaluate_js_calculation(&calculation)?;

            // Apply format if specified
            let formatted_value = if let Some(format) = self.field_formats.get(field_name) {
                self.apply_format(value, format)?
            } else {
                value
            };

            self.engine.set_field_value(field_name, formatted_value);

            if self.settings.log_events {
                self.events.push(CalculationEvent {
                    timestamp: Utc::now(),
                    field: field_name.to_string(),
                    event_type: EventType::CalculationTriggered,
                    old_value: None,
                    new_value: self.engine.get_field_value(field_name).cloned(),
                });
            }
        }

        Ok(())
    }

    /// Evaluate a JavaScript calculation
    fn evaluate_js_calculation(
        &self,
        calc: &JavaScriptCalculation,
    ) -> Result<FieldValue, PdfError> {
        match calc {
            JavaScriptCalculation::SimpleCalculate { operation, fields } => {
                let values: Vec<f64> = fields
                    .iter()
                    .filter_map(|f| self.engine.get_field_value(f))
                    .map(|v| v.to_number())
                    .collect();

                if values.is_empty() {
                    return Ok(FieldValue::Number(0.0));
                }

                let result = match operation {
                    SimpleOperation::Sum => values.iter().sum(),
                    SimpleOperation::Product => values.iter().product(),
                    SimpleOperation::Average => values.iter().sum::<f64>() / values.len() as f64,
                    SimpleOperation::Minimum => {
                        values.iter().cloned().fold(f64::INFINITY, f64::min)
                    }
                    SimpleOperation::Maximum => {
                        values.iter().cloned().fold(f64::NEG_INFINITY, f64::max)
                    }
                };

                Ok(FieldValue::Number(result))
            }
            JavaScriptCalculation::PercentCalculate {
                base_field,
                percent_field,
                mode,
            } => {
                let base = self
                    .engine
                    .get_field_value(base_field)
                    .map(|v| v.to_number())
                    .unwrap_or(0.0);
                let percent = self
                    .engine
                    .get_field_value(percent_field)
                    .map(|v| v.to_number())
                    .unwrap_or(0.0);

                let result = match mode {
                    PercentMode::PercentOf => base * (percent / 100.0),
                    PercentMode::PercentageOf => {
                        if base != 0.0 {
                            (percent / base) * 100.0
                        } else {
                            0.0
                        }
                    }
                    PercentMode::AddPercent => base * (1.0 + percent / 100.0),
                    PercentMode::SubtractPercent => base * (1.0 - percent / 100.0),
                };

                Ok(FieldValue::Number(result))
            }
            JavaScriptCalculation::DateCalculate {
                start_date_field,
                days_field,
                format: _,
            } => {
                // Get start date
                let start_date_str = self
                    .engine
                    .get_field_value(start_date_field)
                    .map(|v| v.to_string())
                    .unwrap_or_default();

                // Parse date (simplified - real implementation would use format)
                if let Ok(date) = NaiveDate::parse_from_str(&start_date_str, "%Y-%m-%d") {
                    let days = if let Some(df) = days_field {
                        self.engine
                            .get_field_value(df)
                            .map(|v| v.to_number() as i64)
                            .unwrap_or(0)
                    } else {
                        0
                    };

                    let result_date = date + chrono::Duration::days(days);
                    Ok(FieldValue::Text(result_date.format("%Y-%m-%d").to_string()))
                } else {
                    Ok(FieldValue::Text(String::new()))
                }
            }
            JavaScriptCalculation::RangeCalculate { field, min, max } => {
                let value = self
                    .engine
                    .get_field_value(field)
                    .map(|v| v.to_number())
                    .unwrap_or(0.0);

                let clamped = match (min, max) {
                    (Some(min_val), Some(max_val)) => value.clamp(*min_val, *max_val),
                    (Some(min_val), None) => value.max(*min_val),
                    (None, Some(max_val)) => value.min(*max_val),
                    (None, None) => value,
                };

                Ok(FieldValue::Number(clamped))
            }
            JavaScriptCalculation::NumberCalculate {
                field,
                decimals,
                sep_style: _,
                currency: _,
            } => {
                let value = self
                    .engine
                    .get_field_value(field)
                    .map(|v| v.to_number())
                    .unwrap_or(0.0);

                // Round to specified decimals
                let factor = 10_f64.powi(*decimals as i32);
                let rounded = (value * factor).round() / factor;

                Ok(FieldValue::Number(rounded))
            }
            JavaScriptCalculation::Custom { script, .. } => {
                // Very limited custom script evaluation
                // In production, this would use a proper JavaScript engine
                self.evaluate_custom_script(script)
            }
        }
    }

    /// Evaluate custom JavaScript (very limited)
    fn evaluate_custom_script(&self, script: &str) -> Result<FieldValue, PdfError> {
        // This is a placeholder for custom script evaluation
        // A real implementation would need a proper sandboxed JS engine

        // For now, just handle simple cases like "field1 + field2"
        if script.contains('+') {
            let parts: Vec<&str> = script.split('+').collect();
            if parts.len() == 2 {
                let field1 = parts[0].trim();
                let field2 = parts[1].trim();

                let val1 = self
                    .engine
                    .get_field_value(field1)
                    .map(|v| v.to_number())
                    .unwrap_or(0.0);
                let val2 = self
                    .engine
                    .get_field_value(field2)
                    .map(|v| v.to_number())
                    .unwrap_or(0.0);

                return Ok(FieldValue::Number(val1 + val2));
            }
        }

        Ok(FieldValue::Empty)
    }

    /// Recalculate JavaScript fields that depend on a changed field
    fn recalculate_js_fields(&mut self, changed_field: &str) -> Result<(), PdfError> {
        let mut fields_to_recalc = Vec::new();

        // Find fields that depend on the changed field
        for (field_name, calc) in &self.js_calculations {
            let deps = self.extract_js_dependencies(calc);
            if deps.contains(changed_field) {
                fields_to_recalc.push(field_name.clone());
            }
        }

        // Recalculate dependent fields
        for field in fields_to_recalc {
            self.calculate_js_field(&field)?;
        }

        Ok(())
    }

    /// Apply format to a field value
    fn apply_format(
        &self,
        value: FieldValue,
        format: &FieldFormat,
    ) -> Result<FieldValue, PdfError> {
        match format {
            FieldFormat::Number { decimals, .. } => {
                let num = value.to_number();
                let factor = 10_f64.powi(*decimals as i32);
                let rounded = (num * factor).round() / factor;
                Ok(FieldValue::Number(rounded))
            }
            FieldFormat::Percent { decimals } => {
                let num = value.to_number();
                let factor = 10_f64.powi(*decimals as i32);
                let rounded = (num * 100.0 * factor).round() / factor;
                Ok(FieldValue::Text(format!("{}%", rounded)))
            }
            _ => Ok(value),
        }
    }

    /// Set field format
    pub fn set_field_format(&mut self, field_name: impl Into<String>, format: FieldFormat) {
        self.field_formats.insert(field_name.into(), format);
    }

    /// Get calculation summary
    pub fn get_summary(&self) -> CalculationSystemSummary {
        CalculationSystemSummary {
            total_fields: self.engine.get_summary().total_fields,
            js_calculations: self.js_calculations.len(),
            formatted_fields: self.field_formats.len(),
            events_logged: self.events.len(),
        }
    }

    /// Get recent events
    pub fn get_recent_events(&self, count: usize) -> Vec<&CalculationEvent> {
        let start = self.events.len().saturating_sub(count);
        self.events[start..].iter().collect()
    }

    /// Clear event log
    pub fn clear_events(&mut self) {
        self.events.clear();
    }

    /// Export to PDF dictionary
    pub fn to_pdf_dict(&self) -> Dictionary {
        let mut dict = Dictionary::new();

        // Add calculation order
        let calc_order: Vec<Object> = self
            .js_calculations
            .keys()
            .map(|k| Object::String(k.clone()))
            .collect();

        if !calc_order.is_empty() {
            dict.set("CO", Object::Array(calc_order));
        }

        dict
    }
}

/// Summary of calculation system state
#[derive(Debug, Clone)]
pub struct CalculationSystemSummary {
    pub total_fields: usize,
    pub js_calculations: usize,
    pub formatted_fields: usize,
    pub events_logged: usize,
}

impl fmt::Display for CalculationSystemSummary {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "Calculation System Summary:\n\
             - Total fields: {}\n\
             - JavaScript calculations: {}\n\
             - Formatted fields: {}\n\
             - Events logged: {}",
            self.total_fields, self.js_calculations, self.formatted_fields, self.events_logged
        )
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_simple_calculate() {
        let mut system = FormCalculationSystem::new();

        // Set field values
        system
            .set_field_value("field1", FieldValue::Number(10.0))
            .unwrap();
        system
            .set_field_value("field2", FieldValue::Number(20.0))
            .unwrap();
        system
            .set_field_value("field3", FieldValue::Number(30.0))
            .unwrap();

        // Add sum calculation
        let calc = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Sum,
            fields: vec![
                "field1".to_string(),
                "field2".to_string(),
                "field3".to_string(),
            ],
        };

        system.add_js_calculation("total", calc).unwrap();

        // Check result
        let total = system.engine.get_field_value("total").unwrap();
        assert_eq!(total.to_number(), 60.0);
    }

    #[test]
    fn test_percent_calculate() {
        let mut system = FormCalculationSystem::new();

        system
            .set_field_value("base", FieldValue::Number(100.0))
            .unwrap();
        system
            .set_field_value("percent", FieldValue::Number(15.0))
            .unwrap();

        let calc = JavaScriptCalculation::PercentCalculate {
            base_field: "base".to_string(),
            percent_field: "percent".to_string(),
            mode: PercentMode::PercentOf,
        };

        system.add_js_calculation("result", calc).unwrap();

        let result = system.engine.get_field_value("result").unwrap();
        assert_eq!(result.to_number(), 15.0);
    }

    #[test]
    fn test_range_calculate() {
        let mut system = FormCalculationSystem::new();

        system
            .set_field_value("value", FieldValue::Number(150.0))
            .unwrap();

        let calc = JavaScriptCalculation::RangeCalculate {
            field: "value".to_string(),
            min: Some(0.0),
            max: Some(100.0),
        };

        system.add_js_calculation("clamped", calc).unwrap();

        let clamped = system.engine.get_field_value("clamped").unwrap();
        assert_eq!(clamped.to_number(), 100.0);
    }

    #[test]
    fn test_circular_dependency_detection() {
        let mut system = FormCalculationSystem::new();

        // A depends on B
        let calc1 = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Sum,
            fields: vec!["fieldB".to_string()],
        };
        system.add_js_calculation("fieldA", calc1).unwrap();

        // Try to make B depend on A (should fail)
        let calc2 = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Sum,
            fields: vec!["fieldA".to_string()],
        };
        let result = system.add_js_calculation("fieldB", calc2);

        assert!(result.is_err());
    }

    #[test]
    fn test_event_logging() {
        let mut system = FormCalculationSystem::new();

        system
            .set_field_value("test", FieldValue::Number(42.0))
            .unwrap();

        assert_eq!(system.events.len(), 1);
        assert_eq!(system.events[0].event_type, EventType::ValueChanged);
        assert_eq!(system.events[0].field, "test");
    }

    // ===== New tests for improved coverage =====

    #[test]
    fn test_default_calculation_settings() {
        let settings = CalculationSettings::default();
        assert!(settings.auto_recalculate);
        assert_eq!(settings.max_depth, 100);
        assert!(settings.log_events);
        assert_eq!(settings.decimal_precision, 2);
    }

    #[test]
    fn test_form_calculation_system_default() {
        let system = FormCalculationSystem::default();
        let summary = system.get_summary();
        assert_eq!(summary.total_fields, 0);
        assert_eq!(summary.js_calculations, 0);
        assert_eq!(summary.formatted_fields, 0);
        assert_eq!(summary.events_logged, 0);
    }

    #[test]
    fn test_with_settings() {
        let settings = CalculationSettings {
            auto_recalculate: false,
            max_depth: 50,
            log_events: false,
            decimal_precision: 4,
        };
        let system = FormCalculationSystem::with_settings(settings.clone());
        assert!(!system.settings.auto_recalculate);
        assert_eq!(system.settings.max_depth, 50);
    }

    #[test]
    fn test_simple_calculate_product() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("a", FieldValue::Number(2.0))
            .unwrap();
        system
            .set_field_value("b", FieldValue::Number(3.0))
            .unwrap();
        system
            .set_field_value("c", FieldValue::Number(4.0))
            .unwrap();

        let calc = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Product,
            fields: vec!["a".to_string(), "b".to_string(), "c".to_string()],
        };
        system.add_js_calculation("product", calc).unwrap();

        let result = system.engine.get_field_value("product").unwrap();
        assert_eq!(result.to_number(), 24.0);
    }

    #[test]
    fn test_simple_calculate_average() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("a", FieldValue::Number(10.0))
            .unwrap();
        system
            .set_field_value("b", FieldValue::Number(20.0))
            .unwrap();
        system
            .set_field_value("c", FieldValue::Number(30.0))
            .unwrap();

        let calc = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Average,
            fields: vec!["a".to_string(), "b".to_string(), "c".to_string()],
        };
        system.add_js_calculation("avg", calc).unwrap();

        let result = system.engine.get_field_value("avg").unwrap();
        assert_eq!(result.to_number(), 20.0);
    }

    #[test]
    fn test_simple_calculate_minimum() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("a", FieldValue::Number(10.0))
            .unwrap();
        system
            .set_field_value("b", FieldValue::Number(5.0))
            .unwrap();
        system
            .set_field_value("c", FieldValue::Number(15.0))
            .unwrap();

        let calc = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Minimum,
            fields: vec!["a".to_string(), "b".to_string(), "c".to_string()],
        };
        system.add_js_calculation("min", calc).unwrap();

        let result = system.engine.get_field_value("min").unwrap();
        assert_eq!(result.to_number(), 5.0);
    }

    #[test]
    fn test_simple_calculate_maximum() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("a", FieldValue::Number(10.0))
            .unwrap();
        system
            .set_field_value("b", FieldValue::Number(5.0))
            .unwrap();
        system
            .set_field_value("c", FieldValue::Number(15.0))
            .unwrap();

        let calc = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Maximum,
            fields: vec!["a".to_string(), "b".to_string(), "c".to_string()],
        };
        system.add_js_calculation("max", calc).unwrap();

        let result = system.engine.get_field_value("max").unwrap();
        assert_eq!(result.to_number(), 15.0);
    }

    #[test]
    fn test_simple_calculate_empty_fields() {
        let mut system = FormCalculationSystem::new();

        let calc = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Sum,
            fields: vec![],
        };
        system.add_js_calculation("empty_sum", calc).unwrap();

        let result = system.engine.get_field_value("empty_sum").unwrap();
        assert_eq!(result.to_number(), 0.0);
    }

    #[test]
    fn test_percent_calculate_percentage_of() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("base", FieldValue::Number(200.0))
            .unwrap();
        system
            .set_field_value("value", FieldValue::Number(50.0))
            .unwrap();

        let calc = JavaScriptCalculation::PercentCalculate {
            base_field: "base".to_string(),
            percent_field: "value".to_string(),
            mode: PercentMode::PercentageOf,
        };
        system.add_js_calculation("percentage", calc).unwrap();

        let result = system.engine.get_field_value("percentage").unwrap();
        assert_eq!(result.to_number(), 25.0);
    }

    #[test]
    fn test_percent_calculate_percentage_of_zero_base() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("base", FieldValue::Number(0.0))
            .unwrap();
        system
            .set_field_value("value", FieldValue::Number(50.0))
            .unwrap();

        let calc = JavaScriptCalculation::PercentCalculate {
            base_field: "base".to_string(),
            percent_field: "value".to_string(),
            mode: PercentMode::PercentageOf,
        };
        system.add_js_calculation("percentage", calc).unwrap();

        let result = system.engine.get_field_value("percentage").unwrap();
        assert_eq!(result.to_number(), 0.0);
    }

    #[test]
    fn test_percent_calculate_add_percent() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("base", FieldValue::Number(100.0))
            .unwrap();
        system
            .set_field_value("percent", FieldValue::Number(10.0))
            .unwrap();

        let calc = JavaScriptCalculation::PercentCalculate {
            base_field: "base".to_string(),
            percent_field: "percent".to_string(),
            mode: PercentMode::AddPercent,
        };
        system.add_js_calculation("with_tax", calc).unwrap();

        let result = system.engine.get_field_value("with_tax").unwrap();
        assert!((result.to_number() - 110.0).abs() < 0.0001);
    }

    #[test]
    fn test_percent_calculate_subtract_percent() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("base", FieldValue::Number(100.0))
            .unwrap();
        system
            .set_field_value("percent", FieldValue::Number(20.0))
            .unwrap();

        let calc = JavaScriptCalculation::PercentCalculate {
            base_field: "base".to_string(),
            percent_field: "percent".to_string(),
            mode: PercentMode::SubtractPercent,
        };
        system.add_js_calculation("discount", calc).unwrap();

        let result = system.engine.get_field_value("discount").unwrap();
        assert_eq!(result.to_number(), 80.0);
    }

    #[test]
    fn test_range_calculate_min_only() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("value", FieldValue::Number(-10.0))
            .unwrap();

        let calc = JavaScriptCalculation::RangeCalculate {
            field: "value".to_string(),
            min: Some(0.0),
            max: None,
        };
        system.add_js_calculation("clamped", calc).unwrap();

        let result = system.engine.get_field_value("clamped").unwrap();
        assert_eq!(result.to_number(), 0.0);
    }

    #[test]
    fn test_range_calculate_max_only() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("value", FieldValue::Number(150.0))
            .unwrap();

        let calc = JavaScriptCalculation::RangeCalculate {
            field: "value".to_string(),
            min: None,
            max: Some(100.0),
        };
        system.add_js_calculation("clamped", calc).unwrap();

        let result = system.engine.get_field_value("clamped").unwrap();
        assert_eq!(result.to_number(), 100.0);
    }

    #[test]
    fn test_range_calculate_no_limits() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("value", FieldValue::Number(999.0))
            .unwrap();

        let calc = JavaScriptCalculation::RangeCalculate {
            field: "value".to_string(),
            min: None,
            max: None,
        };
        system.add_js_calculation("passthrough", calc).unwrap();

        let result = system.engine.get_field_value("passthrough").unwrap();
        assert_eq!(result.to_number(), 999.0);
    }

    #[test]
    fn test_number_calculate() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("value", FieldValue::Number(123.456789))
            .unwrap();

        let calc = JavaScriptCalculation::NumberCalculate {
            field: "value".to_string(),
            decimals: 2,
            sep_style: SeparatorStyle::CommaPeriod,
            currency: Some("$".to_string()),
        };
        system.add_js_calculation("formatted", calc).unwrap();

        let result = system.engine.get_field_value("formatted").unwrap();
        assert!((result.to_number() - 123.46).abs() < 0.001);
    }

    #[test]
    fn test_date_calculate() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("start_date", FieldValue::Text("2024-01-01".to_string()))
            .unwrap();
        system
            .set_field_value("days", FieldValue::Number(10.0))
            .unwrap();

        let calc = JavaScriptCalculation::DateCalculate {
            start_date_field: "start_date".to_string(),
            days_field: Some("days".to_string()),
            format: "%Y-%m-%d".to_string(),
        };
        system.add_js_calculation("end_date", calc).unwrap();

        let result = system.engine.get_field_value("end_date").unwrap();
        assert_eq!(result.to_string(), "2024-01-11");
    }

    #[test]
    fn test_date_calculate_invalid_date() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("start_date", FieldValue::Text("invalid".to_string()))
            .unwrap();

        let calc = JavaScriptCalculation::DateCalculate {
            start_date_field: "start_date".to_string(),
            days_field: None,
            format: "%Y-%m-%d".to_string(),
        };
        system.add_js_calculation("end_date", calc).unwrap();

        let result = system.engine.get_field_value("end_date").unwrap();
        assert_eq!(result.to_string(), "");
    }

    #[test]
    fn test_date_calculate_no_days_field() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("start_date", FieldValue::Text("2024-06-15".to_string()))
            .unwrap();

        let calc = JavaScriptCalculation::DateCalculate {
            start_date_field: "start_date".to_string(),
            days_field: None,
            format: "%Y-%m-%d".to_string(),
        };
        system.add_js_calculation("end_date", calc).unwrap();

        let result = system.engine.get_field_value("end_date").unwrap();
        assert_eq!(result.to_string(), "2024-06-15");
    }

    #[test]
    fn test_custom_script_addition() {
        let mut system = FormCalculationSystem::new();
        system
            .set_field_value("a", FieldValue::Number(10.0))
            .unwrap();
        system
            .set_field_value("b", FieldValue::Number(20.0))
            .unwrap();

        let calc = JavaScriptCalculation::Custom {
            script: "a + b".to_string(),
            dependencies: vec!["a".to_string(), "b".to_string()],
        };
        system.add_js_calculation("custom_result", calc).unwrap();

        let result = system.engine.get_field_value("custom_result").unwrap();
        assert_eq!(result.to_number(), 30.0);
    }

    #[test]
    fn test_custom_script_unsupported() {
        let mut system = FormCalculationSystem::new();

        let calc = JavaScriptCalculation::Custom {
            script: "some unsupported script".to_string(),
            dependencies: vec![],
        };
        system.add_js_calculation("unsupported", calc).unwrap();

        let result = system.engine.get_field_value("unsupported").unwrap();
        // Should return Empty for unsupported scripts
        assert_eq!(result.to_number(), 0.0);
    }

    #[test]
    fn test_self_reference_detection() {
        let mut system = FormCalculationSystem::new();

        let calc = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Sum,
            fields: vec!["selfField".to_string()],
        };
        let result = system.add_js_calculation("selfField", calc);

        assert!(result.is_err());
    }

    #[test]
    fn test_field_format_number() {
        let mut system = FormCalculationSystem::new();

        system.set_field_format(
            "price",
            FieldFormat::Number {
                decimals: 2,
                separator: SeparatorStyle::CommaPeriod,
                negative_style: NegativeStyle::MinusBlack,
                currency: Some("$".to_string()),
            },
        );

        // Set up a calculation that uses the format
        system
            .set_field_value("raw_price", FieldValue::Number(123.456))
            .unwrap();

        let calc = JavaScriptCalculation::NumberCalculate {
            field: "raw_price".to_string(),
            decimals: 2,
            sep_style: SeparatorStyle::CommaPeriod,
            currency: Some("$".to_string()),
        };
        system.add_js_calculation("price", calc).unwrap();

        let summary = system.get_summary();
        assert_eq!(summary.formatted_fields, 1);
    }

    #[test]
    fn test_field_format_percent() {
        let mut system = FormCalculationSystem::new();

        system.set_field_format("rate", FieldFormat::Percent { decimals: 1 });

        let summary = system.get_summary();
        assert_eq!(summary.formatted_fields, 1);
    }

    #[test]
    fn test_apply_format_number() {
        let system = FormCalculationSystem::new();

        let format = FieldFormat::Number {
            decimals: 2,
            separator: SeparatorStyle::CommaPeriod,
            negative_style: NegativeStyle::MinusBlack,
            currency: None,
        };

        let result = system
            .apply_format(FieldValue::Number(123.456789), &format)
            .unwrap();
        assert!((result.to_number() - 123.46).abs() < 0.001);
    }

    #[test]
    fn test_apply_format_percent() {
        let system = FormCalculationSystem::new();

        let format = FieldFormat::Percent { decimals: 1 };

        let result = system
            .apply_format(FieldValue::Number(0.5), &format)
            .unwrap();
        assert!(result.to_string().contains("50"));
    }

    #[test]
    fn test_get_recent_events() {
        let mut system = FormCalculationSystem::new();

        for i in 0..10 {
            system
                .set_field_value(format!("field{}", i), FieldValue::Number(i as f64))
                .unwrap();
        }

        let recent = system.get_recent_events(5);
        assert_eq!(recent.len(), 5);
    }

    #[test]
    fn test_get_recent_events_more_than_available() {
        let mut system = FormCalculationSystem::new();

        system
            .set_field_value("field1", FieldValue::Number(1.0))
            .unwrap();
        system
            .set_field_value("field2", FieldValue::Number(2.0))
            .unwrap();

        let recent = system.get_recent_events(100);
        assert_eq!(recent.len(), 2);
    }

    #[test]
    fn test_clear_events() {
        let mut system = FormCalculationSystem::new();

        system
            .set_field_value("field1", FieldValue::Number(1.0))
            .unwrap();
        assert!(!system.events.is_empty());

        system.clear_events();
        assert!(system.events.is_empty());
    }

    #[test]
    fn test_to_pdf_dict() {
        let mut system = FormCalculationSystem::new();

        let calc = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Sum,
            fields: vec!["a".to_string(), "b".to_string()],
        };
        system.add_js_calculation("total", calc).unwrap();

        let dict = system.to_pdf_dict();
        assert!(dict.get("CO").is_some());
    }

    #[test]
    fn test_to_pdf_dict_empty() {
        let system = FormCalculationSystem::new();
        let dict = system.to_pdf_dict();
        assert!(dict.get("CO").is_none());
    }

    #[test]
    fn test_calculation_system_summary_display() {
        let summary = CalculationSystemSummary {
            total_fields: 10,
            js_calculations: 5,
            formatted_fields: 3,
            events_logged: 20,
        };

        let display = format!("{}", summary);
        assert!(display.contains("Total fields: 10"));
        assert!(display.contains("JavaScript calculations: 5"));
        assert!(display.contains("Formatted fields: 3"));
        assert!(display.contains("Events logged: 20"));
    }

    #[test]
    fn test_auto_recalculate_disabled() {
        let settings = CalculationSettings {
            auto_recalculate: false,
            ..Default::default()
        };
        let mut system = FormCalculationSystem::with_settings(settings);

        system
            .set_field_value("a", FieldValue::Number(10.0))
            .unwrap();
        system
            .set_field_value("b", FieldValue::Number(20.0))
            .unwrap();

        let calc = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Sum,
            fields: vec!["a".to_string(), "b".to_string()],
        };
        system.add_js_calculation("sum", calc).unwrap();

        // Now change a field - sum should NOT auto-update since auto_recalculate is false
        system
            .set_field_value("a", FieldValue::Number(50.0))
            .unwrap();

        // Manual check - the sum was calculated at add time, but not recalculated
        let result = system.engine.get_field_value("sum").unwrap();
        assert_eq!(result.to_number(), 30.0); // Still 10 + 20 from initial calculation
    }

    #[test]
    fn test_log_events_disabled() {
        let settings = CalculationSettings {
            log_events: false,
            ..Default::default()
        };
        let mut system = FormCalculationSystem::with_settings(settings);

        system
            .set_field_value("field1", FieldValue::Number(1.0))
            .unwrap();
        system
            .set_field_value("field2", FieldValue::Number(2.0))
            .unwrap();

        assert!(system.events.is_empty());
    }

    #[test]
    fn test_separator_style_variants() {
        assert_eq!(SeparatorStyle::CommaPeriod, SeparatorStyle::CommaPeriod);
        assert_eq!(SeparatorStyle::PeriodComma, SeparatorStyle::PeriodComma);
        assert_eq!(SeparatorStyle::SpacePeriod, SeparatorStyle::SpacePeriod);
        assert_eq!(
            SeparatorStyle::ApostrophePeriod,
            SeparatorStyle::ApostrophePeriod
        );
        assert_eq!(SeparatorStyle::None, SeparatorStyle::None);
    }

    #[test]
    fn test_negative_style_variants() {
        assert_eq!(NegativeStyle::MinusBlack, NegativeStyle::MinusBlack);
        assert_eq!(NegativeStyle::RedParentheses, NegativeStyle::RedParentheses);
        assert_eq!(
            NegativeStyle::BlackParentheses,
            NegativeStyle::BlackParentheses
        );
        assert_eq!(NegativeStyle::MinusRed, NegativeStyle::MinusRed);
    }

    #[test]
    fn test_special_format_variants() {
        assert_eq!(SpecialFormat::ZipCode, SpecialFormat::ZipCode);
        assert_eq!(SpecialFormat::ZipCodePlus4, SpecialFormat::ZipCodePlus4);
        assert_eq!(SpecialFormat::PhoneNumber, SpecialFormat::PhoneNumber);
        assert_eq!(SpecialFormat::SSN, SpecialFormat::SSN);
    }

    #[test]
    fn test_simple_operation_variants() {
        assert_eq!(SimpleOperation::Sum, SimpleOperation::Sum);
        assert_eq!(SimpleOperation::Product, SimpleOperation::Product);
        assert_eq!(SimpleOperation::Average, SimpleOperation::Average);
        assert_eq!(SimpleOperation::Minimum, SimpleOperation::Minimum);
        assert_eq!(SimpleOperation::Maximum, SimpleOperation::Maximum);
    }

    #[test]
    fn test_percent_mode_variants() {
        assert_eq!(PercentMode::PercentOf, PercentMode::PercentOf);
        assert_eq!(PercentMode::PercentageOf, PercentMode::PercentageOf);
        assert_eq!(PercentMode::AddPercent, PercentMode::AddPercent);
        assert_eq!(PercentMode::SubtractPercent, PercentMode::SubtractPercent);
    }

    #[test]
    fn test_event_type_variants() {
        assert_eq!(EventType::ValueChanged, EventType::ValueChanged);
        assert_eq!(
            EventType::CalculationTriggered,
            EventType::CalculationTriggered
        );
        assert_eq!(EventType::ValidationFailed, EventType::ValidationFailed);
        assert_eq!(EventType::FormatApplied, EventType::FormatApplied);
        assert_eq!(EventType::DependencyUpdated, EventType::DependencyUpdated);
    }

    #[test]
    fn test_recalculate_dependent_fields() {
        let mut system = FormCalculationSystem::new();

        // Set up initial values
        system
            .set_field_value("base", FieldValue::Number(100.0))
            .unwrap();

        // Add a calculation that depends on base
        let calc = JavaScriptCalculation::SimpleCalculate {
            operation: SimpleOperation::Sum,
            fields: vec!["base".to_string()],
        };
        system.add_js_calculation("derived", calc).unwrap();

        // Verify initial calculation
        let initial = system.engine.get_field_value("derived").unwrap();
        assert_eq!(initial.to_number(), 100.0);

        // Change base - derived should auto-update
        system
            .set_field_value("base", FieldValue::Number(200.0))
            .unwrap();

        let updated = system.engine.get_field_value("derived").unwrap();
        assert_eq!(updated.to_number(), 200.0);
    }

    #[test]
    fn test_field_format_date() {
        let mut system = FormCalculationSystem::new();

        system.set_field_format(
            "date_field",
            FieldFormat::Date {
                format: "%Y-%m-%d".to_string(),
            },
        );

        let summary = system.get_summary();
        assert_eq!(summary.formatted_fields, 1);
    }

    #[test]
    fn test_field_format_time() {
        let mut system = FormCalculationSystem::new();

        system.set_field_format(
            "time_field",
            FieldFormat::Time {
                format: "%H:%M:%S".to_string(),
            },
        );

        let summary = system.get_summary();
        assert_eq!(summary.formatted_fields, 1);
    }

    #[test]
    fn test_field_format_special() {
        let mut system = FormCalculationSystem::new();

        system.set_field_format(
            "ssn_field",
            FieldFormat::Special {
                format_type: SpecialFormat::SSN,
            },
        );

        let summary = system.get_summary();
        assert_eq!(summary.formatted_fields, 1);
    }

    #[test]
    fn test_field_format_custom() {
        let mut system = FormCalculationSystem::new();

        system.set_field_format(
            "custom_field",
            FieldFormat::Custom {
                format_string: "###-###".to_string(),
            },
        );

        let summary = system.get_summary();
        assert_eq!(summary.formatted_fields, 1);
    }

    #[test]
    fn test_apply_format_passthrough() {
        let system = FormCalculationSystem::new();

        // Date format should pass through the value unchanged in current implementation
        let format = FieldFormat::Date {
            format: "%Y-%m-%d".to_string(),
        };

        let result = system
            .apply_format(FieldValue::Text("2024-01-01".to_string()), &format)
            .unwrap();
        assert_eq!(result.to_string(), "2024-01-01");
    }
}