claude-sdk-rs 1.0.0

Rust SDK for Claude AI with CLI integration - type-safe async API for Claude Code and direct SDK usage
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
//! Configuration tests
//!
//! This module provides comprehensive tests for the Config structure,
//! including builder pattern, validation, defaults, and edge cases.

use crate::core::config::{validate_query, Config, StreamFormat};
use crate::core::error::Error;

/// Test configuration defaults
#[cfg(test)]
mod config_defaults_tests {
    use super::*;

    #[test]
    fn test_config_default_values() {
        let config = Config::default();

        assert_eq!(config.stream_format, StreamFormat::Text);
        assert_eq!(config.timeout_secs, Some(30));
        assert_eq!(config.model, None);
        assert_eq!(config.system_prompt, None);
        assert_eq!(config.allowed_tools, None);
        assert!(!config.verbose);
        assert!(config.non_interactive);
        assert_eq!(config.max_tokens, None);
        assert_eq!(config.mcp_config_path, None);
    }

    #[test]
    fn test_stream_format_default() {
        let format = StreamFormat::default();
        assert_eq!(format, StreamFormat::Text);
    }

    #[test]
    fn test_stream_format_variants() {
        // Test all StreamFormat variants exist and are properly named
        match StreamFormat::Text {
            StreamFormat::Text => {}
            StreamFormat::Json => {}
            StreamFormat::StreamJson => {}
        }

        match StreamFormat::Json {
            StreamFormat::Text => {}
            StreamFormat::Json => {}
            StreamFormat::StreamJson => {}
        }

        match StreamFormat::StreamJson {
            StreamFormat::Text => {}
            StreamFormat::Json => {}
            StreamFormat::StreamJson => {}
        }
    }
}

/// Test configuration builder pattern
#[cfg(test)]
mod config_builder_tests {
    use super::*;
    use std::path::PathBuf;

    #[test]
    fn test_builder_basic_construction() {
        let config = Config::builder().build().unwrap();

        // Builder should produce default values when no customization
        assert_eq!(config.stream_format, StreamFormat::Text);
        assert_eq!(config.timeout_secs, Some(30));
        assert_eq!(config.model, None);
        assert_eq!(config.system_prompt, None);
    }

    #[test]
    fn test_builder_with_model() {
        let config = Config::builder()
            .model("claude-3-opus-20240229")
            .build()
            .unwrap();

        assert_eq!(config.model, Some("claude-3-opus-20240229".to_string()));
        assert_eq!(config.stream_format, StreamFormat::Text); // Other fields default
    }

    #[test]
    fn test_builder_with_system_prompt() {
        let prompt = "You are a helpful assistant specialized in code analysis.";
        let config = Config::builder().system_prompt(prompt).build().unwrap();

        assert_eq!(config.system_prompt, Some(prompt.to_string()));
    }

    #[test]
    fn test_builder_with_stream_format() {
        let config = Config::builder()
            .stream_format(StreamFormat::Json)
            .build()
            .unwrap();

        assert_eq!(config.stream_format, StreamFormat::Json);
    }

    #[test]
    fn test_builder_with_timeout_secs() {
        let config = Config::builder().timeout_secs(120).build().unwrap();

        assert_eq!(config.timeout_secs, Some(120));
    }

    #[test]
    fn test_builder_with_tools() {
        let tools = vec!["mcp__server__search".to_string(), "bash:ls".to_string()];
        let config = Config::builder()
            .allowed_tools(tools.clone())
            .build()
            .unwrap();

        assert_eq!(config.allowed_tools, Some(tools));
    }

    #[test]
    fn test_builder_with_max_tokens() {
        let config = Config::builder().max_tokens(1000).build().unwrap();

        assert_eq!(config.max_tokens, Some(1000));
    }

    #[test]
    fn test_builder_with_mcp_config() {
        let path = PathBuf::from("/path/to/mcp.json");
        let config = Config::builder().mcp_config(path.clone()).build().unwrap();

        assert_eq!(config.mcp_config_path, Some(path));
    }

    #[test]
    fn test_builder_chaining_all_options() {
        let tools = vec!["mcp__server__tool1".to_string(), "bash:ls".to_string()];
        let mcp_path = PathBuf::from("/test/mcp.json");

        let config = Config::builder()
            .model("claude-3-sonnet-20240229")
            .system_prompt("Be concise and accurate")
            .stream_format(StreamFormat::StreamJson)
            .timeout_secs(180)
            .allowed_tools(tools.clone())
            .max_tokens(2000)
            .mcp_config(mcp_path.clone())
            .verbose(true)
            .non_interactive(false)
            .build()
            .unwrap();

        assert_eq!(config.model, Some("claude-3-sonnet-20240229".to_string()));
        assert_eq!(
            config.system_prompt,
            Some("Be concise and accurate".to_string())
        );
        assert_eq!(config.stream_format, StreamFormat::StreamJson);
        assert_eq!(config.timeout_secs, Some(180));
        assert_eq!(config.allowed_tools, Some(tools));
        assert_eq!(config.max_tokens, Some(2000));
        assert_eq!(config.mcp_config_path, Some(mcp_path));
        assert!(config.verbose);
        assert!(!config.non_interactive);
    }

    #[test]
    fn test_builder_overwrite_values() {
        let config = Config::builder()
            .model("claude-3-opus-20240229")
            .model("claude-3-sonnet-20240229") // Overwrite previous
            .timeout_secs(60)
            .timeout_secs(120) // Overwrite previous
            .build()
            .unwrap();

        assert_eq!(config.model, Some("claude-3-sonnet-20240229".to_string()));
        assert_eq!(config.timeout_secs, Some(120));
    }
}

/// Test configuration validation
#[cfg(test)]
mod config_validation_tests {
    use super::*;

    #[test]
    fn test_valid_claude_models() {
        let valid_models = vec![
            "claude-3-opus-20240229",
            "claude-3-sonnet-20240229",
            "claude-3-haiku-20240307",
            "claude-3-5-sonnet-20241022",
        ];

        for model in valid_models {
            let config = Config::builder().model(model).build().unwrap();

            assert_eq!(config.model, Some(model.to_string()));
        }
    }

    #[test]
    fn test_timeout_validation() {
        let timeouts = vec![1, 30, 300, 3600];

        for timeout in timeouts {
            let config = Config::builder().timeout_secs(timeout).build().unwrap();

            assert_eq!(config.timeout_secs, Some(timeout));
        }
    }

    #[test]
    fn test_zero_timeout() {
        let result = Config::builder().timeout_secs(0).build();

        // Zero timeout should fail validation
        assert!(result.is_err());
    }

    #[test]
    fn test_very_large_timeout() {
        let large_timeout = 86400; // 24 hours
        let result = Config::builder().timeout_secs(large_timeout).build();

        // 24 hours exceeds our max of 3600 seconds (1 hour)
        assert!(result.is_err());
    }

    #[test]
    fn test_max_tokens_validation() {
        let token_limits = vec![1, 100, 1000, 100_000];

        for limit in token_limits {
            let config = Config::builder().max_tokens(limit).build().unwrap();

            assert_eq!(config.max_tokens, Some(limit));
        }
    }
}

/// Test system prompt validation and edge cases
#[cfg(test)]
mod system_prompt_tests {
    use super::*;

    #[test]
    fn test_empty_system_prompt() {
        let config = Config::builder().system_prompt("").build().unwrap();

        assert_eq!(config.system_prompt, Some("".to_string()));
    }

    #[test]
    fn test_multiline_system_prompt() {
        let prompt = "You are a helpful assistant.\nBe concise.\nAlways be accurate.";
        let config = Config::builder().system_prompt(prompt).build().unwrap();

        assert_eq!(config.system_prompt, Some(prompt.to_string()));
    }

    #[test]
    fn test_unicode_system_prompt() {
        let prompt = "You are a helpful assistant 🤖. Respond in English, français, or 日本語.";
        let config = Config::builder().system_prompt(prompt).build().unwrap();

        assert_eq!(config.system_prompt, Some(prompt.to_string()));
    }

    #[test]
    fn test_very_long_system_prompt() {
        let long_prompt = "a".repeat(10000);
        let config = Config::builder()
            .system_prompt(&long_prompt)
            .build()
            .unwrap();

        assert_eq!(config.system_prompt, Some(long_prompt));
    }

    #[test]
    fn test_system_prompt_with_special_characters() {
        let prompt = r#"You are an AI assistant. Use JSON format: {"response": "content"}. Handle "quotes" and 'apostrophes'."#;
        let config = Config::builder().system_prompt(prompt).build().unwrap();

        assert_eq!(config.system_prompt, Some(prompt.to_string()));
    }
}

/// Test tool configuration
#[cfg(test)]
mod tool_configuration_tests {
    use super::*;

    #[test]
    fn test_empty_tools_list() {
        let config = Config::builder().allowed_tools(vec![]).build().unwrap();

        assert_eq!(config.allowed_tools, Some(vec![]));
    }

    #[test]
    fn test_single_tool() {
        let tools = vec!["mcp__server__search".to_string()];
        let config = Config::builder()
            .allowed_tools(tools.clone())
            .build()
            .unwrap();

        assert_eq!(config.allowed_tools, Some(tools));
    }

    #[test]
    fn test_multiple_tools() {
        let tools = vec![
            "mcp__server__search".to_string(),
            "mcp__server__filesystem".to_string(),
            "bash:ls".to_string(),
        ];
        let config = Config::builder()
            .allowed_tools(tools.clone())
            .build()
            .unwrap();

        assert_eq!(config.allowed_tools, Some(tools));
    }

    #[test]
    fn test_duplicate_tools() {
        let tools = vec![
            "bash:ls".to_string(),
            "bash:ls".to_string(), // Duplicate
            "mcp__server__search".to_string(),
        ];
        let config = Config::builder()
            .allowed_tools(tools.clone())
            .build()
            .unwrap();

        // Duplicates should be preserved (filtering can happen at runtime)
        assert_eq!(config.allowed_tools, Some(tools));
    }

    #[test]
    fn test_tool_name_patterns() {
        let tools = vec![
            "bash:ls".to_string(),                     // Simple bash command
            "mcp__server__filesystem".to_string(),     // MCP pattern
            "mcp__custom-tool__name".to_string(),      // Hyphenated MCP
            "mcp__tool_with__underscores".to_string(), // Underscored MCP
            "mcp__numeric123__tool".to_string(),       // With numbers
        ];
        let config = Config::builder()
            .allowed_tools(tools.clone())
            .build()
            .unwrap();

        assert_eq!(config.allowed_tools, Some(tools));
    }
}

/// Test configuration cloning and serialization
#[cfg(test)]
mod config_cloning_tests {
    use super::*;

    #[test]
    fn test_config_clone() {
        let original = Config::builder()
            .model("claude-3-opus-20240229")
            .system_prompt("Test prompt")
            .stream_format(StreamFormat::Json)
            .timeout_secs(60)
            .allowed_tools(vec!["Bash(echo)".to_string()])
            .build()
            .unwrap();

        let cloned = original.clone();

        assert_eq!(original.model, cloned.model);
        assert_eq!(original.system_prompt, cloned.system_prompt);
        assert_eq!(original.stream_format, cloned.stream_format);
        assert_eq!(original.timeout_secs, cloned.timeout_secs);
        assert_eq!(original.allowed_tools, cloned.allowed_tools);
    }

    #[test]
    fn test_config_debug_format() {
        let config = Config::builder()
            .model("claude-3-sonnet-20240229")
            .build()
            .unwrap();

        let debug_str = format!("{:?}", config);
        assert!(debug_str.contains("claude-3-sonnet-20240229"));
    }

    #[test]
    fn test_stream_format_debug() {
        assert_eq!(format!("{:?}", StreamFormat::Text), "Text");
        assert_eq!(format!("{:?}", StreamFormat::Json), "Json");
        assert_eq!(format!("{:?}", StreamFormat::StreamJson), "StreamJson");
    }

    #[test]
    fn test_stream_format_clone() {
        let original = StreamFormat::StreamJson;
        let cloned = original;
        assert_eq!(original, cloned);
    }
}

/// Test configuration edge cases and error conditions
#[cfg(test)]
mod config_edge_cases {
    use super::*;

    #[test]
    fn test_config_with_none_values() {
        let config = Config {
            model: None,
            system_prompt: None,
            stream_format: StreamFormat::Text,
            timeout_secs: None,
            allowed_tools: None,
            mcp_config_path: None,
            non_interactive: true,
            verbose: false,
            max_tokens: None,
            continue_session: false,
            resume_session_id: None,
            append_system_prompt: None,
            disallowed_tools: None,
            max_turns: None,
            skip_permissions: true,
        };

        assert_eq!(config.model, None);
        assert_eq!(config.system_prompt, None);
        assert_eq!(config.timeout_secs, None);
    }

    #[test]
    fn test_empty_string_values() {
        let result = Config::builder().model("").system_prompt("").build();

        // Empty strings are allowed - no validation on model/prompt content
        assert!(result.is_ok());
        let config = result.unwrap();
        assert_eq!(config.model, Some("".to_string()));
        assert_eq!(config.system_prompt, Some("".to_string()));
    }

    #[test]
    fn test_whitespace_only_values() {
        let config = Config::builder()
            .model("   ")
            .system_prompt("\t\n  \r\n")
            .build()
            .unwrap();

        assert_eq!(config.model, Some("   ".to_string()));
        assert_eq!(config.system_prompt, Some("\t\n  \r\n".to_string()));
    }

    #[test]
    fn test_boolean_flags() {
        let config1 = Config::builder()
            .verbose(true)
            .non_interactive(false)
            .build()
            .unwrap();

        assert!(config1.verbose);
        assert!(!config1.non_interactive);

        let config2 = Config::builder()
            .verbose(false)
            .non_interactive(true)
            .build()
            .unwrap();

        assert!(!config2.verbose);
        assert!(config2.non_interactive);
    }
}

/// Property-based tests for Config validation
#[cfg(test)]
mod property_tests {
    use super::*;
    use proptest::prelude::*;

    proptest! {
        #[test]
        fn test_config_builder_with_arbitrary_strings(
            model in any::<Option<String>>(),
            system_prompt in any::<Option<String>>(),
        ) {
            let mut builder = Config::builder();

            if let Some(m) = model {
                builder = builder.model(m);
            }

            if let Some(sp) = system_prompt {
                builder = builder.system_prompt(sp);
            }

            // Try to build - might fail due to validation
            let _ = builder.build();
        }

        #[test]
        fn test_config_builder_with_arbitrary_numbers(
            timeout in 1u64..=3600,
            max_tokens in 1usize..=200_000,
        ) {
            let result = Config::builder()
                .timeout_secs(timeout)
                .max_tokens(max_tokens)
                .build();

            // Valid ranges should always succeed
            assert!(result.is_ok());
            let config = result.unwrap();
            assert_eq!(config.timeout_secs, Some(timeout));
            assert_eq!(config.max_tokens, Some(max_tokens));
        }

        #[test]
        fn test_config_builder_with_arbitrary_tools(
            tools in prop::collection::vec(any::<String>(), 0..10),
        ) {
            // Note: arbitrary tools might fail validation
            let _ = Config::builder()
                .allowed_tools(tools.clone())
                .build();
        }

        #[test]
        fn test_config_clone_consistency(
            timeout in 1u64..=3600,
            verbose in any::<bool>(),
            non_interactive in any::<bool>(),
        ) {
            let result = Config::builder()
                .timeout_secs(timeout)
                .verbose(verbose)
                .non_interactive(non_interactive)
                .build();

            if let Ok(config) = result {
                let cloned = config.clone();

                assert_eq!(config.timeout_secs, cloned.timeout_secs);
                assert_eq!(config.verbose, cloned.verbose);
                assert_eq!(config.non_interactive, cloned.non_interactive);
                assert_eq!(config.stream_format, cloned.stream_format);
            }
        }

        #[test]
        fn test_config_builder_idempotence(
            model in any::<String>(),
            timeout in 1u64..=3600,
        ) {
            // Setting the same value multiple times should result in the last value
            let result = Config::builder()
                .model(&model)
                .model(&model)
                .timeout_secs(timeout)
                .timeout_secs(timeout)
                .build();

            if let Ok(config) = result {
                assert_eq!(config.model, Some(model));
                assert_eq!(config.timeout_secs, Some(timeout));
            }
        }
    }
}

/// Additional validation tests for Config edge cases
#[cfg(test)]
mod config_validation_edge_cases {
    use super::*;
    use std::path::PathBuf;

    #[test]
    fn test_config_with_invalid_timeout_zero() {
        // Zero timeout should fail validation
        let result = Config::builder().timeout_secs(0).build();

        assert!(result.is_err());
    }

    #[test]
    fn test_config_with_negative_max_tokens_workaround() {
        // Since max_tokens is usize, we can't have negative values
        // Zero should fail validation
        let result = Config::builder().max_tokens(0).build();

        assert!(result.is_err());
    }

    #[test]
    fn test_config_with_invalid_mcp_path() {
        // Config should accept any path, validation happens at runtime
        let invalid_path = PathBuf::from("/this/path/does/not/exist/mcp.json");
        let config = Config::builder()
            .mcp_config(invalid_path.clone())
            .build()
            .unwrap();

        assert_eq!(config.mcp_config_path, Some(invalid_path));
    }

    #[test]
    fn test_config_with_conflicting_stream_formats() {
        // Last format wins when setting multiple times
        let config = Config::builder()
            .stream_format(StreamFormat::Text)
            .stream_format(StreamFormat::Json)
            .stream_format(StreamFormat::StreamJson)
            .build()
            .unwrap();

        assert_eq!(config.stream_format, StreamFormat::StreamJson);
    }

    #[test]
    fn test_config_with_invalid_tool_names() {
        // Test that invalid tool names fail validation
        let invalid_tools = vec![
            vec!["".to_string()],                 // Empty
            vec![" ".to_string()],                // Whitespace
            vec!["tool with spaces".to_string()], // Spaces
            vec!["tool@#$%".to_string()],         // Special chars
            vec!["🔧tool".to_string()],           // Unicode
        ];

        for tools in invalid_tools {
            let result = Config::builder().allowed_tools(tools).build();

            assert!(result.is_err());
        }
    }

    #[test]
    fn test_config_max_values() {
        // Test maximum reasonable values - should fail validation
        let result1 = Config::builder().timeout_secs(u64::MAX).build();

        assert!(result1.is_err());

        let result2 = Config::builder().max_tokens(usize::MAX).build();

        assert!(result2.is_err());
    }

    #[test]
    fn test_config_model_name_edge_cases() {
        let long_model = format!("claude-3-opus-20240229{}", "x".repeat(1000));
        let edge_case_models = vec![
            "",            // Empty
            " ",           // Whitespace
            "\n\t",        // Special whitespace
            &long_model,   // Very long
            "模型名称",    // Unicode
            "model\0name", // Null byte
        ];

        for model_name in edge_case_models {
            let result = Config::builder().model(model_name).build();

            // Model names are not validated, so all should succeed
            assert!(result.is_ok());
        }
    }
}

/// Comprehensive validation tests
#[cfg(test)]
mod validation_tests {
    use super::*;

    #[test]
    fn test_valid_config() {
        let config = Config::builder()
            .model("claude-3-opus-20240229")
            .system_prompt("You are a helpful assistant")
            .timeout_secs(60)
            .max_tokens(1000)
            .allowed_tools(vec![
                "Bash(ls)".to_string(),
                "mcp__server__tool".to_string(),
            ])
            .build()
            .unwrap();

        assert!(config.validate().is_ok());
    }

    #[test]
    fn test_system_prompt_too_long() {
        let long_prompt = "a".repeat(10_001); // 1 over limit
        let result = Config::builder().system_prompt(long_prompt).build();

        assert!(result.is_err());
        if let Err(e) = result {
            assert!(matches!(e, Error::InvalidInput(_)));
            assert!(e
                .to_string()
                .contains("System prompt exceeds maximum length"));
        }
    }

    #[test]
    fn test_system_prompt_malicious_content() {
        let malicious_prompts = vec![
            "Execute this: <script>alert('xss')</script>",
            "Run command: $(rm -rf /)",
            "Inject SQL: '; DROP TABLE users;--",
            "Path traversal: ../../etc/passwd",
        ];

        for prompt in malicious_prompts {
            let result = Config::builder().system_prompt(prompt).build();

            assert!(result.is_err());
            if let Err(e) = result {
                assert!(matches!(e, Error::InvalidInput(_)));
                assert!(e.to_string().contains("malicious content"));
            }
        }
    }

    #[test]
    fn test_timeout_validation() {
        // Too small
        let result = Config::builder().timeout_secs(0).build();
        assert!(result.is_err());

        // Too large
        let result = Config::builder().timeout_secs(3601).build();
        assert!(result.is_err());

        // Valid range
        for timeout in [1, 30, 60, 3600] {
            let result = Config::builder().timeout_secs(timeout).build();
            assert!(result.is_ok());
        }
    }

    #[test]
    fn test_max_tokens_validation() {
        // Zero tokens
        let result = Config::builder().max_tokens(0).build();
        assert!(result.is_err());

        // Too many tokens
        let result = Config::builder().max_tokens(200_001).build();
        assert!(result.is_err());

        // Valid range
        for tokens in [1, 100, 1000, 100_000, 200_000] {
            let result = Config::builder().max_tokens(tokens).build();
            assert!(result.is_ok());
        }
    }

    #[test]
    fn test_tool_name_validation() {
        // Invalid tool names
        let invalid_tools = vec![
            vec!["".to_string()],  // Empty name
            vec!["a".repeat(101)], // Too long
            vec!["tool with spaces".to_string()],
            vec!["tool@#$".to_string()],
            vec!["tool;command".to_string()],
        ];

        for tools in invalid_tools {
            let result = Config::builder().allowed_tools(tools).build();
            assert!(result.is_err());
        }

        // Valid tool names
        let valid_tools = vec![
            vec!["bash:ls".to_string()],
            vec!["mcp__server__tool".to_string()],
            vec!["mcp__tool-name__action".to_string()],
            vec!["mcp__tool_name__function".to_string()],
            vec!["Bash(command)".to_string()],
        ];

        for tools in valid_tools {
            let result = Config::builder().allowed_tools(tools).build();
            assert!(result.is_ok());
        }
    }

    #[test]
    fn test_empty_mcp_path_validation() {
        let result = Config::builder()
            .mcp_config(std::path::PathBuf::from(""))
            .build();

        assert!(result.is_err());
        if let Err(e) = result {
            assert!(matches!(e, Error::InvalidInput(_)));
            assert!(e.to_string().contains("MCP config path cannot be empty"));
        }
    }

    #[test]
    fn test_query_validation() {
        // Empty query
        assert!(validate_query("").is_err());

        // Valid queries
        assert!(validate_query("Hello, Claude!").is_ok());
        assert!(validate_query("What is 2 + 2?").is_ok());

        // Very long query
        let long_query = "a".repeat(100_000);
        assert!(validate_query(&long_query).is_ok());

        // Too long query
        let too_long_query = "a".repeat(100_001);
        assert!(validate_query(&too_long_query).is_err());

        // Malicious queries
        let malicious_queries = vec![
            "<script>alert('xss')</script>",
            "$(rm -rf /)",
            "'; DROP TABLE users;--",
            "../../etc/passwd",
        ];

        for query in malicious_queries {
            let result = validate_query(query);
            assert!(result.is_err());
            if let Err(e) = result {
                assert!(matches!(e, Error::InvalidInput(_)));
                assert!(e.to_string().contains("malicious content"));
            }
        }
    }

    #[test]
    fn test_edge_case_validation() {
        // All validation at once
        let config = Config::builder()
            .system_prompt("Safe prompt")
            .timeout_secs(30)
            .max_tokens(1000)
            .allowed_tools(vec!["Bash(ls)".to_string()])
            .mcp_config(std::path::PathBuf::from("/path/to/config"))
            .build()
            .unwrap();

        assert!(config.validate().is_ok());
    }

    #[test]
    fn test_validation_error_messages() {
        // Check that error messages are informative
        let result = Config::builder().system_prompt("a".repeat(10_001)).build();

        if let Err(e) = result {
            let error_msg = e.to_string();
            assert!(error_msg.contains("10000")); // Shows limit
            assert!(error_msg.contains("10001")); // Shows actual
        }

        let result = Config::builder().timeout_secs(5000).build();

        if let Err(e) = result {
            let error_msg = e.to_string();
            assert!(error_msg.contains("3600")); // Shows max
            assert!(error_msg.contains("5000")); // Shows actual
        }
    }
}

/// Test new configuration fields and functionality
#[cfg(test)]
mod new_config_fields_tests {
    use super::*;

    #[test]
    fn test_default_new_fields() {
        let config = Config::default();

        assert!(!config.continue_session);
        assert_eq!(config.resume_session_id, None);
        assert_eq!(config.append_system_prompt, None);
        assert_eq!(config.disallowed_tools, None);
        assert_eq!(config.max_turns, None);
        assert!(config.skip_permissions); // Default true
    }

    #[test]
    fn test_continue_session_builder() {
        let config = Config::builder().continue_session().build().unwrap();

        assert!(config.continue_session);
    }

    #[test]
    fn test_resume_session_builder() {
        let session_id = "session_123".to_string();
        let config = Config::builder()
            .resume_session(session_id.clone())
            .build()
            .unwrap();

        assert_eq!(config.resume_session_id, Some(session_id));
    }

    #[test]
    fn test_append_system_prompt_builder() {
        let append_prompt = "Additionally, be concise.";
        let config = Config::builder()
            .append_system_prompt(append_prompt)
            .build()
            .unwrap();

        assert_eq!(config.append_system_prompt, Some(append_prompt.to_string()));
    }

    #[test]
    fn test_disallowed_tools_builder() {
        let tools = vec!["bash:rm".to_string(), "mcp__filesystem__delete".to_string()];
        let config = Config::builder()
            .disallowed_tools(tools.clone())
            .build()
            .unwrap();

        assert_eq!(config.disallowed_tools, Some(tools));
    }

    #[test]
    fn test_max_turns_builder() {
        let config = Config::builder().max_turns(10).build().unwrap();

        assert_eq!(config.max_turns, Some(10));
    }

    #[test]
    fn test_skip_permissions_builder() {
        let config1 = Config::builder().skip_permissions(false).build().unwrap();

        assert!(!config1.skip_permissions);

        let config2 = Config::builder().skip_permissions(true).build().unwrap();

        assert!(config2.skip_permissions);
    }

    #[test]
    fn test_all_new_fields_together() {
        let tools = vec!["bash:rm".to_string()];
        let config = Config::builder()
            .continue_session()
            .resume_session("session_abc".to_string())
            .append_system_prompt("Be helpful")
            .disallowed_tools(tools.clone())
            .max_turns(5)
            .skip_permissions(false)
            .build()
            .unwrap();

        assert!(config.continue_session);
        assert_eq!(config.resume_session_id, Some("session_abc".to_string()));
        assert_eq!(config.append_system_prompt, Some("Be helpful".to_string()));
        assert_eq!(config.disallowed_tools, Some(tools));
        assert_eq!(config.max_turns, Some(5));
        assert!(!config.skip_permissions);
    }
}

/// Test validation for new configuration fields
#[cfg(test)]
mod new_config_validation_tests {
    use super::*;

    #[test]
    fn test_max_turns_validation() {
        // Zero max_turns should fail
        let result = Config::builder().max_turns(0).build();
        assert!(result.is_err());
        if let Err(e) = result {
            assert!(e.to_string().contains("Max turns must be greater than 0"));
        }

        // Valid max_turns should pass
        for turns in [1, 5, 10, 100] {
            let result = Config::builder().max_turns(turns).build();
            assert!(result.is_ok());
        }
    }

    #[test]
    fn test_tools_conflict_validation() {
        // Same tool in both allowed and disallowed should fail
        let result = Config::builder()
            .allowed_tools(vec!["Bash(ls)".to_string()])
            .disallowed_tools(vec!["Bash(ls)".to_string()])
            .build();

        assert!(result.is_err());
        if let Err(e) = result {
            assert!(e
                .to_string()
                .contains("cannot be both allowed and disallowed"));
        }

        // Different tools should pass
        let result = Config::builder()
            .allowed_tools(vec!["Bash(ls)".to_string()])
            .disallowed_tools(vec!["mcp__filesystem__delete".to_string()])
            .build();

        assert!(result.is_ok());
    }

    #[test]
    fn test_system_prompt_conflict_validation() {
        // Both system_prompt and append_system_prompt should fail
        let result = Config::builder()
            .system_prompt("Main prompt")
            .append_system_prompt("Additional prompt")
            .build();

        assert!(result.is_err());
        if let Err(e) = result {
            assert!(e
                .to_string()
                .contains("Cannot use both system_prompt and append_system_prompt"));
        }

        // Only one should pass
        let result1 = Config::builder().system_prompt("Main prompt").build();
        assert!(result1.is_ok());

        let result2 = Config::builder()
            .append_system_prompt("Additional prompt")
            .build();
        assert!(result2.is_ok());
    }

    #[test]
    fn test_append_system_prompt_validation() {
        // Too long append_system_prompt should fail
        let long_prompt = "a".repeat(10_001);
        let result = Config::builder().append_system_prompt(long_prompt).build();
        assert!(result.is_err());
        if let Err(e) = result {
            assert!(e
                .to_string()
                .contains("Append system prompt exceeds maximum length"));
        }

        // Malicious append_system_prompt should fail
        let malicious_prompt = "<script>alert('xss')</script>";
        let result = Config::builder()
            .append_system_prompt(malicious_prompt)
            .build();
        assert!(result.is_err());
        if let Err(e) = result {
            assert!(e.to_string().contains("malicious content"));
        }

        // Valid append_system_prompt should pass
        let result = Config::builder()
            .append_system_prompt("Be concise and helpful")
            .build();
        assert!(result.is_ok());
    }

    #[test]
    fn test_disallowed_tools_validation() {
        // Empty tool name should fail
        let result = Config::builder()
            .disallowed_tools(vec!["".to_string()])
            .build();
        assert!(result.is_err());

        // Too long tool name should fail
        let long_tool = "a".repeat(101);
        let result = Config::builder().disallowed_tools(vec![long_tool]).build();
        assert!(result.is_err());

        // Invalid characters should fail
        let invalid_tools = vec![
            "tool with spaces".to_string(),
            "tool@#$".to_string(),
            "tool;command".to_string(),
        ];
        for tool in invalid_tools {
            let result = Config::builder().disallowed_tools(vec![tool]).build();
            assert!(result.is_err());
        }

        // Valid tool names should pass
        let valid_tools = vec![
            "bash:rm".to_string(),
            "mcp__server__tool".to_string(),
            "mcp__tool-name__action".to_string(),
            "mcp__tool_name__function".to_string(),
            "Bash(command)".to_string(),
        ];
        let result = Config::builder().disallowed_tools(valid_tools).build();
        assert!(result.is_ok());
    }

    #[test]
    fn test_session_id_validation() {
        // Empty session ID should fail
        let result = Config::builder().resume_session("".to_string()).build();
        assert!(result.is_err());
        if let Err(e) = result {
            assert!(e.to_string().contains("Resume session ID cannot be empty"));
        }

        // Too long session ID should fail
        let long_id = "a".repeat(101);
        let result = Config::builder().resume_session(long_id).build();
        assert!(result.is_err());
        if let Err(e) = result {
            assert!(e.to_string().contains("exceeds maximum length"));
        }

        // Invalid characters should fail
        let invalid_ids = vec![
            "session with spaces".to_string(),
            "session@#$".to_string(),
            "session;command".to_string(),
        ];
        for id in invalid_ids {
            let result = Config::builder().resume_session(id).build();
            assert!(result.is_err());
            if let Err(e) = result {
                assert!(e.to_string().contains("invalid characters"));
            }
        }

        // Valid session IDs should pass
        let valid_ids = vec![
            "session123".to_string(),
            "session_abc".to_string(),
            "session-def".to_string(),
            "abc123_def-456".to_string(),
        ];
        for id in valid_ids {
            let result = Config::builder().resume_session(id).build();
            assert!(result.is_ok());
        }
    }

    #[test]
    fn test_edge_cases_new_fields() {
        // Unicode in append_system_prompt
        let unicode_prompt = "Be helpful 🤖 and respond in 日本語 if needed.";
        let result = Config::builder()
            .append_system_prompt(unicode_prompt)
            .build();
        assert!(result.is_ok());

        // Maximum valid values
        let result = Config::builder().max_turns(u32::MAX).build();
        assert!(result.is_ok());

        // Multiple disallowed tools
        let many_tools: Vec<String> = (0..100)
            .map(|i| format!("mcp__server__tool_{}", i))
            .collect();
        let result = Config::builder().disallowed_tools(many_tools).build();
        assert!(result.is_ok());

        // Empty disallowed tools list
        let result = Config::builder().disallowed_tools(vec![]).build();
        assert!(result.is_ok());
    }
}

/// Test granular tool permission parsing and validation
#[cfg(test)]
mod granular_permission_tests {
    use super::*;
    use crate::core::types::ToolPermission;
    use std::str::FromStr;

    #[test]
    fn test_config_validation_with_granular_bash_permissions() {
        // Test valid Bash permissions
        let valid_bash_permissions = vec![
            "Bash(ls)".to_string(),
            "Bash(git status)".to_string(),
            "Bash(npm install)".to_string(),
            "bash:ls".to_string(), // legacy format
            "bash:git status".to_string(),
        ];

        for permission in valid_bash_permissions {
            let config = Config {
                allowed_tools: Some(vec![permission.clone()]),
                ..Config::default()
            };
            assert!(
                config.validate().is_ok(),
                "Valid bash permission '{}' should pass validation",
                permission
            );
        }
    }

    #[test]
    fn test_config_validation_with_granular_mcp_permissions() {
        // Test valid MCP permissions
        let valid_mcp_permissions = vec![
            "mcp__database__query".to_string(),
            "mcp__filesystem__read".to_string(),
            "mcp__server__*".to_string(),
        ];

        for permission in valid_mcp_permissions {
            let config = Config {
                allowed_tools: Some(vec![permission.clone()]),
                ..Config::default()
            };
            assert!(
                config.validate().is_ok(),
                "Valid MCP permission '{}' should pass validation",
                permission
            );
        }
    }

    #[test]
    fn test_config_validation_with_invalid_granular_permissions() {
        // Test invalid permission formats
        let invalid_permissions = vec![
            "Bash()".to_string(),         // Empty command
            "bash:".to_string(),          // Empty legacy command
            "mcp__".to_string(),          // Incomplete MCP
            "mcp__server".to_string(),    // Missing tool
            "mcp__server__".to_string(),  // Empty tool
            "Shell(ls)".to_string(),      // Wrong tool name
            "unknown_format".to_string(), // Unknown format
            "".to_string(),               // Empty string
        ];

        for permission in invalid_permissions {
            let config = Config {
                allowed_tools: Some(vec![permission.clone()]),
                ..Config::default()
            };
            assert!(
                config.validate().is_err(),
                "Invalid permission '{}' should fail validation",
                permission
            );
        }
    }

    #[test]
    fn test_config_validation_with_disallowed_granular_permissions() {
        // Test that disallowed tools also get validated
        let config = Config {
            disallowed_tools: Some(vec![
                "Bash(rm)".to_string(),
                "mcp__dangerous__delete".to_string(),
            ]),
            ..Config::default()
        };
        match config.validate() {
            Ok(_) => {}
            Err(e) => panic!("Expected config validation to pass but got error: {}", e),
        }

        // Test invalid disallowed tools
        let invalid_config = Config {
            disallowed_tools: Some(vec![
                "Bash()".to_string(), // Empty command
            ]),
            ..Config::default()
        };
        assert!(invalid_config.validate().is_err());
    }

    #[test]
    fn test_config_validation_granular_permission_conflicts() {
        // Test that conflicts are detected with granular permissions
        let config = Config {
            allowed_tools: Some(vec!["Bash(ls)".to_string()]),
            disallowed_tools: Some(vec!["Bash(ls)".to_string()]), // Same tool
            ..Config::default()
        };
        assert!(
            config.validate().is_err(),
            "Conflicting granular permissions should be detected"
        );
    }

    #[test]
    fn test_config_validation_mixed_permission_formats() {
        // Test that mixed formats work together
        let config = Config {
            allowed_tools: Some(vec![
                "Bash(ls)".to_string(),
                "bash:pwd".to_string(),
                "mcp__database__query".to_string(),
                "*".to_string(),
            ]),
            disallowed_tools: Some(vec![
                "Bash(rm)".to_string(),
                "mcp__dangerous__*".to_string(),
            ]),
            ..Config::default()
        };
        assert!(
            config.validate().is_ok(),
            "Mixed permission formats should work together"
        );
    }

    #[test]
    fn test_tool_permission_parsing_integration() {
        // Test that all formats can be parsed correctly
        let permission_tests = vec![
            ("Bash(ls)", ToolPermission::bash("ls")),
            ("bash:pwd", ToolPermission::bash("pwd")),
            ("mcp__db__query", ToolPermission::mcp("db", "query")),
            ("*", ToolPermission::All),
        ];

        for (permission_str, expected) in permission_tests {
            let parsed = ToolPermission::from_str(permission_str).unwrap();
            assert_eq!(
                parsed, expected,
                "Permission '{}' should parse to {:?}",
                permission_str, expected
            );

            // Test that parsed permissions convert to proper CLI format
            let cli_format = parsed.to_cli_format();
            println!(
                "Permission '{}' -> Parsed: {:?} -> CLI: '{}'",
                permission_str, parsed, cli_format
            );
        }
    }

    #[test]
    fn test_granular_permission_builder_integration() {
        // Test that ConfigBuilder handles granular permissions correctly
        let config = Config::builder()
            .allowed_tools(vec![
                "Bash(ls)".to_string(),
                "bash:pwd".to_string(),
                "mcp__database__query".to_string(),
            ])
            .disallowed_tools(vec![
                "Bash(rm)".to_string(),
                "mcp__dangerous__delete".to_string(),
            ])
            .build();

        assert!(
            config.is_ok(),
            "ConfigBuilder should handle granular permissions correctly"
        );

        let config = config.unwrap();
        assert_eq!(config.allowed_tools.as_ref().unwrap().len(), 3);
        assert_eq!(config.disallowed_tools.as_ref().unwrap().len(), 2);
    }

    #[test]
    fn test_granular_permission_length_validation() {
        // Test that very long permission strings are rejected
        let long_command = "a".repeat(300); // Exceeds MAX_TOOL_NAME_LENGTH
        let long_permission = format!("Bash({})", long_command);

        let config = Config {
            allowed_tools: Some(vec![long_permission]),
            ..Config::default()
        };
        assert!(
            config.validate().is_err(),
            "Overly long permission strings should be rejected"
        );
    }
}