ferro-cli 0.2.1

CLI for scaffolding Ferro web applications
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
//! validate:contracts command - Validate Inertia frontend/backend prop contracts
//!
//! Compares Rust InertiaProps structs with TypeScript interfaces to detect:
//! - Missing fields in either direction
//! - Type mismatches between Rust and TypeScript
//! - Nullability mismatches (Option vs required)

use console::style;
use regex::Regex;
use serde::Serialize;
use std::collections::{HashMap, HashSet};
use std::fs;
use std::path::Path;

/// Result of contract validation
#[derive(Debug, Serialize)]
pub struct ContractValidationResult {
    /// ISO 8601 timestamp of when validation ran
    #[serde(skip_serializing_if = "Option::is_none")]
    pub timestamp: Option<String>,
    /// Ferro CLI version
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ferro_version: Option<String>,
    pub total_routes: usize,
    pub validated: usize,
    pub passed: usize,
    pub failed: usize,
    pub skipped: usize,
    pub validations: Vec<RouteValidation>,
    pub summary: Vec<String>,
}

/// Validation result for a single route
#[derive(Debug, Serialize)]
pub struct RouteValidation {
    pub route: String,
    pub component: String,
    pub status: ValidationStatus,
    pub rust_props: Option<PropsInfo>,
    pub typescript_props: Option<PropsInfo>,
    pub mismatches: Vec<Mismatch>,
}

/// Information about props from either Rust or TypeScript
#[derive(Debug, Serialize, Clone)]
pub struct PropsInfo {
    pub name: String,
    pub fields: Vec<PropField>,
    pub source_file: String,
}

/// A single field in props
#[derive(Debug, Serialize, Clone)]
pub struct PropField {
    pub name: String,
    pub field_type: String,
    pub optional: bool,
    /// Nested fields for complex types (objects/structs)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub nested: Option<Vec<PropField>>,
}

/// Validation status for a route
#[derive(Debug, Serialize, Clone, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
pub enum ValidationStatus {
    Passed,
    Failed,
    Skipped,
}

/// A mismatch between frontend and backend
#[derive(Debug, Serialize)]
pub struct Mismatch {
    pub kind: MismatchKind,
    pub field: String,
    pub details: String,
}

/// Type of mismatch
#[derive(Debug, Serialize, Clone, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
#[allow(dead_code)] // TypeMismatch reserved for type comparison
pub enum MismatchKind {
    MissingInBackend,
    MissingInFrontend,
    TypeMismatch,
    NullabilityMismatch,
    StructureMismatch,
}

/// Execute contract validation
pub fn execute(
    project_path: &Path,
    route_filter: Option<&str>,
) -> Result<ContractValidationResult, String> {
    let mut validations = Vec::new();
    let mut passed = 0;
    let mut failed = 0;
    let mut skipped = 0;

    // Parse routes and their handlers
    let routes = parse_routes_with_components(project_path)?;

    for (route, handler, component) in &routes {
        // Apply filter if provided
        if let Some(filter) = route_filter {
            if !route.contains(filter) && !component.contains(filter) {
                continue;
            }
        }

        let validation = validate_route(project_path, route, handler, component);

        match validation.status {
            ValidationStatus::Passed => passed += 1,
            ValidationStatus::Failed => failed += 1,
            ValidationStatus::Skipped => skipped += 1,
        }

        validations.push(validation);
    }

    let total_routes = validations.len();
    let validated = passed + failed;

    // Generate summary
    let mut summary = Vec::new();
    if failed > 0 {
        summary.push(format!(
            "{failed} contract(s) have mismatches that need attention"
        ));
    }
    if passed > 0 {
        summary.push(format!("{passed} contract(s) validated successfully"));
    }
    if skipped > 0 {
        summary.push(format!(
            "{skipped} route(s) skipped (no props or component found)"
        ));
    }

    Ok(ContractValidationResult {
        timestamp: None,
        ferro_version: None,
        total_routes,
        validated,
        passed,
        failed,
        skipped,
        validations,
        summary,
    })
}

/// Parse routes file to extract route/handler/component mappings
fn parse_routes_with_components(
    project_path: &Path,
) -> Result<Vec<(String, String, String)>, String> {
    let routes_file = project_path.join("src/routes.rs");
    if !routes_file.exists() {
        return Err("src/routes.rs not found".to_string());
    }

    let content =
        fs::read_to_string(&routes_file).map_err(|e| format!("Failed to read routes.rs: {e}"))?;
    let mut routes = Vec::new();

    // Pattern to match route definitions
    let route_pattern = Regex::new(
        r#"(get|post|put|patch|delete)!\s*\(\s*"([^"]+)"\s*,\s*([a-zA-Z_][a-zA-Z0-9_:]*)\s*\)"#,
    )
    .unwrap();

    for cap in route_pattern.captures_iter(&content) {
        let path = cap
            .get(2)
            .map(|m| m.as_str().to_string())
            .unwrap_or_default();
        let handler = cap
            .get(3)
            .map(|m| m.as_str().to_string())
            .unwrap_or_default();

        // Try to find the component this handler renders
        if let Some(component) = find_component_for_handler(project_path, &handler) {
            routes.push((path, handler, component));
        }
    }

    Ok(routes)
}

/// Find the Inertia component that a handler renders
fn find_component_for_handler(project_path: &Path, handler: &str) -> Option<String> {
    let parts: Vec<&str> = handler.split("::").collect();
    if parts.len() < 2 {
        return None;
    }

    let file_parts: Vec<&str> = parts[..parts.len() - 1].to_vec();
    let file_path = project_path
        .join("src")
        .join(file_parts.join("/"))
        .with_extension("rs");

    if !file_path.exists() {
        return None;
    }

    let content = fs::read_to_string(&file_path).ok()?;
    let function_name = parts.last()?;

    // Find the inertia_response! call in the handler
    let inertia_pattern = Regex::new(&format!(
        r#"fn\s+{function_name}\s*\([^)]*\)[^{{]*\{{[^}}]*inertia_response!\s*\(\s*"([^"]+)""#
    ))
    .ok()?;

    if let Some(cap) = inertia_pattern.captures(&content) {
        return cap.get(1).map(|m| m.as_str().to_string());
    }

    // Fallback: search for any inertia_response! after the function definition
    let func_start = content.find(&format!("fn {function_name}"))?;
    let after_func = &content[func_start..];

    let simple_pattern = Regex::new(r#"inertia_response!\s*\(\s*"([^"]+)""#).ok()?;
    if let Some(cap) = simple_pattern.captures(after_func) {
        return cap.get(1).map(|m| m.as_str().to_string());
    }

    None
}

/// Validate a single route
fn validate_route(
    project_path: &Path,
    route: &str,
    handler: &str,
    component: &str,
) -> RouteValidation {
    // Extract Rust props from handler
    let rust_props = extract_rust_props(project_path, handler);

    // Extract TypeScript props from component
    let typescript_props = extract_typescript_props(project_path, component);

    // If we can't find either, skip validation
    if rust_props.is_none() || typescript_props.is_none() {
        return RouteValidation {
            route: route.to_string(),
            component: component.to_string(),
            status: ValidationStatus::Skipped,
            rust_props,
            typescript_props,
            mismatches: vec![],
        };
    }

    let rust = rust_props.as_ref().unwrap();
    let ts = typescript_props.as_ref().unwrap();

    // Compare fields
    let mismatches = compare_props(rust, ts);

    let status = if mismatches.is_empty() {
        ValidationStatus::Passed
    } else {
        ValidationStatus::Failed
    };

    RouteValidation {
        route: route.to_string(),
        component: component.to_string(),
        status,
        rust_props,
        typescript_props,
        mismatches,
    }
}

/// Extract Rust props from a handler
fn extract_rust_props(project_path: &Path, handler: &str) -> Option<PropsInfo> {
    let parts: Vec<&str> = handler.split("::").collect();
    if parts.len() < 2 {
        return None;
    }

    let file_parts: Vec<&str> = parts[..parts.len() - 1].to_vec();
    let function_name = parts.last()?;

    let file_path = project_path
        .join("src")
        .join(file_parts.join("/"))
        .with_extension("rs");

    if !file_path.exists() {
        return None;
    }

    let content = fs::read_to_string(&file_path).ok()?;

    // Find the handler function and extract what it returns
    let func_start = content.find(&format!("fn {function_name}"))?;
    let after_func = &content[func_start..];

    // Look for the Props struct being used in inertia_response!
    let props_pattern =
        Regex::new(r#"inertia_response!\s*\(\s*"[^"]+"\s*,\s*([A-Z][a-zA-Z0-9]*)\s*\{"#).ok()?;

    let props_name = if let Some(cap) = props_pattern.captures(after_func) {
        cap.get(1).map(|m| m.as_str().to_string())
    } else {
        None
    };

    // Try to find the Props struct definition
    if let Some(name) = &props_name {
        // Search in the same file or common props locations
        if let Some(props) = find_props_struct(&content, name, &file_path) {
            return Some(props);
        }

        // Search in props module
        let props_file = project_path.join("src/props.rs");
        if props_file.exists() {
            if let Ok(props_content) = fs::read_to_string(&props_file) {
                if let Some(props) = find_props_struct(&props_content, name, &props_file) {
                    return Some(props);
                }
            }
        }
    }

    // Fallback: extract inline struct fields from inertia_response!
    extract_inline_props(after_func, &file_path)
}

/// Find a props struct definition in source code
fn find_props_struct(content: &str, name: &str, source_file: &Path) -> Option<PropsInfo> {
    let struct_pattern = Regex::new(&format!(
        r#"(?:#\[derive\([^\)]*\)\]\s*)*struct\s+{name}\s*\{{\s*([^}}]+)\}}"#
    ))
    .ok()?;

    let cap = struct_pattern.captures(content)?;
    let fields_str = cap.get(1)?.as_str();

    let fields = parse_rust_fields(fields_str);

    Some(PropsInfo {
        name: name.to_string(),
        fields,
        source_file: source_file.to_string_lossy().to_string(),
    })
}

/// Extract inline props from handler code
fn extract_inline_props(handler_code: &str, source_file: &Path) -> Option<PropsInfo> {
    let inline_pattern = Regex::new(r#"([A-Z][a-zA-Z0-9]*)\s*\{\s*([^}]+)\}"#).ok()?;

    for cap in inline_pattern.captures_iter(handler_code) {
        let name = cap.get(1)?.as_str();
        if name.ends_with("Props") || name.ends_with("Detail") || name.ends_with("Summary") {
            let fields_str = cap.get(2)?.as_str();
            let fields = parse_inline_fields(fields_str);

            if !fields.is_empty() {
                return Some(PropsInfo {
                    name: name.to_string(),
                    fields,
                    source_file: source_file.to_string_lossy().to_string(),
                });
            }
        }
    }

    None
}

/// Parse Rust struct fields
fn parse_rust_fields(fields_str: &str) -> Vec<PropField> {
    let mut fields = Vec::new();
    let field_pattern = Regex::new(r#"(?:pub\s+)?(\w+)\s*:\s*([^,\n]+)"#).unwrap();

    for cap in field_pattern.captures_iter(fields_str) {
        let name = cap
            .get(1)
            .map(|m| m.as_str().to_string())
            .unwrap_or_default();
        let field_type = cap
            .get(2)
            .map(|m| m.as_str().trim().to_string())
            .unwrap_or_default();

        // Skip if it looks like a derive attribute or comment
        if name.starts_with('#') || name.starts_with('/') {
            continue;
        }

        let optional = field_type.starts_with("Option<");

        fields.push(PropField {
            name,
            field_type,
            optional,
            nested: None,
        });
    }

    fields
}

/// Parse inline field names from struct instantiation
fn parse_inline_fields(fields_str: &str) -> Vec<PropField> {
    let mut fields = Vec::new();
    let field_pattern = Regex::new(r#"(\w+)\s*:"#).unwrap();

    for cap in field_pattern.captures_iter(fields_str) {
        let name = cap
            .get(1)
            .map(|m| m.as_str().to_string())
            .unwrap_or_default();
        fields.push(PropField {
            name,
            field_type: "unknown".to_string(),
            optional: false,
            nested: None,
        });
    }

    fields
}

/// Extract TypeScript props from a component file
fn extract_typescript_props(project_path: &Path, component: &str) -> Option<PropsInfo> {
    let component_path = project_path
        .join("frontend/src/pages")
        .join(format!("{component}.tsx"));

    if !component_path.exists() {
        return None;
    }

    let content = fs::read_to_string(&component_path).ok()?;

    // Strategy 1: Look for imported Props type usage in function signature
    let func_pattern = Regex::new(
        r#"(?:export\s+default\s+)?function\s+\w+\s*\(\s*\{\s*([^}]+)\s*\}\s*:\s*(\w+)"#,
    )
    .ok()?;

    if let Some(cap) = func_pattern.captures(&content) {
        let destructured = cap.get(1)?.as_str();
        let props_type = cap.get(2)?.as_str();

        let fields = parse_destructured_props(destructured);

        // Also try to find the interface definition
        let mut all_fields = fields;
        if let Some(interface_fields) = find_interface_fields(&content, props_type) {
            let existing_names: HashSet<_> = all_fields.iter().map(|f| f.name.clone()).collect();
            for field in interface_fields {
                if !existing_names.contains(&field.name) {
                    all_fields.push(field);
                }
            }
        }

        // Check imported types from inertia-props.ts
        if let Some(imported_fields) = find_imported_props(project_path, &content, props_type) {
            let existing_names: HashSet<_> = all_fields.iter().map(|f| f.name.clone()).collect();
            for field in imported_fields {
                if !existing_names.contains(&field.name) {
                    all_fields.push(field);
                }
            }
        }

        return Some(PropsInfo {
            name: props_type.to_string(),
            fields: all_fields,
            source_file: component_path.to_string_lossy().to_string(),
        });
    }

    // Strategy 2: Look for interface definition in the file
    let interface_pattern = Regex::new(r#"interface\s+(\w*Props\w*)\s*\{([^}]+)\}"#).ok()?;
    if let Some(cap) = interface_pattern.captures(&content) {
        let name = cap.get(1)?.as_str();
        let fields_str = cap.get(2)?.as_str();

        return Some(PropsInfo {
            name: name.to_string(),
            fields: parse_typescript_interface_fields(fields_str),
            source_file: component_path.to_string_lossy().to_string(),
        });
    }

    None
}

/// Parse destructured props from function signature
fn parse_destructured_props(destructured: &str) -> Vec<PropField> {
    let mut fields = Vec::new();

    for part in destructured.split(',') {
        let part = part.trim();
        if part.is_empty() {
            continue;
        }

        let name = part
            .split(':')
            .next()
            .unwrap_or(part)
            .split('=')
            .next()
            .unwrap_or(part)
            .trim()
            .to_string();

        if !name.is_empty() && !name.starts_with("...") {
            fields.push(PropField {
                name,
                field_type: "unknown".to_string(),
                optional: part.contains('='),
                nested: None,
            });
        }
    }

    fields
}

/// Find interface fields in content
fn find_interface_fields(content: &str, props_type: &str) -> Option<Vec<PropField>> {
    let pattern = Regex::new(&format!(
        r#"interface\s+{}\s*(?:extends\s+[^{{]+)?\{{\s*([^}}]+)\}}"#,
        regex::escape(props_type)
    ))
    .ok()?;

    let cap = pattern.captures(content)?;
    let fields_str = cap.get(1)?.as_str();

    Some(parse_typescript_interface_fields(fields_str))
}

/// Find imported props from types files
fn find_imported_props(
    project_path: &Path,
    content: &str,
    props_type: &str,
) -> Option<Vec<PropField>> {
    let pattern_str = format!(
        r#"import\s*\{{[^}}]*\b{}\b[^}}]*\}}\s*from\s*['"]([^'"]+)['"]"#,
        regex::escape(props_type)
    );
    let import_pattern = Regex::new(&pattern_str).ok()?;

    let cap = import_pattern.captures(content)?;
    let import_path = cap.get(1)?.as_str();

    let types_file = if import_path.contains("inertia-props") {
        project_path.join("frontend/src/types/inertia-props.ts")
    } else if import_path.contains("shared") {
        project_path.join("frontend/src/types/shared.ts")
    } else {
        return None;
    };

    if !types_file.exists() {
        return None;
    }

    let types_content = fs::read_to_string(&types_file).ok()?;
    find_interface_fields(&types_content, props_type)
}

/// Parse TypeScript interface fields with nested structure support
fn parse_typescript_interface_fields(fields_str: &str) -> Vec<PropField> {
    parse_typescript_fields_recursive(fields_str)
}

/// Recursively parse TypeScript fields, handling nested inline objects
fn parse_typescript_fields_recursive(fields_str: &str) -> Vec<PropField> {
    let mut fields = Vec::new();
    let chars = fields_str.chars().peekable();
    let mut current_field = String::new();
    let mut brace_depth = 0;

    for c in chars {
        match c {
            '{' => {
                brace_depth += 1;
                current_field.push(c);
            }
            '}' => {
                brace_depth -= 1;
                current_field.push(c);
            }
            ';' | ',' if brace_depth == 0 => {
                if let Some(field) = parse_single_typescript_field(&current_field) {
                    fields.push(field);
                }
                current_field.clear();
            }
            '\n' if brace_depth == 0 && !current_field.trim().is_empty() => {
                // Handle newline-terminated fields (common in TS)
                if current_field.contains(':') {
                    if let Some(field) = parse_single_typescript_field(&current_field) {
                        fields.push(field);
                    }
                    current_field.clear();
                }
            }
            _ => {
                current_field.push(c);
            }
        }
    }

    // Handle last field if exists
    if !current_field.trim().is_empty() {
        if let Some(field) = parse_single_typescript_field(&current_field) {
            fields.push(field);
        }
    }

    fields
}

/// Parse a single TypeScript field declaration
fn parse_single_typescript_field(field_str: &str) -> Option<PropField> {
    let field_str = field_str.trim();
    if field_str.is_empty() {
        return None;
    }

    // Pattern: name?: { nested } or name?: Type
    let field_pattern = Regex::new(r#"^(\w+)(\?)?:\s*(.+)$"#).ok()?;

    let cap = field_pattern.captures(field_str)?;
    let name = cap.get(1)?.as_str().to_string();
    let optional = cap.get(2).is_some();
    let type_part = cap.get(3)?.as_str().trim();

    // Check if the type is an inline object (starts with { and ends with })
    let (field_type, nested) = if type_part.starts_with('{') && type_part.ends_with('}') {
        // Extract nested object fields
        let inner = &type_part[1..type_part.len() - 1];
        let nested_fields = parse_typescript_fields_recursive(inner);
        if nested_fields.is_empty() {
            ("object".to_string(), None)
        } else {
            ("object".to_string(), Some(nested_fields))
        }
    } else {
        (type_part.to_string(), None)
    };

    Some(PropField {
        name,
        field_type,
        optional,
        nested,
    })
}

/// Compare Rust and TypeScript props
fn compare_props(rust: &PropsInfo, ts: &PropsInfo) -> Vec<Mismatch> {
    compare_fields(&rust.fields, &ts.fields, "")
}

/// Recursively compare fields between Rust and TypeScript
fn compare_fields(rust_fields: &[PropField], ts_fields: &[PropField], path: &str) -> Vec<Mismatch> {
    let mut mismatches = Vec::new();

    let rust_map: HashMap<_, _> = rust_fields.iter().map(|f| (f.name.clone(), f)).collect();
    let ts_map: HashMap<_, _> = ts_fields.iter().map(|f| (f.name.clone(), f)).collect();

    // Build a map of camelCase -> original rust field names for reverse lookup
    let rust_camel_to_snake: HashMap<String, String> = rust_map
        .keys()
        .map(|name| (to_camel_case(name), name.clone()))
        .collect();

    // Check for fields in TypeScript but missing in Rust
    for (name, ts_field) in &ts_map {
        let field_path = if path.is_empty() {
            name.clone()
        } else {
            format!("{path}.{name}")
        };

        // Check if the TS field exists in Rust (direct match or snake_case version)
        let rust_field = rust_map.get(name).or_else(|| {
            rust_camel_to_snake
                .get(name)
                .and_then(|sn| rust_map.get(sn))
        });

        if let Some(rf) = rust_field {
            // Check structural mismatch: TS has nested but Rust doesn't
            if ts_field.nested.is_some() && rf.nested.is_none() {
                mismatches.push(Mismatch {
                    kind: MismatchKind::StructureMismatch,
                    field: field_path.clone(),
                    details: format!(
                        "Frontend expects '{}' to have nested properties but backend sends flat type '{}'",
                        name, rf.field_type
                    ),
                });
            } else if ts_field.nested.is_none() && rf.nested.is_some() {
                mismatches.push(Mismatch {
                    kind: MismatchKind::StructureMismatch,
                    field: field_path.clone(),
                    details: format!(
                        "Backend sends '{}' with nested structure but frontend expects flat type '{}'",
                        name, ts_field.field_type
                    ),
                });
            } else if let (Some(ts_nested), Some(rust_nested)) = (&ts_field.nested, &rf.nested) {
                // Recursively compare nested structures
                mismatches.extend(compare_fields(rust_nested, ts_nested, &field_path));
            }

            // Check nullability mismatch
            if rf.optional && !ts_field.optional && !ts_field.field_type.contains("null") {
                mismatches.push(Mismatch {
                    kind: MismatchKind::NullabilityMismatch,
                    field: field_path,
                    details: format!(
                        "Backend sends Option<{}> but frontend expects non-nullable {}",
                        rf.field_type, ts_field.field_type
                    ),
                });
            }
        } else if !ts_field.optional {
            mismatches.push(Mismatch {
                kind: MismatchKind::MissingInBackend,
                field: field_path,
                details: format!("Frontend expects '{name}' but backend doesn't send it"),
            });
        }
    }

    // Check for fields in Rust but not used in TypeScript
    for name in rust_map.keys() {
        let field_path = if path.is_empty() {
            name.clone()
        } else {
            format!("{path}.{name}")
        };

        if !ts_map.contains_key(name) {
            let camel_name = to_camel_case(name);
            if !ts_map.contains_key(&camel_name) {
                mismatches.push(Mismatch {
                    kind: MismatchKind::MissingInFrontend,
                    field: field_path,
                    details: format!(
                        "Backend sends '{name}' but frontend doesn't use it (might be intentional)"
                    ),
                });
            }
        }
    }

    mismatches
}

/// Convert snake_case to camelCase
fn to_camel_case(s: &str) -> String {
    let mut result = String::with_capacity(s.len());
    let mut capitalize_next = false;

    for c in s.chars() {
        if c == '_' {
            capitalize_next = true;
        } else if capitalize_next {
            result.extend(c.to_uppercase());
            capitalize_next = false;
        } else {
            result.push(c);
        }
    }

    result
}

/// Print validation results to console
fn print_results(result: &ContractValidationResult) {
    if result.validations.is_empty() {
        println!("{}", style("No Inertia routes found to validate.").yellow());
        return;
    }

    // Print header
    println!();
    println!("{}", style("Contract Validation Results").cyan().bold());
    println!("{}", style("=".repeat(50)).dim());
    println!();

    // Print each validation
    for validation in &result.validations {
        let status_icon = match validation.status {
            ValidationStatus::Passed => style("PASS").green(),
            ValidationStatus::Failed => style("FAIL").red(),
            ValidationStatus::Skipped => style("SKIP").yellow(),
        };

        println!(
            "  {} {} -> {}",
            status_icon,
            style(&validation.route).bold(),
            style(&validation.component).dim()
        );

        // Print mismatches for failed validations
        for mismatch in &validation.mismatches {
            let kind_label = match mismatch.kind {
                MismatchKind::MissingInBackend => "missing in backend",
                MismatchKind::MissingInFrontend => "missing in frontend",
                MismatchKind::TypeMismatch => "type mismatch",
                MismatchKind::NullabilityMismatch => "nullability mismatch",
                MismatchKind::StructureMismatch => "structure mismatch",
            };
            println!(
                "       {} {} - {}",
                style("->").red(),
                style(format!("[{kind_label}]")).yellow(),
                mismatch.details
            );
        }
    }

    // Print summary
    println!();
    println!("{}", style("-".repeat(50)).dim());
    println!();

    println!(
        "  {} {} validated, {} passed, {} failed, {} skipped",
        style("Total:").bold(),
        result.validated,
        style(result.passed).green(),
        if result.failed > 0 {
            style(result.failed).red()
        } else {
            style(result.failed).green()
        },
        style(result.skipped).yellow()
    );

    for summary_line in &result.summary {
        println!("  {} {}", style("->").cyan(), summary_line);
    }

    println!();
}

/// Main entry point for the validate:contracts command
pub fn run(filter: Option<String>, json: bool) {
    let project_path = Path::new(".");

    // Validate Ferro project
    let cargo_toml = project_path.join("Cargo.toml");
    if !cargo_toml.exists() {
        eprintln!(
            "{} Not a Ferro project (no Cargo.toml found)",
            style("Error:").red().bold()
        );
        std::process::exit(1);
    }

    // Check for routes.rs
    let routes_rs = project_path.join("src/routes.rs");
    if !routes_rs.exists() {
        eprintln!("{} No src/routes.rs found", style("Error:").red().bold());
        std::process::exit(1);
    }

    if !json {
        println!("{}", style("Validating Inertia contracts...").cyan());
    }

    match execute(project_path, filter.as_deref()) {
        Ok(mut result) => {
            if json {
                // Add metadata for JSON output
                result.timestamp = Some(chrono::Utc::now().to_rfc3339());
                result.ferro_version = Some(env!("CARGO_PKG_VERSION").to_string());

                // Output JSON for programmatic use
                match serde_json::to_string_pretty(&result) {
                    Ok(json_output) => println!("{json_output}"),
                    Err(e) => {
                        eprintln!(
                            "{} Failed to serialize results: {}",
                            style("Error:").red().bold(),
                            e
                        );
                        std::process::exit(1);
                    }
                }
            } else {
                // Human-readable output
                print_results(&result);
            }

            // Exit with error code if any contracts failed
            if result.failed > 0 {
                std::process::exit(1);
            }
        }
        Err(e) => {
            eprintln!("{} {}", style("Error:").red().bold(), e);
            std::process::exit(1);
        }
    }
}

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

    #[test]
    fn test_to_camel_case() {
        assert_eq!(to_camel_case("created_at"), "createdAt");
        assert_eq!(to_camel_case("user_id"), "userId");
        assert_eq!(to_camel_case("some_long_name"), "someLongName");
        assert_eq!(to_camel_case("name"), "name");
    }

    #[test]
    fn test_parse_rust_fields() {
        let fields_str = r#"
            pub id: i64,
            pub name: String,
            pub email: Option<String>,
        "#;

        let fields = parse_rust_fields(fields_str);

        assert_eq!(fields.len(), 3);
        assert_eq!(fields[0].name, "id");
        assert!(!fields[0].optional);
        assert_eq!(fields[1].name, "name");
        assert!(!fields[1].optional);
        assert_eq!(fields[2].name, "email");
        assert!(fields[2].optional);
    }

    #[test]
    fn test_parse_typescript_interface_fields() {
        let fields_str = r#"
            id: number;
            name: string;
            email?: string;
        "#;

        let fields = parse_typescript_interface_fields(fields_str);

        assert_eq!(fields.len(), 3);
        assert_eq!(fields[0].name, "id");
        assert!(!fields[0].optional);
        assert_eq!(fields[1].name, "name");
        assert!(!fields[1].optional);
        assert_eq!(fields[2].name, "email");
        assert!(fields[2].optional);
    }

    #[test]
    fn test_compare_props_missing_in_backend() {
        let rust = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![PropField {
                name: "id".to_string(),
                field_type: "i64".to_string(),
                optional: false,
                nested: None,
            }],
            source_file: "test.rs".to_string(),
        };

        let ts = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![
                PropField {
                    name: "id".to_string(),
                    field_type: "number".to_string(),
                    optional: false,
                    nested: None,
                },
                PropField {
                    name: "name".to_string(),
                    field_type: "string".to_string(),
                    optional: false,
                    nested: None,
                },
            ],
            source_file: "test.tsx".to_string(),
        };

        let mismatches = compare_props(&rust, &ts);

        assert_eq!(mismatches.len(), 1);
        assert_eq!(mismatches[0].kind, MismatchKind::MissingInBackend);
        assert_eq!(mismatches[0].field, "name");
    }

    #[test]
    fn test_compare_props_missing_in_frontend() {
        let rust = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![
                PropField {
                    name: "id".to_string(),
                    field_type: "i64".to_string(),
                    optional: false,
                    nested: None,
                },
                PropField {
                    name: "extra".to_string(),
                    field_type: "String".to_string(),
                    optional: false,
                    nested: None,
                },
            ],
            source_file: "test.rs".to_string(),
        };

        let ts = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![PropField {
                name: "id".to_string(),
                field_type: "number".to_string(),
                optional: false,
                nested: None,
            }],
            source_file: "test.tsx".to_string(),
        };

        let mismatches = compare_props(&rust, &ts);

        assert_eq!(mismatches.len(), 1);
        assert_eq!(mismatches[0].kind, MismatchKind::MissingInFrontend);
        assert_eq!(mismatches[0].field, "extra");
    }

    #[test]
    fn test_compare_props_nullability_mismatch() {
        let rust = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![PropField {
                name: "value".to_string(),
                field_type: "Option<String>".to_string(),
                optional: true,
                nested: None,
            }],
            source_file: "test.rs".to_string(),
        };

        let ts = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![PropField {
                name: "value".to_string(),
                field_type: "string".to_string(),
                optional: false,
                nested: None,
            }],
            source_file: "test.tsx".to_string(),
        };

        let mismatches = compare_props(&rust, &ts);

        assert_eq!(mismatches.len(), 1);
        assert_eq!(mismatches[0].kind, MismatchKind::NullabilityMismatch);
    }

    #[test]
    fn test_compare_props_camel_case_matching() {
        let rust = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![PropField {
                name: "created_at".to_string(),
                field_type: "String".to_string(),
                optional: false,
                nested: None,
            }],
            source_file: "test.rs".to_string(),
        };

        let ts = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![PropField {
                name: "createdAt".to_string(),
                field_type: "string".to_string(),
                optional: false,
                nested: None,
            }],
            source_file: "test.tsx".to_string(),
        };

        let mismatches = compare_props(&rust, &ts);

        // Should match snake_case to camelCase - no mismatches
        assert!(mismatches.is_empty());
    }

    #[test]
    fn test_parse_destructured_props() {
        let destructured = "id, name, email = ''";
        let fields = parse_destructured_props(destructured);

        assert_eq!(fields.len(), 3);
        assert_eq!(fields[0].name, "id");
        assert!(!fields[0].optional);
        assert_eq!(fields[1].name, "name");
        assert!(!fields[1].optional);
        assert_eq!(fields[2].name, "email");
        assert!(fields[2].optional);
    }

    #[test]
    fn test_parse_inline_fields() {
        let fields_str = "id: user.id, name: user.name, active: true";
        let fields = parse_inline_fields(fields_str);

        assert_eq!(fields.len(), 3);
        assert_eq!(fields[0].name, "id");
        assert_eq!(fields[1].name, "name");
        assert_eq!(fields[2].name, "active");
    }

    #[test]
    fn test_parse_typescript_nested_fields() {
        let fields_str = r#"
            id: number;
            application: { id: number; name: string };
        "#;

        let fields = parse_typescript_interface_fields(fields_str);

        assert_eq!(fields.len(), 2);
        assert_eq!(fields[0].name, "id");
        assert!(fields[0].nested.is_none());

        assert_eq!(fields[1].name, "application");
        assert!(fields[1].nested.is_some());
        let nested = fields[1].nested.as_ref().unwrap();
        assert_eq!(nested.len(), 2);
        assert_eq!(nested[0].name, "id");
        assert_eq!(nested[1].name, "name");
    }

    #[test]
    fn test_compare_structure_mismatch_ts_nested_rust_flat() {
        // TypeScript expects nested structure
        let ts = PropsInfo {
            name: "ShowProps".to_string(),
            fields: vec![PropField {
                name: "application".to_string(),
                field_type: "object".to_string(),
                optional: false,
                nested: Some(vec![PropField {
                    name: "animal".to_string(),
                    field_type: "Animal".to_string(),
                    optional: false,
                    nested: None,
                }]),
            }],
            source_file: "test.tsx".to_string(),
        };

        // Rust sends flat structure (no nesting info)
        let rust = PropsInfo {
            name: "ShowProps".to_string(),
            fields: vec![PropField {
                name: "application".to_string(),
                field_type: "ApplicationDetail".to_string(),
                optional: false,
                nested: None,
            }],
            source_file: "test.rs".to_string(),
        };

        let mismatches = compare_props(&rust, &ts);

        // Should detect structure mismatch
        assert_eq!(mismatches.len(), 1);
        assert_eq!(mismatches[0].kind, MismatchKind::StructureMismatch);
        assert_eq!(mismatches[0].field, "application");
    }

    #[test]
    fn test_compare_structure_matching_nested() {
        // Both have matching nested structure
        let ts = PropsInfo {
            name: "ShowProps".to_string(),
            fields: vec![PropField {
                name: "application".to_string(),
                field_type: "object".to_string(),
                optional: false,
                nested: Some(vec![PropField {
                    name: "id".to_string(),
                    field_type: "number".to_string(),
                    optional: false,
                    nested: None,
                }]),
            }],
            source_file: "test.tsx".to_string(),
        };

        let rust = PropsInfo {
            name: "ShowProps".to_string(),
            fields: vec![PropField {
                name: "application".to_string(),
                field_type: "Application".to_string(),
                optional: false,
                nested: Some(vec![PropField {
                    name: "id".to_string(),
                    field_type: "i64".to_string(),
                    optional: false,
                    nested: None,
                }]),
            }],
            source_file: "test.rs".to_string(),
        };

        let mismatches = compare_props(&rust, &ts);

        // No structural mismatches when both have matching nested fields
        assert!(mismatches.is_empty());
    }

    #[test]
    fn test_compare_nested_field_missing() {
        // Both have nested but TS expects field that Rust doesn't have
        let ts = PropsInfo {
            name: "ShowProps".to_string(),
            fields: vec![PropField {
                name: "application".to_string(),
                field_type: "object".to_string(),
                optional: false,
                nested: Some(vec![
                    PropField {
                        name: "id".to_string(),
                        field_type: "number".to_string(),
                        optional: false,
                        nested: None,
                    },
                    PropField {
                        name: "extra".to_string(),
                        field_type: "string".to_string(),
                        optional: false,
                        nested: None,
                    },
                ]),
            }],
            source_file: "test.tsx".to_string(),
        };

        let rust = PropsInfo {
            name: "ShowProps".to_string(),
            fields: vec![PropField {
                name: "application".to_string(),
                field_type: "Application".to_string(),
                optional: false,
                nested: Some(vec![PropField {
                    name: "id".to_string(),
                    field_type: "i64".to_string(),
                    optional: false,
                    nested: None,
                }]),
            }],
            source_file: "test.rs".to_string(),
        };

        let mismatches = compare_props(&rust, &ts);

        // Should detect missing field in nested structure
        assert_eq!(mismatches.len(), 1);
        assert_eq!(mismatches[0].kind, MismatchKind::MissingInBackend);
        assert_eq!(mismatches[0].field, "application.extra");
    }

    #[test]
    fn test_parse_typescript_deeply_nested() {
        let fields_str = r#"
            user: { profile: { avatar: string } };
        "#;

        let fields = parse_typescript_interface_fields(fields_str);

        assert_eq!(fields.len(), 1);
        assert_eq!(fields[0].name, "user");
        assert!(fields[0].nested.is_some());

        let nested = fields[0].nested.as_ref().unwrap();
        assert_eq!(nested.len(), 1);
        assert_eq!(nested[0].name, "profile");
        assert!(nested[0].nested.is_some());

        let deeply_nested = nested[0].nested.as_ref().unwrap();
        assert_eq!(deeply_nested.len(), 1);
        assert_eq!(deeply_nested[0].name, "avatar");
    }

    #[test]
    fn test_parse_typescript_optional_nested() {
        let fields_str = r#"
            data?: { id: number };
        "#;

        let fields = parse_typescript_interface_fields(fields_str);

        assert_eq!(fields.len(), 1);
        assert_eq!(fields[0].name, "data");
        assert!(fields[0].optional);
        assert!(fields[0].nested.is_some());
    }

    #[test]
    fn test_compare_deeply_nested_structure() {
        let ts = PropsInfo {
            name: "Props".to_string(),
            fields: vec![PropField {
                name: "user".to_string(),
                field_type: "object".to_string(),
                optional: false,
                nested: Some(vec![PropField {
                    name: "profile".to_string(),
                    field_type: "object".to_string(),
                    optional: false,
                    nested: Some(vec![PropField {
                        name: "name".to_string(),
                        field_type: "string".to_string(),
                        optional: false,
                        nested: None,
                    }]),
                }]),
            }],
            source_file: "test.tsx".to_string(),
        };

        let rust = PropsInfo {
            name: "Props".to_string(),
            fields: vec![PropField {
                name: "user".to_string(),
                field_type: "User".to_string(),
                optional: false,
                nested: Some(vec![PropField {
                    name: "profile".to_string(),
                    field_type: "Profile".to_string(),
                    optional: false,
                    nested: Some(vec![PropField {
                        name: "name".to_string(),
                        field_type: "String".to_string(),
                        optional: false,
                        nested: None,
                    }]),
                }]),
            }],
            source_file: "test.rs".to_string(),
        };

        let mismatches = compare_props(&rust, &ts);
        assert!(mismatches.is_empty());
    }

    #[test]
    fn test_compare_nested_nullability_mismatch() {
        let ts = PropsInfo {
            name: "Props".to_string(),
            fields: vec![PropField {
                name: "data".to_string(),
                field_type: "object".to_string(),
                optional: false,
                nested: Some(vec![PropField {
                    name: "value".to_string(),
                    field_type: "string".to_string(),
                    optional: false,
                    nested: None,
                }]),
            }],
            source_file: "test.tsx".to_string(),
        };

        let rust = PropsInfo {
            name: "Props".to_string(),
            fields: vec![PropField {
                name: "data".to_string(),
                field_type: "Data".to_string(),
                optional: false,
                nested: Some(vec![PropField {
                    name: "value".to_string(),
                    field_type: "Option<String>".to_string(),
                    optional: true,
                    nested: None,
                }]),
            }],
            source_file: "test.rs".to_string(),
        };

        let mismatches = compare_props(&rust, &ts);

        assert_eq!(mismatches.len(), 1);
        assert_eq!(mismatches[0].kind, MismatchKind::NullabilityMismatch);
        assert_eq!(mismatches[0].field, "data.value");
    }

    #[test]
    fn test_all_fields_match() {
        let rust = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![
                PropField {
                    name: "id".to_string(),
                    field_type: "i64".to_string(),
                    optional: false,
                    nested: None,
                },
                PropField {
                    name: "name".to_string(),
                    field_type: "String".to_string(),
                    optional: false,
                    nested: None,
                },
            ],
            source_file: "test.rs".to_string(),
        };

        let ts = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![
                PropField {
                    name: "id".to_string(),
                    field_type: "number".to_string(),
                    optional: false,
                    nested: None,
                },
                PropField {
                    name: "name".to_string(),
                    field_type: "string".to_string(),
                    optional: false,
                    nested: None,
                },
            ],
            source_file: "test.tsx".to_string(),
        };

        let mismatches = compare_props(&rust, &ts);
        assert!(mismatches.is_empty());
    }

    #[test]
    fn test_multiple_mismatches() {
        let rust = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![
                PropField {
                    name: "id".to_string(),
                    field_type: "i64".to_string(),
                    optional: false,
                    nested: None,
                },
                PropField {
                    name: "extra_field".to_string(),
                    field_type: "String".to_string(),
                    optional: false,
                    nested: None,
                },
            ],
            source_file: "test.rs".to_string(),
        };

        let ts = PropsInfo {
            name: "TestProps".to_string(),
            fields: vec![
                PropField {
                    name: "id".to_string(),
                    field_type: "number".to_string(),
                    optional: false,
                    nested: None,
                },
                PropField {
                    name: "missing_in_rust".to_string(),
                    field_type: "string".to_string(),
                    optional: false,
                    nested: None,
                },
            ],
            source_file: "test.tsx".to_string(),
        };

        let mismatches = compare_props(&rust, &ts);

        // Should have 2 mismatches: missing_in_rust in backend, extra_field in frontend
        assert_eq!(mismatches.len(), 2);

        let missing_backend = mismatches
            .iter()
            .find(|m| m.kind == MismatchKind::MissingInBackend);
        let missing_frontend = mismatches
            .iter()
            .find(|m| m.kind == MismatchKind::MissingInFrontend);

        assert!(missing_backend.is_some());
        assert!(missing_frontend.is_some());
        assert_eq!(missing_backend.unwrap().field, "missing_in_rust");
        assert_eq!(missing_frontend.unwrap().field, "extra_field");
    }
}