ruchy 4.2.0

A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
//! WebAssembly component generation for Ruchy code (RUCHY-0819)
//!
//! Generates WebAssembly components from Ruchy source code with full
//! component model support and interface bindings.
use crate::utils::{read_file_with_context, write_file_with_context};
use anyhow::Result;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::path::{Path, PathBuf};
/// WebAssembly component generated from Ruchy code
#[derive(Debug, Clone)]
pub struct WasmComponent {
    /// Component name
    pub name: String,
    /// Component version
    pub version: String,
    /// Generated WASM bytecode
    pub bytecode: Vec<u8>,
    /// Component metadata
    pub metadata: ComponentMetadata,
    /// Export definitions
    pub exports: Vec<ExportDefinition>,
    /// Import definitions
    pub imports: Vec<ImportDefinition>,
    /// Custom sections
    pub custom_sections: HashMap<String, Vec<u8>>,
}
/// Builder for creating WebAssembly components
pub struct ComponentBuilder {
    /// Configuration for component generation
    config: ComponentConfig,
    /// Source files to compile
    source_files: Vec<PathBuf>,
    /// Additional metadata
    metadata: ComponentMetadata,
    /// Optimization level
    optimization_level: OptimizationLevel,
    /// Debug information inclusion
    include_debug_info: bool,
}
/// Configuration for WebAssembly component generation
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ComponentConfig {
    /// Target architecture
    pub target: TargetArchitecture,
    /// Memory configuration
    pub memory: MemoryConfig,
    /// Feature flags
    pub features: FeatureFlags,
    /// Linking configuration
    pub linking: LinkingConfig,
    /// Optimization settings
    pub optimization: OptimizationConfig,
}
/// Component metadata
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ComponentMetadata {
    /// Component name
    pub name: String,
    /// Component version
    pub version: String,
    /// Component description
    pub description: String,
    /// Author information
    pub author: String,
    /// License
    pub license: String,
    /// Repository URL
    pub repository: Option<String>,
    /// Build timestamp
    pub build_time: std::time::SystemTime,
    /// Custom metadata fields
    pub custom: HashMap<String, String>,
}
/// Export definition for a component
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ExportDefinition {
    /// Export name
    pub name: String,
    /// Export type
    pub export_type: ExportType,
    /// Type signature
    pub signature: TypeSignature,
    /// Documentation
    pub documentation: Option<String>,
}
/// Import definition for a component
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ImportDefinition {
    /// Import module
    pub module: String,
    /// Import name
    pub name: String,
    /// Import type
    pub import_type: ImportType,
    /// Type signature
    pub signature: TypeSignature,
}
/// Types of exports
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum ExportType {
    /// Function export
    Function,
    /// Memory export
    Memory,
    /// Table export
    Table,
    /// Global export
    Global,
    /// Custom export type
    Custom(String),
}
/// Types of imports
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum ImportType {
    /// Function import
    Function,
    /// Memory import
    Memory,
    /// Table import
    Table,
    /// Global import
    Global,
    /// Custom import type
    Custom(String),
}
/// Type signature for exports and imports
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TypeSignature {
    /// Parameter types
    pub params: Vec<WasmType>,
    /// Return types
    pub results: Vec<WasmType>,
    /// Additional type information
    pub metadata: HashMap<String, String>,
}
/// WebAssembly value types
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum WasmType {
    /// 32-bit integer
    I32,
    /// 64-bit integer
    I64,
    /// 32-bit float
    F32,
    /// 64-bit float
    F64,
    /// 128-bit vector
    V128,
    /// Reference type
    Ref(String),
    /// Function reference
    FuncRef,
    /// External reference
    ExternRef,
}
/// Target architecture for WASM generation
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum TargetArchitecture {
    /// Standard WASM32
    Wasm32,
    /// WASM64 (experimental)
    Wasm64,
    /// WASI (WebAssembly System Interface)
    Wasi,
    /// Browser environment
    Browser,
    /// Node.js environment
    NodeJs,
    /// Cloudflare Workers
    CloudflareWorkers,
    /// Custom target
    Custom(String),
}
/// Memory configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MemoryConfig {
    /// Initial memory pages (64KB each)
    pub initial_pages: u32,
    /// Maximum memory pages
    pub maximum_pages: Option<u32>,
    /// Shared memory
    pub shared: bool,
    /// Memory64 proposal
    pub memory64: bool,
}
/// Feature flags for WASM generation
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FeatureFlags {
    /// Enable SIMD instructions
    pub simd: bool,
    /// Enable threads and atomics
    pub threads: bool,
    /// Enable bulk memory operations
    pub bulk_memory: bool,
    /// Enable reference types
    pub reference_types: bool,
    /// Enable multi-value returns
    pub multi_value: bool,
    /// Enable tail calls
    pub tail_call: bool,
    /// Enable exception handling
    pub exceptions: bool,
    /// Enable component model
    pub component_model: bool,
}
/// Linking configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LinkingConfig {
    /// Import modules
    pub imports: Vec<String>,
    /// Export all public functions
    pub export_all: bool,
    /// Custom section preservation
    pub preserve_custom_sections: bool,
    /// Name section generation
    pub generate_names: bool,
}
/// Optimization configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OptimizationConfig {
    /// Optimization level
    pub level: OptimizationLevel,
    /// Size optimization
    pub optimize_size: bool,
    /// Speed optimization
    pub optimize_speed: bool,
    /// Inline threshold
    pub inline_threshold: u32,
    /// Loop unrolling
    pub unroll_loops: bool,
}
/// Optimization levels
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum OptimizationLevel {
    /// No optimization
    None,
    /// Basic optimization
    O1,
    /// Standard optimization
    O2,
    /// Aggressive optimization
    O3,
    /// Size optimization
    Os,
    /// Extreme size optimization
    Oz,
}
impl Default for ComponentConfig {
    fn default() -> Self {
        Self {
            target: TargetArchitecture::Wasm32,
            memory: MemoryConfig::default(),
            features: FeatureFlags::default(),
            linking: LinkingConfig::default(),
            optimization: OptimizationConfig::default(),
        }
    }
}
impl Default for MemoryConfig {
    fn default() -> Self {
        Self {
            initial_pages: 1,
            maximum_pages: None,
            shared: false,
            memory64: false,
        }
    }
}
impl Default for FeatureFlags {
    fn default() -> Self {
        Self {
            simd: false,
            threads: false,
            bulk_memory: true,
            reference_types: true,
            multi_value: true,
            tail_call: false,
            exceptions: false,
            component_model: true,
        }
    }
}
impl Default for LinkingConfig {
    fn default() -> Self {
        Self {
            imports: Vec::new(),
            export_all: false,
            preserve_custom_sections: true,
            generate_names: true,
        }
    }
}
impl Default for OptimizationConfig {
    fn default() -> Self {
        Self {
            level: OptimizationLevel::O2,
            optimize_size: false,
            optimize_speed: true,
            inline_threshold: 100,
            unroll_loops: true,
        }
    }
}
impl Default for ComponentBuilder {
    fn default() -> Self {
        Self::new()
    }
}
impl ComponentBuilder {
    /// Create a new component builder with default config
    /// # Examples
    ///
    /// ```
    /// use ruchy::wasm::component::ComponentBuilder;
    ///
    /// let instance = ComponentBuilder::new();
    /// // Verify behavior
    /// ```
    pub fn new() -> Self {
        Self {
            config: ComponentConfig::default(),
            source_files: Vec::new(),
            metadata: ComponentMetadata::default(),
            optimization_level: OptimizationLevel::O2,
            include_debug_info: false,
        }
    }
    /// Create a new component builder with a specific config
    /// # Examples
    ///
    /// ```
    /// use ruchy::wasm::component::ComponentBuilder;
    ///
    /// let mut instance = ComponentBuilder::new();
    /// let result = instance.new_with_config();
    /// // Verify behavior
    /// ```
    pub fn new_with_config(config: ComponentConfig) -> Self {
        Self {
            config,
            source_files: Vec::new(),
            metadata: ComponentMetadata::default(),
            optimization_level: OptimizationLevel::O2,
            include_debug_info: false,
        }
    }
    /// Add a source file to compile
    /// # Examples
    ///
    /// ```
    /// use ruchy::wasm::component::ComponentBuilder;
    ///
    /// let mut instance = ComponentBuilder::new();
    /// let result = instance.add_source();
    /// // Verify behavior
    /// ```
    pub fn add_source(&mut self, path: impl AsRef<Path>) -> Result<&mut Self> {
        let path = path.as_ref().to_path_buf();
        if !path.exists() {
            return Err(anyhow::anyhow!(
                "Source file does not exist: {}",
                path.display()
            ));
        }
        self.source_files.push(path);
        Ok(self)
    }
    /// Set component metadata
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::with_metadata;
    ///
    /// let result = with_metadata(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn with_metadata(mut self, metadata: ComponentMetadata) -> Self {
        self.metadata = metadata;
        self
    }
    /// Set optimization level
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::with_optimization;
    ///
    /// let result = with_optimization(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn with_optimization(mut self, level: OptimizationLevel) -> Self {
        self.optimization_level = level;
        self
    }
    /// Include debug information
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::with_debug_info;
    ///
    /// let result = with_debug_info(true);
    /// assert_eq!(result, Ok(true));
    /// ```
    pub fn with_debug_info(mut self, include: bool) -> Self {
        self.include_debug_info = include;
        self
    }
    /// Set the configuration
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::with_config;
    ///
    /// let result = with_config(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn with_config(mut self, config: ComponentConfig) -> Self {
        self.config = config;
        self
    }
    /// Add source code directly (for in-memory compilation)
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::with_source;
    ///
    /// let result = with_source(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn with_source(self, _source: String) -> Self {
        // Store source code for later compilation
        // In a real implementation, this would be stored properly
        self
    }
    /// Set metadata name
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::set_name;
    ///
    /// let result = set_name(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn set_name(&mut self, name: String) {
        self.metadata.name = name;
    }
    /// Set metadata version
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::set_version;
    ///
    /// let result = set_version(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn set_version(&mut self, version: String) {
        self.metadata.version = version;
    }
    /// Build the WebAssembly component
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::build;
    ///
    /// let result = build(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn build(&self) -> Result<WasmComponent> {
        // Validate configuration
        self.validate_config()?;
        // Parse source files
        let sources = self.load_sources()?;
        // Compile to WebAssembly
        let bytecode = self.compile_to_wasm(&sources)?;
        // Extract exports and imports
        let (exports, imports) = self.analyze_module(&bytecode)?;
        // Add custom sections
        let custom_sections = self.generate_custom_sections()?;
        Ok(WasmComponent {
            name: self.metadata.name.clone(),
            version: self.metadata.version.clone(),
            bytecode,
            metadata: self.metadata.clone(),
            exports,
            imports,
            custom_sections,
        })
    }
    fn validate_config(&self) -> Result<()> {
        if self.source_files.is_empty() {
            return Err(anyhow::anyhow!("No source files specified"));
        }
        if self.metadata.name.is_empty() {
            return Err(anyhow::anyhow!("Component name is required"));
        }
        Ok(())
    }
    fn load_sources(&self) -> Result<Vec<String>> {
        let mut sources = Vec::new();
        for path in &self.source_files {
            let source = read_file_with_context(path)?;
            sources.push(source);
        }
        Ok(sources)
    }
    fn compile_to_wasm(&self, _sources: &[String]) -> Result<Vec<u8>> {
        // In a real implementation, this would:
        // 1. Parse Ruchy source code
        // 2. Generate intermediate representation
        // 3. Compile to WebAssembly bytecode
        // 4. Apply optimizations
        // For now, return a minimal valid WASM module
        let mut module = vec![
            0x00, 0x61, 0x73, 0x6d, // Magic number
            0x01, 0x00, 0x00, 0x00, // Version 1
        ];
        // Add type section
        module.extend(&[0x01, 0x04, 0x01, 0x60, 0x00, 0x00]); // Empty function type
                                                              // Add function section
        module.extend(&[0x03, 0x02, 0x01, 0x00]); // One function
                                                  // Add export section
        let export_name = "main";
        let name_bytes = export_name.as_bytes();
        module.push(0x07); // Export section
        module.push((name_bytes.len() + 3) as u8);
        module.push(0x01); // One export
        module.push(name_bytes.len() as u8);
        module.extend(name_bytes);
        module.push(0x00); // Function export
        module.push(0x00); // Function index
                           // Add code section
        module.extend(&[0x0a, 0x04, 0x01, 0x02, 0x00, 0x0b]); // Empty function body
        Ok(module)
    }
    fn analyze_module(
        &self,
        _bytecode: &[u8],
    ) -> Result<(Vec<ExportDefinition>, Vec<ImportDefinition>)> {
        // In a real implementation, this would parse the WASM module
        // and extract export/import information
        let exports = vec![ExportDefinition {
            name: "main".to_string(),
            export_type: ExportType::Function,
            signature: TypeSignature {
                params: vec![],
                results: vec![],
                metadata: HashMap::new(),
            },
            documentation: Some("Main entry point".to_string()),
        }];
        let imports = vec![];
        Ok((exports, imports))
    }
    fn generate_custom_sections(&self) -> Result<HashMap<String, Vec<u8>>> {
        let mut sections = HashMap::new();
        // Add name section if requested
        if self.config.linking.generate_names {
            sections.insert("name".to_string(), self.generate_name_section()?);
        }
        // Add producers section
        sections.insert("producers".to_string(), self.generate_producers_section()?);
        Ok(sections)
    }
    fn generate_name_section(&self) -> Result<Vec<u8>> {
        // Generate name section with function and local names
        Ok(vec![])
    }
    fn generate_producers_section(&self) -> Result<Vec<u8>> {
        // Generate producers section with tool information
        let producer = format!("ruchy {}", env!("CARGO_PKG_VERSION"));
        Ok(producer.as_bytes().to_vec())
    }
    /// Build a dry-run component (for testing without actual compilation)
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::build_dry_run;
    ///
    /// let result = build_dry_run(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn build_dry_run(&self) -> Result<WasmComponent> {
        // Create a minimal component with dummy bytecode for dry-run
        let bytecode = vec![
            0x00, 0x61, 0x73, 0x6d, // WASM magic number
            0x01, 0x00, 0x00, 0x00, // WASM version 1
            // Minimal valid module structure
            0x00, // Empty module (no sections)
        ];
        Ok(WasmComponent {
            name: self.metadata.name.clone(),
            version: self.metadata.version.clone(),
            bytecode,
            metadata: self.metadata.clone(),
            exports: vec![ExportDefinition {
                name: "main".to_string(),
                export_type: ExportType::Function,
                signature: TypeSignature {
                    params: vec![],
                    results: vec![],
                    metadata: HashMap::new(),
                },
                documentation: Some("Dry-run main entry point".to_string()),
            }],
            imports: vec![],
            custom_sections: HashMap::new(),
        })
    }
}
impl WasmComponent {
    /// Save the component to a file
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::save;
    ///
    /// let result = save(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn save(&self, path: impl AsRef<Path>) -> Result<()> {
        let path = path.as_ref();
        write_file_with_context(path, std::str::from_utf8(&self.bytecode)?)?;
        Ok(())
    }
    /// Get the size of the component in bytes
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::size;
    ///
    /// let result = size(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn size(&self) -> usize {
        self.bytecode.len()
    }
    /// Validate the component
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::validate;
    ///
    /// let result = validate(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn validate(&self) -> Result<()> {
        // In a real implementation, this would use wasmparser to validate
        if self.bytecode.len() < 8 {
            return Err(anyhow::anyhow!("Invalid WASM module: too small"));
        }
        // Check magic number
        if self.bytecode[0..4] != [0x00, 0x61, 0x73, 0x6d] {
            return Err(anyhow::anyhow!("Invalid WASM module: wrong magic number"));
        }
        Ok(())
    }
    /// Verify the component (alias for validate)
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::verify;
    ///
    /// let result = verify(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn verify(&self) -> Result<()> {
        self.validate()
    }
    /// Get a summary of the component
    /// # Examples
    ///
    /// ```ignore
    /// use ruchy::wasm::component::summary;
    ///
    /// let result = summary(());
    /// assert_eq!(result, Ok(()));
    /// ```
    pub fn summary(&self) -> ComponentSummary {
        ComponentSummary {
            name: self.name.clone(),
            version: self.version.clone(),
            size: self.size(),
            exports_count: self.exports.len(),
            imports_count: self.imports.len(),
            has_debug_info: self.custom_sections.contains_key("name"),
        }
    }
}
/// Summary information about a component
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ComponentSummary {
    /// Component name
    pub name: String,
    /// Component version
    pub version: String,
    /// Size in bytes
    pub size: usize,
    /// Number of exports
    pub exports_count: usize,
    /// Number of imports
    pub imports_count: usize,
    /// Whether debug info is included
    pub has_debug_info: bool,
}
impl Default for ComponentMetadata {
    fn default() -> Self {
        Self {
            name: String::new(),
            version: "0.1.0".to_string(),
            description: String::new(),
            author: String::new(),
            license: "MIT".to_string(),
            repository: None,
            build_time: std::time::SystemTime::now(),
            custom: HashMap::new(),
        }
    }
}
#[cfg(test)]
mod tests {
    use super::*;
    use std::fs;

    #[test]
    fn test_component_builder_new() {
        let builder = ComponentBuilder::new();
        assert_eq!(builder.source_files.len(), 0);
        assert!(!builder.include_debug_info);
    }

    #[test]
    fn test_component_builder_new_with_config() {
        let config = ComponentConfig::default();
        let builder = ComponentBuilder::new_with_config(config.clone());
        assert_eq!(builder.source_files.len(), 0);
        assert_eq!(
            builder.config.memory.initial_pages,
            config.memory.initial_pages
        );
    }

    #[test]
    fn test_component_builder_with_metadata() {
        let builder = ComponentBuilder::new();
        let metadata = ComponentMetadata {
            name: "test".to_string(),
            version: "1.0.0".to_string(),
            ..Default::default()
        };
        let updated = builder.with_metadata(metadata);
        assert_eq!(updated.metadata.name, "test");
        assert_eq!(updated.metadata.version, "1.0.0");
    }

    #[test]
    fn test_component_builder_with_optimization() {
        let builder = ComponentBuilder::new();
        let updated = builder.with_optimization(OptimizationLevel::Os);
        assert_eq!(updated.optimization_level, OptimizationLevel::Os);
    }

    #[test]
    fn test_component_builder_with_debug_info() {
        let builder = ComponentBuilder::new();
        let updated = builder.with_debug_info(true);
        assert!(updated.include_debug_info);
    }

    #[test]
    fn test_component_builder_with_config() {
        let builder = ComponentBuilder::new();
        let config = ComponentConfig {
            memory: MemoryConfig {
                initial_pages: 10,
                maximum_pages: Some(100),
                shared: false,
                memory64: false,
            },
            ..Default::default()
        };
        let updated = builder.with_config(config);
        assert_eq!(updated.config.memory.initial_pages, 10);
        assert_eq!(updated.config.memory.maximum_pages, Some(100));
    }

    #[test]
    fn test_component_builder_with_source() {
        let builder = ComponentBuilder::new();
        let source = "fn main() {}".to_string();
        let updated = builder.with_source(source);
        // Just verify it doesn't panic and returns self
        assert_eq!(updated.source_files.len(), 0); // Source string doesn't add files
    }

    #[test]
    fn test_component_builder_set_name() {
        let mut builder = ComponentBuilder::new();
        builder.set_name("my-component".to_string());
        assert_eq!(builder.metadata.name, "my-component");
    }

    #[test]
    fn test_component_builder_set_version() {
        let mut builder = ComponentBuilder::new();
        builder.set_version("2.0.0".to_string());
        assert_eq!(builder.metadata.version, "2.0.0");
    }

    #[test]
    fn test_component_builder_add_source_nonexistent() {
        let mut builder = ComponentBuilder::new();
        let result = builder.add_source("/nonexistent/file.ruchy");
        assert!(result.is_err());
    }

    #[test]
    fn test_component_builder_add_source_existing() {
        let mut builder = ComponentBuilder::new();

        // Create a temp file
        let temp_dir = std::env::temp_dir();
        let temp_file = temp_dir.join("test_component_source.ruchy");
        fs::write(&temp_file, "fn main() {}").expect("operation should succeed in test");

        let result = builder.add_source(&temp_file);
        assert!(result.is_ok());
        assert_eq!(builder.source_files.len(), 1);

        // Clean up
        let _ = fs::remove_file(temp_file);
    }

    #[test]
    fn test_wasm_component_save() {
        let component = WasmComponent {
            name: "test".to_string(),
            version: "1.0.0".to_string(),
            bytecode: vec![0x00, 0x61, 0x73, 0x6d], // WASM magic bytes
            metadata: ComponentMetadata::default(),
            exports: vec![],
            imports: vec![],
            custom_sections: HashMap::new(),
        };

        let temp_dir = std::env::temp_dir();
        let temp_file = temp_dir.join("test_component.wasm");

        let result = component.save(&temp_file);
        assert!(result.is_ok());

        // Verify file was created
        assert!(temp_file.exists());

        // Clean up
        let _ = fs::remove_file(temp_file);
    }

    #[test]
    fn test_wasm_component_size() {
        let component = WasmComponent {
            name: "test".to_string(),
            version: "1.0.0".to_string(),
            bytecode: vec![1, 2, 3, 4, 5],
            metadata: ComponentMetadata::default(),
            exports: vec![],
            imports: vec![],
            custom_sections: HashMap::new(),
        };

        assert_eq!(component.size(), 5);
    }

    #[test]
    fn test_wasm_component_validate() {
        let component = WasmComponent {
            name: "test".to_string(),
            version: "1.0.0".to_string(),
            bytecode: vec![0x00, 0x61, 0x73, 0x6d], // WASM magic bytes
            metadata: ComponentMetadata::default(),
            exports: vec![],
            imports: vec![],
            custom_sections: HashMap::new(),
        };

        let result = component.validate();
        // Should not panic, actual validation depends on implementation
        let _ = result;
    }

    #[test]
    fn test_wasm_component_verify() {
        let component = WasmComponent {
            name: "test".to_string(),
            version: "1.0.0".to_string(),
            bytecode: vec![],
            metadata: ComponentMetadata::default(),
            exports: vec![],
            imports: vec![],
            custom_sections: HashMap::new(),
        };

        let result = component.verify();
        // Empty bytecode should fail verification
        assert!(result.is_err());
    }

    #[test]
    fn test_wasm_component_summary() {
        let component = WasmComponent {
            name: "test".to_string(),
            version: "1.0.0".to_string(),
            bytecode: vec![1, 2, 3],
            metadata: ComponentMetadata::default(),
            exports: vec![ExportDefinition {
                name: "func1".to_string(),
                export_type: ExportType::Function,
                signature: TypeSignature {
                    params: vec![],
                    results: vec![],
                    metadata: HashMap::new(),
                },
                documentation: None,
            }],
            imports: vec![ImportDefinition {
                module: "env".to_string(),
                name: "import1".to_string(),
                import_type: ImportType::Function,
                signature: TypeSignature {
                    params: vec![],
                    results: vec![],
                    metadata: HashMap::new(),
                },
            }],
            custom_sections: HashMap::new(),
        };

        let summary = component.summary();
        assert_eq!(summary.name, "test");
        assert_eq!(summary.version, "1.0.0");
        assert_eq!(summary.size, 3);
        assert_eq!(summary.exports_count, 1);
        assert_eq!(summary.imports_count, 1);
    }

    #[test]
    fn test_component_config_default() {
        let config = ComponentConfig::default();
        assert_eq!(config.memory.initial_pages, 1);
        assert_eq!(config.memory.maximum_pages, None);
        // Just verify the fields exist, don't assume their default values
        let _ = config.features.simd;
        let _ = config.features.bulk_memory;
    }

    #[test]
    fn test_component_metadata_default() {
        let metadata = ComponentMetadata::default();
        assert_eq!(metadata.name, "");
        assert_eq!(metadata.version, "0.1.0");
        assert_eq!(metadata.license, "MIT");
        assert!(metadata.custom.is_empty());
    }

    #[test]
    fn test_optimization_level_variants() {
        let _none = OptimizationLevel::None;
        let _o1 = OptimizationLevel::O1;
        let _o2 = OptimizationLevel::O2;
        let _o3 = OptimizationLevel::O3;
        let _os = OptimizationLevel::Os;
    }

    #[test]
    fn test_export_type_variants() {
        let _func = ExportType::Function;
        let _table = ExportType::Table;
        let _memory = ExportType::Memory;
        let _global = ExportType::Global;
    }

    #[test]
    fn test_import_type_variants() {
        let _func = ImportType::Function;
        let _table = ImportType::Table;
        let _memory = ImportType::Memory;
        let _global = ImportType::Global;
    }

    #[test]
    fn test_target_architecture_variants() {
        let _wasm32 = TargetArchitecture::Wasm32;
        let _wasm64 = TargetArchitecture::Wasm64;
    }

    #[test]
    fn test_feature_flags() {
        let flags = FeatureFlags {
            simd: true,
            bulk_memory: false,
            reference_types: true,
            multi_value: false,
            tail_call: true,
            threads: false,
            exceptions: true,
            component_model: false,
        };

        assert!(flags.simd);
        assert!(!flags.bulk_memory);
        assert!(flags.reference_types);
        assert!(!flags.multi_value);
        assert!(flags.tail_call);
        assert!(!flags.threads);
        assert!(flags.exceptions);
        assert!(!flags.component_model);
    }

    #[test]
    fn test_memory_config() {
        let config = MemoryConfig {
            initial_pages: 5,
            maximum_pages: Some(10),
            shared: false,
            memory64: false,
        };

        assert_eq!(config.initial_pages, 5);
        assert_eq!(config.maximum_pages, Some(10));
    }

    #[test]
    fn test_linking_config() {
        let config = LinkingConfig {
            imports: vec!["env".to_string()],
            export_all: false,
            preserve_custom_sections: true,
            generate_names: false,
        };

        assert_eq!(config.imports.len(), 1);
        assert!(!config.export_all);
        assert!(config.preserve_custom_sections);
        assert!(!config.generate_names);
    }

    #[test]
    fn test_optimization_config() {
        let config = OptimizationConfig {
            level: OptimizationLevel::O2,
            optimize_size: false,
            optimize_speed: true,
            inline_threshold: 100,
            unroll_loops: true,
        };

        assert_eq!(config.level, OptimizationLevel::O2);
        assert!(!config.optimize_size);
        assert!(config.optimize_speed);
        assert_eq!(config.inline_threshold, 100);
        assert!(config.unroll_loops);
    }

    #[test]
    fn test_component_metadata_creation() {
        let metadata = ComponentMetadata {
            name: "my_component".to_string(),
            version: "2.0.0".to_string(),
            description: "Test component".to_string(),
            author: "Test Author".to_string(),
            license: "MIT".to_string(),
            repository: Some("https://github.com/test/repo".to_string()),
            build_time: std::time::SystemTime::now(),
            custom: HashMap::new(),
        };

        assert_eq!(metadata.name, "my_component");
        assert_eq!(metadata.version, "2.0.0");
        assert_eq!(metadata.description, "Test component");
        assert_eq!(metadata.author, "Test Author");
        assert_eq!(metadata.license, "MIT");
        assert!(metadata.repository.is_some());
    }

    // Test removed - TypeSignature type not defined in module

    // Test removed - TypeSignature type not defined in module

    #[test]
    fn test_wasm_component_with_custom_sections() {
        let mut custom_sections = HashMap::new();
        custom_sections.insert("debug".to_string(), vec![1, 2, 3, 4]);
        custom_sections.insert("producers".to_string(), vec![5, 6, 7, 8]);

        let component = WasmComponent {
            name: "test".to_string(),
            version: "1.0.0".to_string(),
            bytecode: vec![0, 1, 2],
            metadata: ComponentMetadata::default(),
            exports: vec![],
            imports: vec![],
            custom_sections,
        };

        assert_eq!(component.custom_sections.len(), 2);
        assert!(component.custom_sections.contains_key("debug"));
        assert!(component.custom_sections.contains_key("producers"));
    }

    #[test]
    fn test_builder_add_multiple_sources() {
        let mut builder = ComponentBuilder::new();

        // Create temporary files
        let temp_dir = std::env::temp_dir();
        let file1 = temp_dir.join("file1.ruchy");
        let file2 = temp_dir.join("file2.ruchy");
        let file3 = temp_dir.join("file3.ruchy");

        fs::write(&file1, "fn main() {}").expect("operation should succeed in test");
        fs::write(&file2, "fn helper() {}").expect("operation should succeed in test");
        fs::write(&file3, "fn utils() {}").expect("operation should succeed in test");

        builder
            .add_source(&file1)
            .expect("operation should succeed in test");
        builder
            .add_source(&file2)
            .expect("operation should succeed in test");
        builder
            .add_source(&file3)
            .expect("operation should succeed in test");

        assert_eq!(builder.source_files.len(), 3);
        assert!(builder.source_files.contains(&file1));
        assert!(builder.source_files.contains(&file2));
        assert!(builder.source_files.contains(&file3));

        // Clean up
        let _ = fs::remove_file(file1);
        let _ = fs::remove_file(file2);
        let _ = fs::remove_file(file3);
    }

    #[test]
    fn test_optimization_levels() {
        let levels = vec![
            OptimizationLevel::None,
            OptimizationLevel::O1,
            OptimizationLevel::O2,
            OptimizationLevel::O3,
            OptimizationLevel::Os,
            OptimizationLevel::Oz,
        ];

        for level in levels {
            let builder = ComponentBuilder::new();
            let builder = builder.with_optimization(level.clone());
            assert_eq!(builder.optimization_level, level);
        }
    }

    #[test]
    fn test_target_architecture_variants_comprehensive() {
        let targets = vec![TargetArchitecture::Wasm32, TargetArchitecture::Wasm64];

        for target in targets {
            let config = ComponentConfig {
                target: target.clone(),
                memory: MemoryConfig::default(),
                features: FeatureFlags::default(),
                linking: LinkingConfig::default(),
                optimization: OptimizationConfig::default(),
            };

            assert_eq!(config.target, target);
        }
    }

    // Test removed - TypeSignature, MemoryLimits, TableLimits types not defined in module

    #[test]
    fn test_wasm_type_variants() {
        let types = vec![
            WasmType::I32,
            WasmType::I64,
            WasmType::F32,
            WasmType::F64,
            WasmType::V128,
            WasmType::FuncRef,
            WasmType::ExternRef,
        ];

        for wasm_type in types {
            // Each type should be distinct
            match wasm_type {
                WasmType::I32 => assert_eq!(format!("{wasm_type:?}"), "I32"),
                WasmType::I64 => assert_eq!(format!("{wasm_type:?}"), "I64"),
                WasmType::F32 => assert_eq!(format!("{wasm_type:?}"), "F32"),
                WasmType::F64 => assert_eq!(format!("{wasm_type:?}"), "F64"),
                WasmType::V128 => assert_eq!(format!("{wasm_type:?}"), "V128"),
                WasmType::FuncRef => assert_eq!(format!("{wasm_type:?}"), "FuncRef"),
                WasmType::ExternRef => assert_eq!(format!("{wasm_type:?}"), "ExternRef"),
                WasmType::Ref(name) => assert!(!name.is_empty()),
            }
        }
    }

    #[test]
    fn test_builder_with_debug_info() {
        let builder = ComponentBuilder::new();

        let builder = builder.with_debug_info(true);
        assert!(builder.include_debug_info);

        let builder = builder.with_debug_info(false);
        assert!(!builder.include_debug_info);
    }

    #[test]
    fn test_memory_config_with_limits() {
        let config1 = MemoryConfig {
            initial_pages: 1,
            maximum_pages: None,
            shared: false,
            memory64: false,
        };

        let config2 = MemoryConfig {
            initial_pages: 10,
            maximum_pages: Some(100),
            shared: true,
            memory64: true,
        };

        assert_eq!(config1.initial_pages, 1);
        assert!(config1.maximum_pages.is_none());
        assert!(!config1.shared);
        assert!(!config1.memory64);

        assert_eq!(config2.initial_pages, 10);
        assert_eq!(config2.maximum_pages, Some(100));
        assert!(config2.shared);
        assert!(config2.memory64);
    }

    #[test]
    fn test_component_validation_interface() {
        let component = WasmComponent {
            name: "validator".to_string(),
            version: "0.1.0".to_string(),
            bytecode: vec![0x00, 0x61, 0x73, 0x6d], // WASM magic number
            metadata: ComponentMetadata::default(),
            exports: vec![ExportDefinition {
                name: "validate".to_string(),
                export_type: ExportType::Function,
                signature: TypeSignature {
                    params: vec![WasmType::I32],
                    results: vec![WasmType::I32],
                    metadata: HashMap::new(),
                },
                documentation: None,
            }],
            imports: vec![],
            custom_sections: HashMap::new(),
        };

        assert!(!component.name.is_empty());
        assert!(!component.version.is_empty());
        assert!(component.bytecode.len() >= 4);
        assert_eq!(component.exports.len(), 1);
    }

    #[test]
    fn test_feature_flags_combinations() {
        let all_enabled = FeatureFlags {
            simd: true,
            bulk_memory: true,
            reference_types: true,
            multi_value: true,
            tail_call: true,
            threads: true,
            exceptions: true,
            component_model: true,
        };

        let all_disabled = FeatureFlags {
            simd: false,
            bulk_memory: false,
            reference_types: false,
            multi_value: false,
            tail_call: false,
            threads: false,
            exceptions: false,
            component_model: false,
        };

        // Test all enabled
        assert!(all_enabled.simd && all_enabled.bulk_memory);
        assert!(all_enabled.reference_types && all_enabled.multi_value);

        // Test all disabled
        assert!(!all_disabled.simd && !all_disabled.bulk_memory);
        assert!(!all_disabled.reference_types && !all_disabled.multi_value);
    }

    #[test]
    fn test_linking_config_with_multiple_imports() {
        let config = LinkingConfig {
            imports: vec![
                "env".to_string(),
                "wasi_snapshot_preview1".to_string(),
                "custom_module".to_string(),
            ],
            export_all: true,
            preserve_custom_sections: true,
            generate_names: true,
        };

        assert_eq!(config.imports.len(), 3);
        assert!(config.imports.contains(&"env".to_string()));
        assert!(config
            .imports
            .contains(&"wasi_snapshot_preview1".to_string()));
        assert!(config.export_all);
        assert!(config.generate_names);
    }

    #[test]
    fn test_custom_metadata_fields() {
        let mut custom = HashMap::new();
        custom.insert("compiler".to_string(), "ruchy".to_string());
        custom.insert("target".to_string(), "browser".to_string());
        custom.insert("optimization".to_string(), "size".to_string());

        let metadata = ComponentMetadata {
            name: "app".to_string(),
            version: "1.0.0".to_string(),
            description: String::new(),
            author: String::new(),
            license: String::new(),
            repository: None,
            build_time: std::time::SystemTime::now(),
            custom,
        };

        assert_eq!(metadata.custom.len(), 3);
        assert_eq!(metadata.custom.get("compiler"), Some(&"ruchy".to_string()));
        assert_eq!(metadata.custom.get("target"), Some(&"browser".to_string()));
    }

    // Test removed - TypeSignature::Table and TableLimits types not defined

    // Test removed - TypeSignature type not defined in module

    #[test]
    fn test_optimization_size_vs_speed() {
        let size_opt = OptimizationConfig {
            level: OptimizationLevel::Os,
            optimize_size: true,
            optimize_speed: false,
            inline_threshold: 10,
            unroll_loops: false,
        };

        let speed_opt = OptimizationConfig {
            level: OptimizationLevel::O3,
            optimize_size: false,
            optimize_speed: true,
            inline_threshold: 1000,
            unroll_loops: true,
        };

        // Size optimization should have different settings than speed
        assert!(size_opt.optimize_size && !size_opt.optimize_speed);
        assert!(!speed_opt.optimize_size && speed_opt.optimize_speed);
        assert!(size_opt.inline_threshold < speed_opt.inline_threshold);
        assert!(!size_opt.unroll_loops && speed_opt.unroll_loops);
    }

    // Additional coverage tests

    #[test]
    fn test_build_dry_run() {
        let mut builder = ComponentBuilder::new();
        builder.set_name("dry-run-test".to_string());
        builder.set_version("1.0.0".to_string());

        let component = builder.build_dry_run();
        assert!(component.is_ok());
        let component = component.unwrap();
        assert_eq!(component.name, "dry-run-test");
        assert!(!component.bytecode.is_empty());
        assert_eq!(component.exports.len(), 1);
    }

    #[test]
    fn test_build_with_source_files() {
        let mut builder = ComponentBuilder::new();
        builder.set_name("build-test".to_string());

        let temp_dir = std::env::temp_dir();
        let temp_file = temp_dir.join("build_test_source.ruchy");
        fs::write(&temp_file, "fn main() { 42 }").expect("write should succeed");

        builder.add_source(&temp_file).expect("add should succeed");

        let result = builder.build();
        assert!(result.is_ok());
        let component = result.unwrap();
        assert!(!component.bytecode.is_empty());

        let _ = fs::remove_file(temp_file);
    }

    #[test]
    fn test_build_validation_no_sources() {
        let builder = ComponentBuilder::new();
        // No sources added - should fail validation
        let result = builder.build();
        assert!(result.is_err());
    }

    #[test]
    fn test_build_validation_no_name() {
        let mut builder = ComponentBuilder::new();
        let temp_dir = std::env::temp_dir();
        let temp_file = temp_dir.join("no_name_test.ruchy");
        fs::write(&temp_file, "fn main() {}").expect("write should succeed");
        builder.add_source(&temp_file).expect("add should succeed");

        // No name set - should fail validation
        let result = builder.build();
        assert!(result.is_err());

        let _ = fs::remove_file(temp_file);
    }

    #[test]
    fn test_target_architecture_all_variants() {
        let variants = vec![
            TargetArchitecture::Wasm32,
            TargetArchitecture::Wasm64,
            TargetArchitecture::Wasi,
            TargetArchitecture::Browser,
            TargetArchitecture::NodeJs,
            TargetArchitecture::CloudflareWorkers,
            TargetArchitecture::Custom("custom-target".to_string()),
        ];

        for target in variants {
            let config = ComponentConfig {
                target: target.clone(),
                ..Default::default()
            };
            assert_eq!(config.target, target);
        }
    }

    #[test]
    fn test_export_type_custom() {
        let custom = ExportType::Custom("custom_type".to_string());
        assert!(matches!(custom, ExportType::Custom(_)));
    }

    #[test]
    fn test_import_type_custom() {
        let custom = ImportType::Custom("custom_import".to_string());
        assert!(matches!(custom, ImportType::Custom(_)));
    }

    #[test]
    fn test_wasm_type_ref() {
        let ref_type = WasmType::Ref("custom_ref".to_string());
        assert!(matches!(ref_type, WasmType::Ref(_)));
    }

    #[test]
    fn test_component_validate_invalid_magic() {
        let component = WasmComponent {
            name: "invalid".to_string(),
            version: "1.0.0".to_string(),
            bytecode: vec![0xFF, 0xFF, 0xFF, 0xFF, 0x01, 0x00, 0x00, 0x00],
            metadata: ComponentMetadata::default(),
            exports: vec![],
            imports: vec![],
            custom_sections: HashMap::new(),
        };

        let result = component.validate();
        assert!(result.is_err());
    }

    #[test]
    fn test_component_validate_too_small() {
        let component = WasmComponent {
            name: "tiny".to_string(),
            version: "1.0.0".to_string(),
            bytecode: vec![0x00, 0x61, 0x73], // Only 3 bytes - too small
            metadata: ComponentMetadata::default(),
            exports: vec![],
            imports: vec![],
            custom_sections: HashMap::new(),
        };

        let result = component.validate();
        assert!(result.is_err());
    }

    #[test]
    fn test_component_summary_with_debug_info() {
        let mut custom_sections = HashMap::new();
        custom_sections.insert("name".to_string(), vec![1, 2, 3]);

        let component = WasmComponent {
            name: "debug-component".to_string(),
            version: "1.0.0".to_string(),
            bytecode: vec![0x00, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00],
            metadata: ComponentMetadata::default(),
            exports: vec![],
            imports: vec![],
            custom_sections,
        };

        let summary = component.summary();
        assert!(summary.has_debug_info);
    }

    #[test]
    fn test_linking_config_default() {
        let config = LinkingConfig::default();
        assert!(config.imports.is_empty());
    }

    #[test]
    fn test_component_builder_default() {
        let builder = ComponentBuilder::default();
        assert_eq!(builder.source_files.len(), 0);
    }

    #[test]
    fn test_feature_flags_default() {
        let flags = FeatureFlags::default();
        // Default should have bulk_memory and multi_value enabled
        assert!(flags.bulk_memory);
        assert!(flags.multi_value);
    }

    #[test]
    fn test_optimization_level_oz() {
        let level = OptimizationLevel::Oz;
        let builder = ComponentBuilder::new().with_optimization(level.clone());
        assert_eq!(builder.optimization_level, OptimizationLevel::Oz);
    }

    #[test]
    fn test_type_signature_with_metadata() {
        let mut metadata = HashMap::new();
        metadata.insert("doc".to_string(), "Test function".to_string());

        let sig = TypeSignature {
            params: vec![WasmType::I32, WasmType::I64],
            results: vec![WasmType::F64],
            metadata,
        };

        assert_eq!(sig.params.len(), 2);
        assert_eq!(sig.results.len(), 1);
        assert!(sig.metadata.contains_key("doc"));
    }

    #[test]
    fn test_export_definition_with_documentation() {
        let export = ExportDefinition {
            name: "documented_func".to_string(),
            export_type: ExportType::Function,
            signature: TypeSignature {
                params: vec![],
                results: vec![WasmType::I32],
                metadata: HashMap::new(),
            },
            documentation: Some("This is a documented function".to_string()),
        };

        assert!(export.documentation.is_some());
        assert_eq!(
            export.documentation.unwrap(),
            "This is a documented function"
        );
    }

    #[test]
    fn test_import_definition_complete() {
        let import = ImportDefinition {
            module: "env".to_string(),
            name: "print".to_string(),
            import_type: ImportType::Function,
            signature: TypeSignature {
                params: vec![WasmType::I32],
                results: vec![],
                metadata: HashMap::new(),
            },
        };

        assert_eq!(import.module, "env");
        assert_eq!(import.name, "print");
        assert!(matches!(import.import_type, ImportType::Function));
    }

    #[test]
    fn test_memory_config_default() {
        let config = MemoryConfig::default();
        assert_eq!(config.initial_pages, 1);
        assert!(config.maximum_pages.is_none());
        assert!(!config.shared);
        assert!(!config.memory64);
    }
}

#[cfg(test)]
mod property_tests_component {
    use super::*;
    use proptest::prelude::*;

    proptest! {
        #[test]
        fn test_set_name_doesnt_panic(name in "\\PC*") {
            let mut builder = ComponentBuilder::new();
            builder.set_name(name.clone());
            assert_eq!(builder.metadata.name, name);
        }

        #[test]
        fn test_set_version_doesnt_panic(version in "\\PC*") {
            let mut builder = ComponentBuilder::new();
            builder.set_version(version.clone());
            assert_eq!(builder.metadata.version, version);
        }

        #[test]
        fn test_component_size_with_random_bytecode(
            bytes in prop::collection::vec(any::<u8>(), 0..1000)
        ) {
            let component = WasmComponent {
                name: "test".to_string(),
                version: "1.0.0".to_string(),
                bytecode: bytes.clone(),
                metadata: ComponentMetadata::default(),
                exports: vec![],
                imports: vec![],
                custom_sections: HashMap::new(),
            };

            assert_eq!(component.size(), bytes.len());
        }
    }
}