ruchy 4.2.1

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
//! Builtin Functions Initialization Module
//!
//! EXTREME TDD: Full test coverage, zero entropy, <10 complexity per function
//! Extracted from interpreter.rs to eliminate builtin initialization bloat.
//!
//! This module handles the initialization of builtin functions and constants
//! in the global environment. All builtins are registered as special string
//! markers that are handled during function call evaluation.

use crate::runtime::Value;
use std::collections::HashMap;

/// Initialize global environment with all builtin functions and constants
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
pub fn init_global_environment() -> HashMap<String, Value> {
    let mut global_env = HashMap::new();

    // Add builtin constants
    add_builtin_constants(&mut global_env);

    // Add all builtin function categories
    add_basic_builtins(&mut global_env);
    add_math_functions(&mut global_env);
    add_io_functions(&mut global_env);
    add_utility_functions(&mut global_env);
    add_type_conversion_functions(&mut global_env);
    add_advanced_utility_functions(&mut global_env);
    add_string_functions(&mut global_env);
    add_random_time_functions(&mut global_env);
    add_environment_functions(&mut global_env);
    add_fs_functions(&mut global_env);
    add_stdlib003_functions(&mut global_env); // STDLIB-003: User-friendly file I/O
    add_stdlib005_functions(&mut global_env); // STDLIB-005: Directory walking
    add_path_functions(&mut global_env);
    add_json_functions(&mut global_env);
    add_http_functions(&mut global_env);
    add_std_namespace(&mut global_env); // STDLIB-003: std::time module
    add_chrono_namespace(&mut global_env); // Issue #82: chrono support

    global_env
}

/// Add builtin constants to the environment
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_builtin_constants(global_env: &mut HashMap<String, Value>) {
    global_env.insert("nil".to_string(), Value::Nil);
}

/// Add basic builtin functions (format, `HashMap`, `DataFrame`, `Command`)
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_basic_builtins(global_env: &mut HashMap<String, Value>) {
    global_env.insert(
        "format".to_string(),
        Value::from_string("__builtin_format__".to_string()),
    );
    global_env.insert(
        "HashMap".to_string(),
        Value::from_string("__builtin_hashmap__".to_string()),
    );
    global_env.insert(
        "DataFrame".to_string(),
        Value::from_string("__builtin_dataframe__".to_string()),
    );
    // RUNTIME-090: Command module for std::process::Command wrapper
    global_env.insert(
        "Command".to_string(),
        Value::from_string("__builtin_command__".to_string()),
    );
    // REGRESSION-077: String module for std::string methods
    global_env.insert(
        "String".to_string(),
        Value::from_string("__builtin_string__".to_string()),
    );
    global_env.insert(
        "DataFrame::new".to_string(),
        Value::from_string("__builtin_dataframe_new__".to_string()),
    );
    global_env.insert(
        "DataFrame::from_range".to_string(),
        Value::from_string("__builtin_dataframe_from_range__".to_string()),
    );
    global_env.insert(
        "DataFrame::from_rows".to_string(),
        Value::from_string("__builtin_dataframe_from_rows__".to_string()),
    );
    global_env.insert(
        "DataFrame::from_csv_string".to_string(),
        Value::from_string("__builtin_dataframe_from_csv_string__".to_string()),
    );
    global_env.insert(
        "DataFrame::from_json".to_string(),
        Value::from_string("__builtin_dataframe_from_json__".to_string()),
    );
    global_env.insert(
        "col".to_string(),
        Value::from_string("__builtin_col__".to_string()),
    );
}

/// Add math standard library functions
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_math_functions(global_env: &mut HashMap<String, Value>) {
    // STDLIB-002: Added log, log10, random
    let math_functions = [
        "sqrt", "pow", "abs", "min", "max", "floor", "ceil", "round", "sin", "cos", "tan", "log",
        "log10", "random",
    ];

    for func_name in &math_functions {
        let builtin_name = format!("__builtin_{func_name}__");
        global_env.insert((*func_name).to_string(), Value::from_string(builtin_name));
    }
}

/// Add I/O and output functions
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_io_functions(global_env: &mut HashMap<String, Value>) {
    global_env.insert(
        "println".to_string(),
        Value::from_string("__builtin_println__".to_string()),
    );
    global_env.insert(
        "print".to_string(),
        Value::from_string("__builtin_print__".to_string()),
    );
    global_env.insert(
        "dbg".to_string(),
        Value::from_string("__builtin_dbg__".to_string()),
    );
}

/// Add basic utility functions
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_utility_functions(global_env: &mut HashMap<String, Value>) {
    global_env.insert(
        "len".to_string(),
        Value::from_string("__builtin_len__".to_string()),
    );
    global_env.insert(
        "range".to_string(),
        Value::from_string("__builtin_range__".to_string()),
    );
    global_env.insert(
        "typeof".to_string(),
        Value::from_string("__builtin_type__".to_string()),
    );
    // Test assertion built-ins for unit testing support
    global_env.insert(
        "assert_eq".to_string(),
        Value::from_string("__builtin_assert_eq__".to_string()),
    );
    global_env.insert(
        "assert".to_string(),
        Value::from_string("__builtin_assert__".to_string()),
    );
}

/// Add type conversion functions
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_type_conversion_functions(global_env: &mut HashMap<String, Value>) {
    let conversion_functions = ["int", "float", "str", "bool"];

    for func_name in &conversion_functions {
        let builtin_name = format!("__builtin_{func_name}__");
        global_env.insert((*func_name).to_string(), Value::from_string(builtin_name));
    }
}

/// Add advanced utility functions
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_advanced_utility_functions(global_env: &mut HashMap<String, Value>) {
    let advanced_functions = [
        "reverse",
        "sort",
        "sum",
        "product",
        "unique",
        "flatten",
        "zip",
        "enumerate",
    ];

    for func_name in &advanced_functions {
        let builtin_name = format!("__builtin_{func_name}__");
        global_env.insert((*func_name).to_string(), Value::from_string(builtin_name));
    }
}

/// Add string utility functions
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_string_functions(global_env: &mut HashMap<String, Value>) {
    global_env.insert(
        "join".to_string(),
        Value::from_string("__builtin_join__".to_string()),
    );
    global_env.insert(
        "split".to_string(),
        Value::from_string("__builtin_split__".to_string()),
    );
}

/// Add random and time functions
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_random_time_functions(global_env: &mut HashMap<String, Value>) {
    global_env.insert(
        "random".to_string(),
        Value::from_string("__builtin_random__".to_string()),
    );
    global_env.insert(
        "random_int".to_string(),
        Value::from_string("__builtin_random_int__".to_string()),
    );
    global_env.insert(
        "timestamp".to_string(),
        Value::from_string("__builtin_timestamp__".to_string()),
    );
    global_env.insert(
        "get_time_ms".to_string(),
        Value::from_string("__builtin_timestamp__".to_string()),
    );
    // STDLIB-003: std::time::now_millis() - GitHub Issue #55
    global_env.insert(
        "std::time::now_millis".to_string(),
        Value::from_string("__builtin_timestamp__".to_string()),
    );
    global_env.insert(
        "sleep".to_string(),
        Value::from_string("__builtin_sleep__".to_string()),
    );
}

/// Add environment functions
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_environment_functions(global_env: &mut HashMap<String, Value>) {
    global_env.insert(
        "env_args".to_string(),
        Value::from_string("__builtin_env_args__".to_string()),
    );
    global_env.insert(
        "env_var".to_string(),
        Value::from_string("__builtin_env_var__".to_string()),
    );
    global_env.insert(
        "env_set_var".to_string(),
        Value::from_string("__builtin_env_set_var__".to_string()),
    );
    global_env.insert(
        "env_remove_var".to_string(),
        Value::from_string("__builtin_env_remove_var__".to_string()),
    );
    global_env.insert(
        "env_vars".to_string(),
        Value::from_string("__builtin_env_vars__".to_string()),
    );
    global_env.insert(
        "env_current_dir".to_string(),
        Value::from_string("__builtin_env_current_dir__".to_string()),
    );
    global_env.insert(
        "env_set_current_dir".to_string(),
        Value::from_string("__builtin_env_set_current_dir__".to_string()),
    );
    global_env.insert(
        "env_temp_dir".to_string(),
        Value::from_string("__builtin_env_temp_dir__".to_string()),
    );
}

/// Register file system functions in global environment
/// Phase 2: `STDLIB_ACCESS_PLAN` - File System Module (12 functions)
fn add_fs_functions(global_env: &mut HashMap<String, Value>) {
    global_env.insert(
        "fs_read".to_string(),
        Value::from_string("__builtin_fs_read__".to_string()),
    );
    global_env.insert(
        "fs_write".to_string(),
        Value::from_string("__builtin_fs_write__".to_string()),
    );
    global_env.insert(
        "fs_exists".to_string(),
        Value::from_string("__builtin_fs_exists__".to_string()),
    );
    global_env.insert(
        "fs_create_dir".to_string(),
        Value::from_string("__builtin_fs_create_dir__".to_string()),
    );
    global_env.insert(
        "fs_remove_file".to_string(),
        Value::from_string("__builtin_fs_remove_file__".to_string()),
    );
    global_env.insert(
        "fs_remove_dir".to_string(),
        Value::from_string("__builtin_fs_remove_dir__".to_string()),
    );
    global_env.insert(
        "fs_copy".to_string(),
        Value::from_string("__builtin_fs_copy__".to_string()),
    );
    global_env.insert(
        "fs_rename".to_string(),
        Value::from_string("__builtin_fs_rename__".to_string()),
    );
    global_env.insert(
        "fs_metadata".to_string(),
        Value::from_string("__builtin_fs_metadata__".to_string()),
    );
    global_env.insert(
        "fs_read_dir".to_string(),
        Value::from_string("__builtin_fs_read_dir__".to_string()),
    );
    global_env.insert(
        "fs_canonicalize".to_string(),
        Value::from_string("__builtin_fs_canonicalize__".to_string()),
    );
    global_env.insert(
        "fs_is_file".to_string(),
        Value::from_string("__builtin_fs_is_file__".to_string()),
    );
}

/// Register STDLIB-003: User-friendly file I/O aliases
/// Provides intuitive names for common file operations
/// Complexity: 1 (simple registration)
fn add_stdlib003_functions(global_env: &mut HashMap<String, Value>) {
    // STDLIB-003: Advanced File I/O Functions
    global_env.insert(
        "read_file".to_string(),
        Value::from_string("__builtin_read_file__".to_string()),
    );
    global_env.insert(
        "write_file".to_string(),
        Value::from_string("__builtin_write_file__".to_string()),
    );
    global_env.insert(
        "file_exists".to_string(),
        Value::from_string("__builtin_file_exists__".to_string()),
    );
    global_env.insert(
        "append_file".to_string(),
        Value::from_string("__builtin_append_file__".to_string()),
    );
    global_env.insert(
        "delete_file".to_string(),
        Value::from_string("__builtin_delete_file__".to_string()),
    );
    // ISSUE-116: File open() function for reading files with methods
    global_env.insert(
        "open".to_string(),
        Value::from_string("__builtin_open__".to_string()),
    );
}

/// Register STDLIB-005: Multi-Threaded Directory Walking + Text Search + Hashing
/// Provides directory traversal, text search, and file hashing for duplicate detection
/// Complexity: 1 (simple registration)
fn add_stdlib005_functions(global_env: &mut HashMap<String, Value>) {
    // STDLIB-005: Directory Walking Functions
    global_env.insert(
        "walk".to_string(),
        Value::from_string("__builtin_walk__".to_string()),
    );
    global_env.insert(
        "walk_parallel".to_string(),
        Value::from_string("__builtin_walk_parallel__".to_string()),
    );
    global_env.insert(
        "glob".to_string(),
        Value::from_string("__builtin_glob__".to_string()),
    );
    global_env.insert(
        "search".to_string(),
        Value::from_string("__builtin_search__".to_string()),
    );
    global_env.insert(
        "walk_with_options".to_string(),
        Value::from_string("__builtin_walk_with_options__".to_string()),
    );
    global_env.insert(
        "compute_hash".to_string(),
        Value::from_string("__builtin_compute_hash__".to_string()),
    );
}

/// Register path functions in global environment
/// Phase 3: `STDLIB_ACCESS_PLAN` - Path Module (13 functions)
fn add_path_functions(global_env: &mut HashMap<String, Value>) {
    global_env.insert(
        "path_join".to_string(),
        Value::from_string("__builtin_path_join__".to_string()),
    );
    global_env.insert(
        "path_join_many".to_string(),
        Value::from_string("__builtin_path_join_many__".to_string()),
    );
    global_env.insert(
        "path_parent".to_string(),
        Value::from_string("__builtin_path_parent__".to_string()),
    );
    global_env.insert(
        "path_file_name".to_string(),
        Value::from_string("__builtin_path_file_name__".to_string()),
    );
    global_env.insert(
        "path_file_stem".to_string(),
        Value::from_string("__builtin_path_file_stem__".to_string()),
    );
    global_env.insert(
        "path_extension".to_string(),
        Value::from_string("__builtin_path_extension__".to_string()),
    );
    global_env.insert(
        "path_is_absolute".to_string(),
        Value::from_string("__builtin_path_is_absolute__".to_string()),
    );
    global_env.insert(
        "path_is_relative".to_string(),
        Value::from_string("__builtin_path_is_relative__".to_string()),
    );
    global_env.insert(
        "path_canonicalize".to_string(),
        Value::from_string("__builtin_path_canonicalize__".to_string()),
    );
    global_env.insert(
        "path_with_extension".to_string(),
        Value::from_string("__builtin_path_with_extension__".to_string()),
    );
    global_env.insert(
        "path_with_file_name".to_string(),
        Value::from_string("__builtin_path_with_file_name__".to_string()),
    );
    global_env.insert(
        "path_components".to_string(),
        Value::from_string("__builtin_path_components__".to_string()),
    );
    global_env.insert(
        "path_normalize".to_string(),
        Value::from_string("__builtin_path_normalize__".to_string()),
    );
}

/// Register JSON functions in global environment
/// Phase 4: `STDLIB_ACCESS_PLAN` - JSON Module (10 functions)
fn add_json_functions(global_env: &mut HashMap<String, Value>) {
    global_env.insert(
        "json_parse".to_string(),
        Value::from_string("__builtin_json_parse__".to_string()),
    );
    global_env.insert(
        "parse_json".to_string(),
        Value::from_string("__builtin_json_parse__".to_string()),
    ); // ISSUE-131: Alias for json_parse
    global_env.insert(
        "json_stringify".to_string(),
        Value::from_string("__builtin_json_stringify__".to_string()),
    );
    global_env.insert(
        "json_pretty".to_string(),
        Value::from_string("__builtin_json_pretty__".to_string()),
    );
    global_env.insert(
        "json_read".to_string(),
        Value::from_string("__builtin_json_read__".to_string()),
    );
    global_env.insert(
        "json_write".to_string(),
        Value::from_string("__builtin_json_write__".to_string()),
    );
    global_env.insert(
        "json_validate".to_string(),
        Value::from_string("__builtin_json_validate__".to_string()),
    );
    global_env.insert(
        "json_type".to_string(),
        Value::from_string("__builtin_json_type__".to_string()),
    );
    global_env.insert(
        "json_merge".to_string(),
        Value::from_string("__builtin_json_merge__".to_string()),
    );
    global_env.insert(
        "json_get".to_string(),
        Value::from_string("__builtin_json_get__".to_string()),
    );
    global_env.insert(
        "json_set".to_string(),
        Value::from_string("__builtin_json_set__".to_string()),
    );
}

/// Phase 5: STDLIB-PHASE-5 - HTTP Module (4 functions)
fn add_http_functions(global_env: &mut HashMap<String, Value>) {
    global_env.insert(
        "http_get".to_string(),
        Value::from_string("__builtin_http_get__".to_string()),
    );
    global_env.insert(
        "http_post".to_string(),
        Value::from_string("__builtin_http_post__".to_string()),
    );
    global_env.insert(
        "http_put".to_string(),
        Value::from_string("__builtin_http_put__".to_string()),
    );
    global_env.insert(
        "http_delete".to_string(),
        Value::from_string("__builtin_http_delete__".to_string()),
    );
}

/// Add std namespace with time, process, fs, and env modules
/// STDLIB-003: GitHub Issue #55 - `std::time` module for timing measurements
/// Issue #85: `std::process::Command` for process execution
/// Issue #90: `std::fs` module for file I/O operations
/// Issue #92: `std::env` module for CLI argument access
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_std_namespace(global_env: &mut HashMap<String, Value>) {
    use std::sync::Arc;

    // Create time module object
    let mut time_module = HashMap::new();
    time_module.insert(
        "now_millis".to_string(),
        Value::from_string("__builtin_timestamp__".to_string()),
    );

    // Create process module object (Issue #85)
    let mut process_module = HashMap::new();

    // Command is a special marker that gets handled as a qualified name
    // The actual Command building is done in the interpreter
    let mut command_module = HashMap::new();
    command_module.insert(
        "new".to_string(),
        Value::from_string("__builtin_command_new__".to_string()),
    );
    process_module.insert(
        "Command".to_string(),
        Value::Object(Arc::new(command_module)),
    );

    // Create fs module object (Issue #90)
    // File system operations with Rust std::fs API compatibility
    let mut fs_module = HashMap::new();
    fs_module.insert(
        "write".to_string(),
        Value::from_string("__builtin_fs_write__".to_string()),
    );
    fs_module.insert(
        "read_to_string".to_string(),
        Value::from_string("__builtin_fs_read__".to_string()),
    );
    fs_module.insert(
        "read".to_string(),
        Value::from_string("__builtin_fs_read__".to_string()),
    );
    fs_module.insert(
        "exists".to_string(),
        Value::from_string("__builtin_fs_exists__".to_string()),
    );
    fs_module.insert(
        "create_dir".to_string(),
        Value::from_string("__builtin_fs_create_dir__".to_string()),
    );
    fs_module.insert(
        "create_dir_all".to_string(),
        Value::from_string("__builtin_fs_create_dir__".to_string()),
    );
    fs_module.insert(
        "remove_file".to_string(),
        Value::from_string("__builtin_fs_remove_file__".to_string()),
    );
    fs_module.insert(
        "remove_dir".to_string(),
        Value::from_string("__builtin_fs_remove_dir__".to_string()),
    );
    fs_module.insert(
        "copy".to_string(),
        Value::from_string("__builtin_fs_copy__".to_string()),
    );
    fs_module.insert(
        "rename".to_string(),
        Value::from_string("__builtin_fs_rename__".to_string()),
    );
    fs_module.insert(
        "metadata".to_string(),
        Value::from_string("__builtin_fs_metadata__".to_string()),
    );
    fs_module.insert(
        "read_dir".to_string(),
        Value::from_string("__builtin_fs_read_dir__".to_string()),
    );

    // Create env module object (Issue #92, Issue #96)
    // Environment access with Rust std::env API compatibility
    let mut env_module = HashMap::new();
    env_module.insert(
        "args".to_string(),
        Value::from_string("__builtin_env_args__".to_string()),
    );
    env_module.insert(
        "var".to_string(),
        Value::from_string("__builtin_env_var__".to_string()),
    );

    // QA-065 FIX: Create std::math module with mathematical functions
    // Uses existing __builtin_*__ patterns to reuse eval_builtin.rs implementations
    let mut math_module = HashMap::new();
    math_module.insert(
        "sqrt".to_string(),
        Value::from_string("__builtin_sqrt__".to_string()),
    );
    math_module.insert(
        "sin".to_string(),
        Value::from_string("__builtin_sin__".to_string()),
    );
    math_module.insert(
        "cos".to_string(),
        Value::from_string("__builtin_cos__".to_string()),
    );
    math_module.insert(
        "tan".to_string(),
        Value::from_string("__builtin_tan__".to_string()),
    );
    math_module.insert(
        "pow".to_string(),
        Value::from_string("__builtin_pow__".to_string()),
    );
    math_module.insert(
        "abs".to_string(),
        Value::from_string("__builtin_abs__".to_string()),
    );
    math_module.insert(
        "floor".to_string(),
        Value::from_string("__builtin_floor__".to_string()),
    );
    math_module.insert(
        "ceil".to_string(),
        Value::from_string("__builtin_ceil__".to_string()),
    );
    math_module.insert(
        "log".to_string(),
        Value::from_string("__builtin_log__".to_string()),
    );
    math_module.insert(
        "log10".to_string(),
        Value::from_string("__builtin_log10__".to_string()),
    );
    math_module.insert(
        "exp".to_string(),
        Value::from_string("__builtin_exp__".to_string()),
    );
    math_module.insert(
        "random".to_string(),
        Value::from_string("__builtin_random__".to_string()),
    );
    math_module.insert(
        "min".to_string(),
        Value::from_string("__builtin_min__".to_string()),
    );
    math_module.insert(
        "max".to_string(),
        Value::from_string("__builtin_max__".to_string()),
    );
    math_module.insert(
        "round".to_string(),
        Value::from_string("__builtin_round__".to_string()),
    );

    // Create std namespace object
    let mut std_namespace = HashMap::new();
    std_namespace.insert("time".to_string(), Value::Object(Arc::new(time_module)));
    std_namespace.insert(
        "process".to_string(),
        Value::Object(Arc::new(process_module)),
    );
    std_namespace.insert("fs".to_string(), Value::Object(Arc::new(fs_module)));
    std_namespace.insert("env".to_string(), Value::Object(Arc::new(env_module)));
    std_namespace.insert("math".to_string(), Value::Object(Arc::new(math_module)));

    // Add std to global environment
    global_env.insert("std".to_string(), Value::Object(Arc::new(std_namespace)));
}

/// Add chrono namespace with Utc, `DateTime`, Local types
/// Issue #82: chrono support for date/time operations
///
/// # Complexity
/// Cyclomatic complexity: 1 (within Toyota Way limits)
fn add_chrono_namespace(global_env: &mut HashMap<String, Value>) {
    use std::sync::Arc;

    // Create Utc module object with now() method
    let mut utc_module = HashMap::new();
    utc_module.insert(
        "now".to_string(),
        Value::from_string("__builtin_chrono_utc_now__".to_string()),
    );

    // Create chrono namespace object
    let mut chrono_namespace = HashMap::new();
    chrono_namespace.insert("Utc".to_string(), Value::Object(Arc::new(utc_module)));

    // Add chrono to global environment
    global_env.insert(
        "chrono".to_string(),
        Value::Object(Arc::new(chrono_namespace.clone())),
    );

    // Also add Utc directly to global environment for convenience (Issue #82)
    // This allows both `chrono::Utc` and `Utc` (after use statement) to work
    if let Some(Value::Object(chrono_obj)) = chrono_namespace.get("Utc") {
        global_env.insert("Utc".to_string(), Value::Object(Arc::clone(chrono_obj)));
    }
}

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

    #[test]
    fn test_init_global_environment() {
        let env = init_global_environment();

        // Test constants
        assert_eq!(env.get("nil"), Some(&Value::Nil));

        // Test basic functions exist
        assert!(env.contains_key("format"));
        assert!(env.contains_key("HashMap"));
        assert!(env.contains_key("DataFrame"));

        // Test math functions
        assert!(env.contains_key("sqrt"));
        assert!(env.contains_key("sin"));
        assert!(env.contains_key("max"));

        // Test I/O functions
        assert!(env.contains_key("println"));
        assert!(env.contains_key("print"));

        // Test utilities
        assert!(env.contains_key("len"));
        assert!(env.contains_key("range"));

        // Test type conversions
        assert!(env.contains_key("int"));
        assert!(env.contains_key("str"));

        // Test advanced utilities
        assert!(env.contains_key("reverse"));
        assert!(env.contains_key("sort"));

        // Test string functions
        assert!(env.contains_key("join"));
        assert!(env.contains_key("split"));

        // Test random/time
        assert!(env.contains_key("random"));
        assert!(env.contains_key("timestamp"));
    }

    #[test]
    fn test_builtin_function_markers() {
        let env = init_global_environment();

        // Verify functions are stored as special string markers
        if let Some(Value::String(s)) = env.get("sqrt") {
            assert_eq!(&**s, "__builtin_sqrt__");
        } else {
            panic!("sqrt should be a string marker");
        }

        if let Some(Value::String(s)) = env.get("println") {
            assert_eq!(&**s, "__builtin_println__");
        } else {
            panic!("println should be a string marker");
        }
    }

    #[test]
    fn test_environment_count() {
        let env = init_global_environment();

        // Should have all builtin functions
        // 1 constant + 9 basic + 11 math + 3 I/O + 3 utility
        // + 4 conversion + 8 advanced + 2 string + 5 random/time + 8 env + 12 fs + 13 path + 10 json = 89 total
        // env functions: env_args, env_var, env_set_var, env_remove_var, env_vars,
        //                env_current_dir, env_set_current_dir, env_temp_dir
        // fs functions: fs_read, fs_write, fs_exists, fs_create_dir, fs_remove_file,
        //               fs_remove_dir, fs_copy, fs_rename, fs_metadata, fs_read_dir,
        //               fs_canonicalize, fs_is_file
        // path functions: path_join, path_join_many, path_parent, path_file_name, path_file_stem,
        //                 path_extension, path_is_absolute, path_is_relative, path_canonicalize,
        //                 path_with_extension, path_with_file_name, path_components, path_normalize
        // json functions: json_parse, json_stringify, json_pretty, json_read, json_write,
        //                 json_validate, json_type, json_merge, json_get, json_set
        // test functions: assert, assert_eq (added in v3.86.0 for BUG-037)
        // math functions: log, log10, random (added in STDLIB-002: 3 new)
        // file I/O functions: append_file, delete_file (STDLIB-003: 2 new, others existed)
        // string/array functions: substring, slice, join, unique, zip, enumerate (STDLIB-004: 6 new)
        // directory walking: walk, glob, search, walk_with_options, walk_parallel, compute_hash (STDLIB-005: 6 new - 100% complete)
        // std namespace: std (contains std::time::now_millis) (STDLIB-006: 1 new - GitHub Issue #55)
        // Command module: Command (RUNTIME-090: 1 new - GitHub Issue #75)
        // Integer module: Integer (contains Integer.to_string - GitHub Issue #77)
        // chrono namespace: chrono (contains chrono::Utc - Issue #82)
        // Utc direct: Utc (convenience import - Issue #82)
        // parse_json alias: parse_json (Issue #131 - v3.182.0)
        // open() function: open (Issue #116 - v3.181.0)
        // Total: 89 base + 3 STDLIB-002 + 2 STDLIB-003 + 6 STDLIB-004 + 6 STDLIB-005 + 2 misc + 1 std + 1 other + 1 Command + 1 Integer + 1 chrono + 1 Utc + 1 parse_json + 1 open = 116
        assert_eq!(env.len(), 116);
    }

    #[test]
    fn test_math_functions_complete() {
        let env = init_global_environment();

        let expected_math = [
            "sqrt", "pow", "abs", "min", "max", "floor", "ceil", "round", "sin", "cos", "tan",
            "log", "log10", "random", // STDLIB-002: Advanced math functions
        ];

        for func in &expected_math {
            assert!(env.contains_key(*func), "Missing math function: {func}");
        }
    }

    #[test]
    fn test_advanced_utilities_complete() {
        let env = init_global_environment();

        let expected_advanced = [
            "reverse",
            "sort",
            "sum",
            "product",
            "unique",
            "flatten",
            "zip",
            "enumerate",
        ];

        for func in &expected_advanced {
            assert!(env.contains_key(*func), "Missing advanced utility: {func}");
        }
    }

    // ============================================================
    // Additional EXTREME TDD tests
    // ============================================================

    #[test]
    fn test_add_builtin_constants() {
        let mut env = HashMap::new();
        add_builtin_constants(&mut env);
        assert_eq!(env.get("nil"), Some(&Value::Nil));
        assert_eq!(env.len(), 1);
    }

    #[test]
    fn test_add_basic_builtins() {
        let mut env = HashMap::new();
        add_basic_builtins(&mut env);
        assert!(env.contains_key("format"));
        assert!(env.contains_key("HashMap"));
        assert!(env.contains_key("DataFrame"));
        assert!(env.contains_key("Command"));
        assert!(env.contains_key("String"));
        assert!(env.contains_key("DataFrame::new"));
        assert!(env.contains_key("DataFrame::from_range"));
        assert!(env.contains_key("col"));
    }

    #[test]
    fn test_add_math_functions() {
        let mut env = HashMap::new();
        add_math_functions(&mut env);
        let math_fns = [
            "sqrt", "pow", "abs", "min", "max", "floor", "ceil", "round", "sin", "cos", "tan",
            "log", "log10", "random",
        ];
        for func in &math_fns {
            assert!(env.contains_key(*func), "Missing: {func}");
        }
        assert_eq!(env.len(), 14);
    }

    #[test]
    fn test_add_io_functions() {
        let mut env = HashMap::new();
        add_io_functions(&mut env);
        assert!(env.contains_key("println"));
        assert!(env.contains_key("print"));
        assert!(env.contains_key("dbg"));
        assert_eq!(env.len(), 3);
    }

    #[test]
    fn test_add_utility_functions() {
        let mut env = HashMap::new();
        add_utility_functions(&mut env);
        assert!(env.contains_key("len"));
        assert!(env.contains_key("range"));
        assert!(env.contains_key("typeof"));
        assert!(env.contains_key("assert_eq"));
        assert!(env.contains_key("assert"));
        assert_eq!(env.len(), 5);
    }

    #[test]
    fn test_add_type_conversion_functions() {
        let mut env = HashMap::new();
        add_type_conversion_functions(&mut env);
        assert!(env.contains_key("int"));
        assert!(env.contains_key("float"));
        assert!(env.contains_key("str"));
        assert!(env.contains_key("bool"));
        assert_eq!(env.len(), 4);
    }

    #[test]
    fn test_add_advanced_utility_functions() {
        let mut env = HashMap::new();
        add_advanced_utility_functions(&mut env);
        let funcs = [
            "reverse",
            "sort",
            "sum",
            "product",
            "unique",
            "flatten",
            "zip",
            "enumerate",
        ];
        for func in &funcs {
            assert!(env.contains_key(*func), "Missing: {func}");
        }
        assert_eq!(env.len(), 8);
    }

    #[test]
    fn test_add_string_functions() {
        let mut env = HashMap::new();
        add_string_functions(&mut env);
        assert!(env.contains_key("join"));
        assert!(env.contains_key("split"));
        assert_eq!(env.len(), 2);
    }

    #[test]
    fn test_add_random_time_functions() {
        let mut env = HashMap::new();
        add_random_time_functions(&mut env);
        assert!(env.contains_key("random"));
        assert!(env.contains_key("random_int"));
        assert!(env.contains_key("timestamp"));
        assert!(env.contains_key("get_time_ms"));
        assert!(env.contains_key("std::time::now_millis"));
        assert!(env.contains_key("sleep"));
        assert_eq!(env.len(), 6);
    }

    #[test]
    fn test_add_environment_functions() {
        let mut env = HashMap::new();
        add_environment_functions(&mut env);
        let funcs = [
            "env_args",
            "env_var",
            "env_set_var",
            "env_remove_var",
            "env_vars",
            "env_current_dir",
            "env_set_current_dir",
            "env_temp_dir",
        ];
        for func in &funcs {
            assert!(env.contains_key(*func), "Missing: {func}");
        }
        assert_eq!(env.len(), 8);
    }

    #[test]
    fn test_add_fs_functions() {
        let mut env = HashMap::new();
        add_fs_functions(&mut env);
        let funcs = [
            "fs_read",
            "fs_write",
            "fs_exists",
            "fs_create_dir",
            "fs_remove_file",
            "fs_remove_dir",
            "fs_copy",
            "fs_rename",
            "fs_metadata",
            "fs_read_dir",
            "fs_canonicalize",
            "fs_is_file",
        ];
        for func in &funcs {
            assert!(env.contains_key(*func), "Missing: {func}");
        }
        assert_eq!(env.len(), 12);
    }

    #[test]
    fn test_add_stdlib003_functions() {
        let mut env = HashMap::new();
        add_stdlib003_functions(&mut env);
        assert!(env.contains_key("read_file"));
        assert!(env.contains_key("write_file"));
        assert!(env.contains_key("file_exists"));
        assert!(env.contains_key("append_file"));
        assert!(env.contains_key("delete_file"));
        assert!(env.contains_key("open"));
        assert_eq!(env.len(), 6);
    }

    #[test]
    fn test_add_stdlib005_functions() {
        let mut env = HashMap::new();
        add_stdlib005_functions(&mut env);
        assert!(env.contains_key("walk"));
        assert!(env.contains_key("walk_parallel"));
        assert!(env.contains_key("glob"));
        assert!(env.contains_key("search"));
        assert!(env.contains_key("walk_with_options"));
        assert!(env.contains_key("compute_hash"));
        assert_eq!(env.len(), 6);
    }

    #[test]
    fn test_add_path_functions() {
        let mut env = HashMap::new();
        add_path_functions(&mut env);
        let funcs = [
            "path_join",
            "path_join_many",
            "path_parent",
            "path_file_name",
            "path_file_stem",
            "path_extension",
            "path_is_absolute",
            "path_is_relative",
            "path_canonicalize",
            "path_with_extension",
            "path_with_file_name",
            "path_components",
            "path_normalize",
        ];
        for func in &funcs {
            assert!(env.contains_key(*func), "Missing: {func}");
        }
        assert_eq!(env.len(), 13);
    }

    #[test]
    fn test_add_json_functions() {
        let mut env = HashMap::new();
        add_json_functions(&mut env);
        let funcs = [
            "json_parse",
            "parse_json",
            "json_stringify",
            "json_pretty",
            "json_read",
            "json_write",
            "json_validate",
            "json_type",
            "json_merge",
            "json_get",
            "json_set",
        ];
        for func in &funcs {
            assert!(env.contains_key(*func), "Missing: {func}");
        }
        assert_eq!(env.len(), 11);
    }

    #[test]
    fn test_add_http_functions() {
        let mut env = HashMap::new();
        add_http_functions(&mut env);
        assert!(env.contains_key("http_get"));
        assert!(env.contains_key("http_post"));
        assert!(env.contains_key("http_put"));
        assert!(env.contains_key("http_delete"));
        assert_eq!(env.len(), 4);
    }

    #[test]
    fn test_add_std_namespace() {
        let mut env = HashMap::new();
        add_std_namespace(&mut env);
        assert!(env.contains_key("std"));
        if let Some(Value::Object(std_obj)) = env.get("std") {
            assert!(std_obj.contains_key("time"));
            assert!(std_obj.contains_key("process"));
            assert!(std_obj.contains_key("fs"));
            assert!(std_obj.contains_key("env"));
            assert!(std_obj.contains_key("math"));
        } else {
            panic!("std should be an Object");
        }
    }

    #[test]
    fn test_add_chrono_namespace() {
        let mut env = HashMap::new();
        add_chrono_namespace(&mut env);
        assert!(env.contains_key("chrono"));
        assert!(env.contains_key("Utc"));
        if let Some(Value::Object(chrono_obj)) = env.get("chrono") {
            assert!(chrono_obj.contains_key("Utc"));
        } else {
            panic!("chrono should be an Object");
        }
    }

    #[test]
    fn test_std_time_module() {
        let mut env = HashMap::new();
        add_std_namespace(&mut env);
        if let Some(Value::Object(std_obj)) = env.get("std") {
            if let Some(Value::Object(time_obj)) = std_obj.get("time") {
                assert!(time_obj.contains_key("now_millis"));
            } else {
                panic!("std::time should be an Object");
            }
        }
    }

    #[test]
    fn test_std_process_module() {
        let mut env = HashMap::new();
        add_std_namespace(&mut env);
        if let Some(Value::Object(std_obj)) = env.get("std") {
            if let Some(Value::Object(process_obj)) = std_obj.get("process") {
                assert!(process_obj.contains_key("Command"));
            } else {
                panic!("std::process should be an Object");
            }
        }
    }

    #[test]
    fn test_std_fs_module() {
        let mut env = HashMap::new();
        add_std_namespace(&mut env);
        if let Some(Value::Object(std_obj)) = env.get("std") {
            if let Some(Value::Object(fs_obj)) = std_obj.get("fs") {
                assert!(fs_obj.contains_key("write"));
                assert!(fs_obj.contains_key("read"));
                assert!(fs_obj.contains_key("read_to_string"));
                assert!(fs_obj.contains_key("exists"));
                assert!(fs_obj.contains_key("create_dir"));
                assert!(fs_obj.contains_key("create_dir_all"));
            } else {
                panic!("std::fs should be an Object");
            }
        }
    }

    #[test]
    fn test_std_env_module() {
        let mut env = HashMap::new();
        add_std_namespace(&mut env);
        if let Some(Value::Object(std_obj)) = env.get("std") {
            if let Some(Value::Object(env_obj)) = std_obj.get("env") {
                assert!(env_obj.contains_key("args"));
                assert!(env_obj.contains_key("var"));
            } else {
                panic!("std::env should be an Object");
            }
        }
    }

    #[test]
    fn test_std_math_module() {
        let mut env = HashMap::new();
        add_std_namespace(&mut env);
        if let Some(Value::Object(std_obj)) = env.get("std") {
            if let Some(Value::Object(math_obj)) = std_obj.get("math") {
                let funcs = [
                    "sqrt", "sin", "cos", "tan", "pow", "abs", "floor", "ceil", "log", "log10",
                    "exp", "random", "min", "max", "round",
                ];
                for func in &funcs {
                    assert!(math_obj.contains_key(*func), "Missing std::math::{func}");
                }
            } else {
                panic!("std::math should be an Object");
            }
        }
    }

    #[test]
    fn test_chrono_utc_module() {
        let mut env = HashMap::new();
        add_chrono_namespace(&mut env);
        if let Some(Value::Object(chrono_obj)) = env.get("chrono") {
            if let Some(Value::Object(utc_obj)) = chrono_obj.get("Utc") {
                assert!(utc_obj.contains_key("now"));
            } else {
                panic!("chrono::Utc should be an Object");
            }
        }
    }

    #[test]
    fn test_builtin_marker_format() {
        let env = init_global_environment();
        // All builtin functions should have __builtin_*__ format
        let test_funcs = ["sqrt", "println", "len", "range", "int"];
        for func in &test_funcs {
            if let Some(Value::String(s)) = env.get(*func) {
                assert!(
                    s.starts_with("__builtin_"),
                    "Function {} should start with __builtin_",
                    func
                );
                assert!(s.ends_with("__"), "Function {} should end with __", func);
            }
        }
    }

    #[test]
    fn test_dataframe_qualified_names() {
        let env = init_global_environment();
        assert!(env.contains_key("DataFrame::new"));
        assert!(env.contains_key("DataFrame::from_range"));
        assert!(env.contains_key("DataFrame::from_rows"));
        assert!(env.contains_key("DataFrame::from_csv_string"));
        assert!(env.contains_key("DataFrame::from_json"));
    }

    #[test]
    fn test_no_duplicate_builtin_markers() {
        let env = init_global_environment();
        // Verify specific functions have unique markers
        let format_marker = env.get("format");
        let println_marker = env.get("println");
        assert_ne!(format_marker, println_marker);
    }

    #[test]
    fn test_io_functions_complete() {
        let mut env = HashMap::new();
        add_io_functions(&mut env);
        let expected = ["println", "print", "dbg"];
        for func in &expected {
            assert!(env.contains_key(*func), "Missing IO function: {func}");
        }
    }

    #[test]
    fn test_type_conversion_complete() {
        let mut env = HashMap::new();
        add_type_conversion_functions(&mut env);
        let expected = ["int", "float", "str", "bool"];
        for func in &expected {
            assert!(env.contains_key(*func), "Missing conversion: {func}");
        }
    }

    #[test]
    fn test_utility_functions_complete() {
        let mut env = HashMap::new();
        add_utility_functions(&mut env);
        let expected = ["len", "range", "typeof", "assert_eq", "assert"];
        for func in &expected {
            assert!(env.contains_key(*func), "Missing utility: {func}");
        }
    }

    #[test]
    fn test_string_functions_complete() {
        let mut env = HashMap::new();
        add_string_functions(&mut env);
        let expected = ["join", "split"];
        for func in &expected {
            assert!(env.contains_key(*func), "Missing string function: {func}");
        }
    }

    #[test]
    fn test_fs_functions_complete() {
        let mut env = HashMap::new();
        add_fs_functions(&mut env);
        let expected = [
            "fs_read",
            "fs_write",
            "fs_exists",
            "fs_create_dir",
            "fs_remove_file",
            "fs_remove_dir",
            "fs_copy",
            "fs_rename",
        ];
        for func in &expected {
            assert!(env.contains_key(*func), "Missing fs function: {func}");
        }
    }

    #[test]
    fn test_path_functions_complete() {
        let mut env = HashMap::new();
        add_path_functions(&mut env);
        let expected = [
            "path_join",
            "path_join_many",
            "path_parent",
            "path_file_name",
            "path_file_stem",
        ];
        for func in &expected {
            assert!(env.contains_key(*func), "Missing path function: {func}");
        }
    }

    #[test]
    fn test_json_functions_complete() {
        let mut env = HashMap::new();
        add_json_functions(&mut env);
        let expected = ["json_parse", "parse_json", "json_stringify", "json_pretty"];
        for func in &expected {
            assert!(env.contains_key(*func), "Missing json function: {func}");
        }
    }

    #[test]
    fn test_stdlib003_functions_complete() {
        let mut env = HashMap::new();
        add_stdlib003_functions(&mut env);
        let expected = [
            "read_file",
            "write_file",
            "file_exists",
            "append_file",
            "delete_file",
        ];
        for func in &expected {
            assert!(
                env.contains_key(*func),
                "Missing stdlib003 function: {func}"
            );
        }
    }

    #[test]
    fn test_stdlib005_functions_complete() {
        let mut env = HashMap::new();
        add_stdlib005_functions(&mut env);
        let expected = [
            "walk",
            "walk_parallel",
            "glob",
            "search",
            "walk_with_options",
        ];
        for func in &expected {
            assert!(
                env.contains_key(*func),
                "Missing stdlib005 function: {func}"
            );
        }
    }

    #[test]
    fn test_environment_functions_complete() {
        let mut env = HashMap::new();
        add_environment_functions(&mut env);
        let expected = [
            "env_args",
            "env_var",
            "env_set_var",
            "env_remove_var",
            "env_vars",
        ];
        for func in &expected {
            assert!(env.contains_key(*func), "Missing env function: {func}");
        }
    }

    #[test]
    fn test_random_time_functions_complete() {
        let mut env = HashMap::new();
        add_random_time_functions(&mut env);
        let expected = [
            "random",
            "random_int",
            "timestamp",
            "get_time_ms",
            "sleep",
            "std::time::now_millis",
        ];
        for func in &expected {
            assert!(
                env.contains_key(*func),
                "Missing random/time function: {func}"
            );
        }
    }

    #[test]
    fn test_advanced_utility_functions_complete() {
        let mut env = HashMap::new();
        add_advanced_utility_functions(&mut env);
        let expected = [
            "reverse",
            "sort",
            "sum",
            "product",
            "unique",
            "flatten",
            "zip",
            "enumerate",
        ];
        for func in &expected {
            assert!(env.contains_key(*func), "Missing advanced util: {func}");
        }
    }

    #[test]
    fn test_global_env_contains_dataframe() {
        let env = init_global_environment();
        assert!(env.contains_key("DataFrame::new"));
        assert!(env.contains_key("DataFrame::from_rows"));
    }

    #[test]
    fn test_global_env_contains_nil() {
        let env = init_global_environment();
        assert_eq!(env.get("nil"), Some(&Value::Nil));
    }
}