lc-cli 0.1.3

LLM Client - A fast Rust-based LLM CLI tool with provider management and chat sessions
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
//! Test module for CLI functionality
//!
//! This module contains comprehensive tests for all CLI commands,
//! with a focus on the providers command and its various options.

use crate::config::{Config, ProviderConfig};
use chrono::Utc;
use std::collections::HashMap;
use std::fs;
use tempfile::TempDir;

/// Prefix for test providers to avoid conflicts with real configurations
const TEST_PROVIDER_PREFIX: &str = "test-";

/// Helper function to create a temporary config for testing
fn create_test_config() -> (Config, TempDir) {
    let temp_dir = TempDir::new().expect("Failed to create temp directory");
    std::env::set_var("LC_TEST_CONFIG_DIR", temp_dir.path());
    let _config_path = temp_dir.path().join("config.toml");

    let config = Config {
        providers: HashMap::new(),
        default_provider: None,
        default_model: None,
        aliases: HashMap::new(),
        system_prompt: None,
        templates: HashMap::new(),
        max_tokens: None,
        temperature: None,
        stream: None,
    };

    (config, temp_dir)
}

/// Helper function to create a test provider config
fn create_test_provider_config(endpoint: &str) -> ProviderConfig {
    ProviderConfig {
        endpoint: endpoint.to_string(),
        api_key: Some("test-api-key".to_string()),
        models: vec!["test-model-1".to_string(), "test-model-2".to_string()],
        models_path: "/models".to_string(),
        chat_path: "/chat/completions".to_string(),
        images_path: Some("/images/generations".to_string()),
        embeddings_path: Some("/embeddings".to_string()),
        headers: HashMap::new(),
        token_url: None,
        cached_token: None,
        auth_type: None,
        vars: HashMap::new(),
        chat_templates: None,
        images_templates: None,
        embeddings_templates: None,
        models_templates: None,
        audio_path: None,
        speech_path: None,
        audio_templates: None,
        speech_templates: None,
    }
}

/// Helper function to create a config with test providers
fn create_config_with_providers() -> (Config, TempDir) {
    // Set up temporary test environment
    let temp_dir = TempDir::new().expect("Failed to create temp directory");
    std::env::set_var("LC_TEST_CONFIG_DIR", temp_dir.path());
    
    let mut config = Config {
        providers: HashMap::new(),
        default_provider: None,
        default_model: None,
        aliases: HashMap::new(),
        system_prompt: None,
        templates: HashMap::new(),
        max_tokens: None,
        temperature: None,
        stream: None,
    };

    // Add test providers with test- prefix
    let openai_name = format!("{}openai", TEST_PROVIDER_PREFIX);
    let anthropic_name = format!("{}anthropic", TEST_PROVIDER_PREFIX);
    
    config.providers.insert(
        openai_name.clone(),
        create_test_provider_config("https://api.openai.com"),
    );

    config.providers.insert(
        anthropic_name.clone(),
        create_test_provider_config("https://api.anthropic.com"),
    );

    config.default_provider = Some(openai_name);

    (config, temp_dir)
}

/// Get test provider name with prefix
fn get_test_provider_name(base_name: &str) -> String {
    format!("{}{}", TEST_PROVIDER_PREFIX, base_name)
}

/// Clean up test providers from the configuration directory
#[allow(dead_code)]
pub fn cleanup_test_providers() -> Result<(), Box<dyn std::error::Error>> {
    let home_dir = dirs::home_dir().ok_or("Could not find home directory")?;
    let config_dir = home_dir.join("Library/Application Support/lc/providers");
    
    if !config_dir.exists() {
        return Ok(());
    }
    
    let mut cleaned_count = 0;
    
    // Read directory and remove any files that start with test- prefix
    for entry in fs::read_dir(&config_dir)? {
        let entry = entry?;
        let file_name = entry.file_name();
        let file_name_str = file_name.to_string_lossy();
        
        if file_name_str.starts_with(TEST_PROVIDER_PREFIX) {
            let file_path = entry.path();
            if file_path.is_file() {
                fs::remove_file(&file_path)?;
                cleaned_count += 1;
            }
        }
    }
    
    if cleaned_count > 0 {
        println!("Cleaned up {} test provider files", cleaned_count);
    }
    
    Ok(())
}

/// Setup function to be called at the beginning of test suites
#[allow(dead_code)]
pub fn setup_tests() {
    // Clean up any leftover test providers from previous runs
    if let Err(e) = cleanup_test_providers() {
        eprintln!("Warning: Failed to clean up test providers: {}", e);
    }
}

/// Teardown function to be called at the end of test suites
#[allow(dead_code)]
pub fn teardown_tests() {
    if let Err(e) = cleanup_test_providers() {
        eprintln!("Warning: Failed to clean up test providers: {}", e);
    }
}

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

    #[test]
    fn test_provider_add_basic() {
        let mut config = Config {
            providers: HashMap::new(),
            default_provider: None,
            default_model: None,
            aliases: HashMap::new(),
            system_prompt: None,
            templates: HashMap::new(),
            max_tokens: None,
            temperature: None,
            stream: None,
        };

        // Test adding a basic provider
        let result = config.add_provider(
            "test-provider".to_string(),
            "https://api.test.com".to_string(),
        );

        assert!(result.is_ok());
        assert!(config.has_provider("test-provider"));

        let provider = config.get_provider("test-provider").unwrap();
        assert_eq!(provider.endpoint, "https://api.test.com");
        assert_eq!(provider.models_path, "/models");
        assert_eq!(provider.chat_path, "/chat/completions");
        assert!(provider.api_key.is_none());
        assert!(provider.headers.is_empty());

        // Should be set as default since it's the first provider
        assert_eq!(config.default_provider, Some("test-provider".to_string()));
    }

    #[test]
    fn test_provider_add_with_custom_paths() {
        let mut config = Config {
            providers: HashMap::new(),
            default_provider: None,
            default_model: None,
            aliases: HashMap::new(),
            system_prompt: None,
            templates: HashMap::new(),
            max_tokens: None,
            temperature: None,
            stream: None,
        };

        // Test adding a provider with custom paths
        let result = config.add_provider_with_paths(
            "test-custom-provider".to_string(),
            "https://api.custom.com".to_string(),
            Some("/v1/models".to_string()),
            Some("/v1/completions".to_string()),
        );

        assert!(result.is_ok());
        assert!(config.has_provider("test-custom-provider"));

        let provider = config.get_provider("test-custom-provider").unwrap();
        assert_eq!(provider.endpoint, "https://api.custom.com");
        assert_eq!(provider.models_path, "/v1/models");
        assert_eq!(provider.chat_path, "/v1/completions");
    }

    #[test]
    fn test_provider_add_second_provider_doesnt_change_default() {
        let (mut config, _temp_dir) = create_config_with_providers();
        let original_default = config.default_provider.clone();

        // Add another provider
        let result = config.add_provider(
            "test-new-provider".to_string(),
            "https://api.new.com".to_string(),
        );

        assert!(result.is_ok());
        assert!(config.has_provider("test-new-provider"));
        // Default should remain unchanged
        assert_eq!(config.default_provider, original_default);
    }

    #[test]
    fn test_provider_update_existing() {
        let (mut config, _temp_dir) = create_config_with_providers();
        let openai_name = get_test_provider_name("openai");

        // Update existing provider
        let result = config.add_provider(
            openai_name.clone(),
            "https://api.openai.com/v2".to_string(),
        );

        assert!(result.is_ok());
        let provider = config.get_provider(&openai_name).unwrap();
        assert_eq!(provider.endpoint, "https://api.openai.com/v2");
    }

    #[test]
    fn test_provider_remove_existing() {
        let (mut config, _temp_dir) = create_config_with_providers();
        let anthropic_name = get_test_provider_name("anthropic");

        // Remove existing provider
        assert!(config.has_provider(&anthropic_name));
        config.providers.remove(&anthropic_name);
        assert!(!config.has_provider(&anthropic_name));
    }

    #[test]
    fn test_provider_remove_nonexistent() {
        let (config, _temp_dir) = create_config_with_providers();

        // Try to get non-existent provider
        let result = config.get_provider("nonexistent");
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));
    }

    #[test]
    fn test_provider_list_empty() {
        let config = Config {
            providers: HashMap::new(),
            default_provider: None,
            default_model: None,
            aliases: HashMap::new(),
            system_prompt: None,
            templates: HashMap::new(),
            max_tokens: None,
            temperature: None,
            stream: None,
        };

        assert!(config.providers.is_empty());
    }

    #[test]
    fn test_provider_list_with_providers() {
        let (config, _temp_dir) = create_config_with_providers();
        let openai_name = get_test_provider_name("openai");
        let anthropic_name = get_test_provider_name("anthropic");

        assert_eq!(config.providers.len(), 2);
        assert!(config.has_provider(&openai_name));
        assert!(config.has_provider(&anthropic_name));
    }

    #[test]
    fn test_provider_api_key_management() {
        let (mut config, _temp_dir) = create_config_with_providers();
        let openai_name = get_test_provider_name("openai");

        // Test setting API key
        let result = config.set_api_key(openai_name.clone(), "new-api-key".to_string());
        assert!(result.is_ok());

        // Use get_provider_with_auth to get the provider with API key
        let provider_with_auth = config.get_provider_with_auth(&openai_name).unwrap();
        assert_eq!(provider_with_auth.api_key, Some("new-api-key".to_string()));

        // Test setting API key for non-existent provider
        let result = config.set_api_key("nonexistent".to_string(), "key".to_string());
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));
    }

    #[test]
    fn test_provider_headers_management() {
        let (mut config, _temp_dir) = create_config_with_providers();
        let openai_name = get_test_provider_name("openai");

        // Test adding header
        let result = config.add_header(
            openai_name.clone(),
            "X-Custom-Header".to_string(),
            "custom-value".to_string(),
        );
        assert!(result.is_ok());

        let headers = config.list_headers(&openai_name).unwrap();
        assert_eq!(
            headers.get("X-Custom-Header"),
            Some(&"custom-value".to_string())
        );

        // Test removing header
        let result = config.remove_header(openai_name.clone(), "X-Custom-Header".to_string());
        assert!(result.is_ok());

        let headers = config.list_headers(&openai_name).unwrap();
        assert!(!headers.contains_key("X-Custom-Header"));

        // Test removing non-existent header
        let result = config.remove_header(openai_name.clone(), "Non-Existent".to_string());
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));

        // Test headers for non-existent provider
        let result = config.add_header(
            "nonexistent".to_string(),
            "header".to_string(),
            "value".to_string(),
        );
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));
    }

    #[test]
    fn test_provider_token_url_management() {
        let (mut config, _temp_dir) = create_config_with_providers();
        let openai_name = get_test_provider_name("openai");

        // Test setting token URL
        let result = config.set_token_url(
            openai_name.clone(),
            "https://auth.openai.com/token".to_string(),
        );
        assert!(result.is_ok());

        let token_url = config.get_token_url(&openai_name);
        assert_eq!(
            token_url,
            Some(&"https://auth.openai.com/token".to_string())
        );

        // Test setting token URL for non-existent provider
        let result =
            config.set_token_url("nonexistent".to_string(), "https://example.com".to_string());
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));
    }

    #[test]
    fn test_provider_cached_token_management() {
        let (mut config, _temp_dir) = create_config_with_providers();
        let openai_name = get_test_provider_name("openai");
        let expires_at = Utc::now() + chrono::Duration::hours(1);

        // Test setting cached token
        let result = config.set_cached_token(
            openai_name.clone(),
            "cached-token-123".to_string(),
            expires_at,
        );
        assert!(result.is_ok());

        let cached_token = config.get_cached_token(&openai_name);
        assert!(cached_token.is_some());
        assert_eq!(cached_token.unwrap().token, "cached-token-123");
        assert_eq!(cached_token.unwrap().expires_at, expires_at);

        // Test setting cached token for non-existent provider
        let result =
            config.set_cached_token("nonexistent".to_string(), "token".to_string(), expires_at);
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));
    }

    #[test]
    fn test_provider_token_url_clears_cached_token() {
        let (mut config, _temp_dir) = create_config_with_providers();
        let openai_name = get_test_provider_name("openai");
        let expires_at = Utc::now() + chrono::Duration::hours(1);

        // Set a cached token first
        config
            .set_cached_token(openai_name.clone(), "cached-token".to_string(), expires_at)
            .unwrap();

        assert!(config.get_cached_token(&openai_name).is_some());

        // Setting token URL should clear cached token
        config
            .set_token_url(
                openai_name.clone(),
                "https://auth.openai.com/token".to_string(),
            )
            .unwrap();

        assert!(config.get_cached_token(&openai_name).is_none());
    }
}

#[cfg(test)]
mod provider_command_tests {
    use crate::cli::{HeaderCommands, ProviderCommands};

    /// Mock test for provider add command
    /// Note: This would require refactoring the actual command handlers to accept
    /// a config parameter instead of loading from file system
    #[test]
    fn test_provider_add_command_structure() {
        // Test the command structure itself
        let command = ProviderCommands::Add {
            name: "test-provider".to_string(),
            url: "https://api.test.com".to_string(),
            models_path: Some("/v1/models".to_string()),
            chat_path: Some("/v1/chat".to_string()),
        };

        match command {
            ProviderCommands::Add {
                name,
                url,
                models_path,
                chat_path,
            } => {
                assert_eq!(name, "test-provider");
                assert_eq!(url, "https://api.test.com");
                assert_eq!(models_path, Some("/v1/models".to_string()));
                assert_eq!(chat_path, Some("/v1/chat".to_string()));
            }
            _ => panic!("Expected Add command"),
        }
    }

    #[test]
    fn test_provider_update_command_structure() {
        let command = ProviderCommands::Update {
            name: "existing-provider".to_string(),
            url: "https://api.updated.com".to_string(),
        };

        match command {
            ProviderCommands::Update { name, url } => {
                assert_eq!(name, "existing-provider");
                assert_eq!(url, "https://api.updated.com");
            }
            _ => panic!("Expected Update command"),
        }
    }

    #[test]
    fn test_provider_remove_command_structure() {
        let command = ProviderCommands::Remove {
            name: "provider-to-remove".to_string(),
        };

        match command {
            ProviderCommands::Remove { name } => {
                assert_eq!(name, "provider-to-remove");
            }
            _ => panic!("Expected Remove command"),
        }
    }

    #[test]
    fn test_provider_list_command_structure() {
        let command = ProviderCommands::List;

        match command {
            ProviderCommands::List => {
                // Command structure is correct
            }
            _ => panic!("Expected List command"),
        }
    }

    #[test]
    fn test_provider_models_command_structure() {
        let command = ProviderCommands::Models {
            name: "test-provider".to_string(),
            refresh: true,
        };

        match command {
            ProviderCommands::Models { name, refresh } => {
                assert_eq!(name, "test-provider");
                assert_eq!(refresh, true);
            }
            _ => panic!("Expected Models command"),
        }
    }

    #[test]
    fn test_provider_headers_command_structure() {
        let add_command = ProviderCommands::Headers {
            provider: "test-provider".to_string(),
            command: HeaderCommands::Add {
                name: "X-API-Version".to_string(),
                value: "v1".to_string(),
            },
        };

        match add_command {
            ProviderCommands::Headers { provider, command } => {
                assert_eq!(provider, "test-provider");
                match command {
                    HeaderCommands::Add { name, value } => {
                        assert_eq!(name, "X-API-Version");
                        assert_eq!(value, "v1");
                    }
                    _ => panic!("Expected Add header command"),
                }
            }
            _ => panic!("Expected Headers command"),
        }

        let delete_command = ProviderCommands::Headers {
            provider: "test-provider".to_string(),
            command: HeaderCommands::Delete {
                name: "X-API-Version".to_string(),
            },
        };

        match delete_command {
            ProviderCommands::Headers { provider, command } => {
                assert_eq!(provider, "test-provider");
                match command {
                    HeaderCommands::Delete { name } => {
                        assert_eq!(name, "X-API-Version");
                    }
                    _ => panic!("Expected Delete header command"),
                }
            }
            _ => panic!("Expected Headers command"),
        }

        let list_command = ProviderCommands::Headers {
            provider: "test-provider".to_string(),
            command: HeaderCommands::List,
        };

        match list_command {
            ProviderCommands::Headers { provider, command } => {
                assert_eq!(provider, "test-provider");
                match command {
                    HeaderCommands::List => {
                        // Command structure is correct
                    }
                    _ => panic!("Expected List header command"),
                }
            }
            _ => panic!("Expected Headers command"),
        }
    }

    #[test]
    fn test_provider_token_url_command_structure() {
        let command = ProviderCommands::TokenUrl {
            provider: "test-provider".to_string(),
            url: "https://auth.test.com/token".to_string(),
        };

        match command {
            ProviderCommands::TokenUrl { provider, url } => {
                assert_eq!(provider, "test-provider");
                assert_eq!(url, "https://auth.test.com/token");
            }
            _ => panic!("Expected TokenUrl command"),
        }
    }
}

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

    #[test]
    fn test_provider_name_validation() {
        let mut config = Config {
            providers: HashMap::new(),
            default_provider: None,
            default_model: None,
            aliases: HashMap::new(),
            system_prompt: None,
            templates: HashMap::new(),
            max_tokens: None,
            temperature: None,
            stream: None,
        };

        // Test empty provider name
        let result = config.add_provider("".to_string(), "https://api.test.com".to_string());
        assert!(result.is_ok()); // Config doesn't validate empty names, but CLI should

        // Test provider name with special characters
        let result = config.add_provider(
            "test-provider_123".to_string(),
            "https://api.test.com".to_string(),
        );
        assert!(result.is_ok());

        // Test provider name with spaces
        let result = config.add_provider(
            "test-test provider".to_string(),
            "https://api.test.com".to_string(),
        );
        assert!(result.is_ok());
    }

    #[test]
    fn test_provider_url_validation() {
        let mut config = Config {
            providers: HashMap::new(),
            default_provider: None,
            default_model: None,
            aliases: HashMap::new(),
            system_prompt: None,
            templates: HashMap::new(),
            max_tokens: None,
            temperature: None,
            stream: None,
        };

        // Test various URL formats
        let urls = vec![
            "https://api.test.com",
            "http://localhost:8080",
            "https://api.test.com/",
            "https://api.test.com/v1",
            "invalid-url",
            "",
        ];

        for url in urls {
            let result = config.add_provider(format!("test-provider-{}", url.len()), url.to_string());
            assert!(result.is_ok()); // Config doesn't validate URLs, but should be validated elsewhere
        }
    }

    #[test]
    fn test_provider_paths_validation() {
        let mut config = Config {
            providers: HashMap::new(),
            default_provider: None,
            default_model: None,
            aliases: HashMap::new(),
            system_prompt: None,
            templates: HashMap::new(),
            max_tokens: None,
            temperature: None,
            stream: None,
        };

        // Test various path formats
        let test_cases = vec![
            (
                Some("/models".to_string()),
                Some("/chat/completions".to_string()),
            ),
            (
                Some("/v1/models".to_string()),
                Some("/v1/chat/completions".to_string()),
            ),
            (Some("models".to_string()), Some("chat".to_string())), // Without leading slash
            (Some("".to_string()), Some("".to_string())),           // Empty paths
            (None, None),                                           // Default paths
        ];

        for (i, (models_path, chat_path)) in test_cases.into_iter().enumerate() {
            let result = config.add_provider_with_paths(
                format!("test-provider-{}", i),
                "https://api.test.com".to_string(),
                models_path.clone(),
                chat_path.clone(),
            );
            assert!(result.is_ok());

            let provider = config.get_provider(&format!("test-provider-{}", i)).unwrap();
            assert_eq!(
                provider.models_path,
                models_path.unwrap_or_else(|| "/models".to_string())
            );
            assert_eq!(
                provider.chat_path,
                chat_path.unwrap_or_else(|| "/chat/completions".to_string())
            );
        }
    }

    #[test]
    fn test_provider_duplicate_names() {
        let mut config = Config {
            providers: HashMap::new(),
            default_provider: None,
            default_model: None,
            aliases: HashMap::new(),
            system_prompt: None,
            templates: HashMap::new(),
            max_tokens: None,
            temperature: None,
            stream: None,
        };

        // Add provider
        let result =
            config.add_provider("test-duplicate".to_string(), "https://api1.test.com".to_string());
        assert!(result.is_ok());

        let provider1 = config.get_provider("test-duplicate").unwrap();
        assert_eq!(provider1.endpoint, "https://api1.test.com");

        // Add provider with same name (should overwrite)
        let result =
            config.add_provider("test-duplicate".to_string(), "https://api2.test.com".to_string());
        assert!(result.is_ok());

        let provider2 = config.get_provider("test-duplicate").unwrap();
        assert_eq!(provider2.endpoint, "https://api2.test.com");
    }

    #[test]
    fn test_provider_case_sensitivity() {
        let mut config = Config {
            providers: HashMap::new(),
            default_provider: None,
            default_model: None,
            aliases: HashMap::new(),
            system_prompt: None,
            templates: HashMap::new(),
            max_tokens: None,
            temperature: None,
            stream: None,
        };

        // Add providers with different cases
        config
            .add_provider("test-OpenAI".to_string(), "https://api.openai.com".to_string())
            .unwrap();
        config
            .add_provider(
                "test-openai".to_string(),
                "https://api.openai.com/v2".to_string(),
            )
            .unwrap();
        config
            .add_provider(
                "test-OPENAI".to_string(),
                "https://api.openai.com/v3".to_string(),
            )
            .unwrap();

        // All should be treated as different providers
        assert!(config.has_provider("test-OpenAI"));
        assert!(config.has_provider("test-openai"));
        assert!(config.has_provider("test-OPENAI"));
        assert_eq!(config.providers.len(), 3);
    }

    #[test]
    fn test_provider_header_edge_cases() {
        let (mut config, _temp_dir) = create_config_with_providers();

        let openai_name = get_test_provider_name("openai");

        // Test header with empty name
        let result = config.add_header(openai_name.clone(), "".to_string(), "value".to_string());
        assert!(result.is_ok()); // Config allows empty header names

        // Test header with empty value
        let result = config.add_header(openai_name.clone(), "X-Empty".to_string(), "".to_string());
        assert!(result.is_ok());

        // Test header with special characters
        let result = config.add_header(
            openai_name.clone(),
            "X-Special-Chars!@#".to_string(),
            "value!@#$%".to_string(),
        );
        assert!(result.is_ok());

        // Test overwriting existing header
        config
            .add_header(
                openai_name.clone(),
                "X-Test".to_string(),
                "original".to_string(),
            )
            .unwrap();
        config
            .add_header(
                openai_name.clone(),
                "X-Test".to_string(),
                "updated".to_string(),
            )
            .unwrap();

        let headers = config.list_headers(&openai_name).unwrap();
        assert_eq!(headers.get("X-Test"), Some(&"updated".to_string()));
    }
}

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

    #[test]
    fn test_provider_workflow_complete() {
        // Set up temporary test environment
        let temp_dir = TempDir::new().expect("Failed to create temp directory");
        std::env::set_var("LC_TEST_CONFIG_DIR", temp_dir.path());
        
        let mut config = Config {
            providers: HashMap::new(),
            default_provider: None,
            default_model: None,
            aliases: HashMap::new(),
            system_prompt: None,
            templates: HashMap::new(),
            max_tokens: None,
            temperature: None,
            stream: None,
        };

        // 1. Add provider
        config
            .add_provider_with_paths(
                "test-provider-100".to_string(),
                "https://api.test.com".to_string(),
                Some("/v1/models".to_string()),
                Some("/v1/chat".to_string()),
            )
            .unwrap();

        assert!(config.has_provider("test-provider-100"));
        assert_eq!(config.default_provider, Some("test-provider-100".to_string()));

        // 2. Set API key
        config
            .set_api_key("test-provider-100".to_string(), "secret-key".to_string())
            .unwrap();
        let provider_with_auth = config.get_provider_with_auth("test-provider-100").unwrap();
        assert_eq!(provider_with_auth.api_key, Some("secret-key".to_string()));

        // 3. Add headers
        config
            .add_header(
                "test-provider-100".to_string(),
                "X-API-Version".to_string(),
                "v1".to_string(),
            )
            .unwrap();
        config
            .add_header(
                "test-provider-100".to_string(),
                "X-Client".to_string(),
                "lc-cli".to_string(),
            )
            .unwrap();

        let headers = config.list_headers("test-provider-100").unwrap();
        assert_eq!(headers.len(), 2);
        assert_eq!(headers.get("X-API-Version"), Some(&"v1".to_string()));
        assert_eq!(headers.get("X-Client"), Some(&"lc-cli".to_string()));

        // 4. Set token URL
        config
            .set_token_url(
                "test-provider-100".to_string(),
                "https://auth.test.com/token".to_string(),
            )
            .unwrap();
        assert_eq!(
            config.get_token_url("test-provider-100"),
            Some(&"https://auth.test.com/token".to_string())
        );

        // 5. Set cached token
        let expires_at = Utc::now() + chrono::Duration::hours(1);
        config
            .set_cached_token(
                "test-provider-100".to_string(),
                "cached-token".to_string(),
                expires_at,
            )
            .unwrap();

        let cached_token = config.get_cached_token("test-provider-100").unwrap();
        assert_eq!(cached_token.token, "cached-token");

        // 6. Update provider URL (note: add_provider creates a new config, so API key is lost)
        config
            .add_provider(
                "test-provider-100".to_string(),
                "https://api.test.com/v2".to_string(),
            )
            .unwrap();
        let updated_provider = config.get_provider("test-provider-100").unwrap();
        assert_eq!(updated_provider.endpoint, "https://api.test.com/v2");
        // API key is lost when updating via add_provider (this is expected behavior)
        assert_eq!(updated_provider.api_key, None);

        // Re-set the API key after update
        config
            .set_api_key(
                "test-provider-100".to_string(),
                "secret-key-updated".to_string(),
            )
            .unwrap();
        let provider_with_key = config.get_provider_with_auth("test-provider-100").unwrap();
        assert_eq!(
            provider_with_key.api_key,
            Some("secret-key-updated".to_string())
        );

        // 7. Re-add headers after provider update (since they were lost)
        config
            .add_header(
                "test-provider-100".to_string(),
                "X-API-Version".to_string(),
                "v1".to_string(),
            )
            .unwrap();
        config
            .add_header(
                "test-provider-100".to_string(),
                "X-Client".to_string(),
                "lc-cli".to_string(),
            )
            .unwrap();

        // Now remove one header
        config
            .remove_header("test-provider-100".to_string(), "X-API-Version".to_string())
            .unwrap();
        let headers = config.list_headers("test-provider-100").unwrap();
        assert_eq!(headers.len(), 1);
        assert!(!headers.contains_key("X-API-Version"));
        assert!(headers.contains_key("X-Client"));

        // 8. Remove provider
        config.providers.remove("test-provider-100");
        assert!(!config.has_provider("test-provider-100"));
        
        // Keep temp_dir alive until the end
        drop(temp_dir);
    }

    #[test]
    fn test_multiple_providers_workflow() {
        // Set up temporary test environment
        let temp_dir = TempDir::new().expect("Failed to create temp directory");
        std::env::set_var("LC_TEST_CONFIG_DIR", temp_dir.path());
        
        let mut config = Config {
            providers: HashMap::new(),
            default_provider: None,
            default_model: None,
            aliases: HashMap::new(),
            system_prompt: None,
            templates: HashMap::new(),
            max_tokens: None,
            temperature: None,
            stream: None,
        };

        // Add multiple providers
        let providers = vec![
            ("test-openai-1", "https://api.openai.com"),
            ("test-anthropic-1", "https://api.anthropic.com"),
            ("test-cohere-1", "https://api.cohere.ai"),
        ];

        for (name, url) in providers {
            config
                .add_provider(name.to_string(), url.to_string())
                .unwrap();
            config
                .set_api_key(name.to_string(), format!("{}-api-key", name))
                .unwrap();
        }

        // Verify all providers exist
        assert_eq!(config.providers.len(), 3);
        assert!(config.has_provider("test-openai-1"));
        assert!(config.has_provider("test-anthropic-1"));
        assert!(config.has_provider("test-cohere-1"));

        // First provider should be default
        assert_eq!(config.default_provider, Some("test-openai-1".to_string()));

        // Each provider should have its API key
        for (name, _) in &[("test-openai-1", ""), ("test-anthropic-1", ""), ("test-cohere-1", "")] {
            let provider_with_auth = config.get_provider_with_auth(name).unwrap();
            assert_eq!(provider_with_auth.api_key, Some(format!("{}-api-key", name)));
        }

        // Add different headers to each provider
        config
            .add_header(
                "test-openai-1".to_string(),
                "X-OpenAI-Version".to_string(),
                "2023-12-01".to_string(),
            )
            .unwrap();
        config
            .add_header(
                "test-anthropic-1".to_string(),
                "X-Anthropic-Version".to_string(),
                "2023-06-01".to_string(),
            )
            .unwrap();
        config
            .add_header(
                "test-cohere-1".to_string(),
                "X-Cohere-Version".to_string(),
                "2023-08-01".to_string(),
            )
            .unwrap();

        // Verify headers are isolated per provider
        let openai_headers = config.list_headers("test-openai-1").unwrap();
        let anthropic_headers = config.list_headers("test-anthropic-1").unwrap();
        let cohere_headers = config.list_headers("test-cohere-1").unwrap();

        assert!(openai_headers.contains_key("X-OpenAI-Version"));
        assert!(!openai_headers.contains_key("X-Anthropic-Version"));
        assert!(!openai_headers.contains_key("X-Cohere-Version"));

        assert!(anthropic_headers.contains_key("X-Anthropic-Version"));
        assert!(!anthropic_headers.contains_key("X-OpenAI-Version"));
        assert!(!anthropic_headers.contains_key("X-Cohere-Version"));

        assert!(cohere_headers.contains_key("X-Cohere-Version"));
        assert!(!cohere_headers.contains_key("X-OpenAI-Version"));
        assert!(!cohere_headers.contains_key("X-Anthropic-Version"));
        
        // Keep temp_dir alive until the end
        drop(temp_dir);
    }

    #[test]
    fn test_provider_error_scenarios() {
        let (mut config, _temp_dir) = create_config_with_providers();

        // Test operations on non-existent provider
        let nonexistent_provider = "nonexistent".to_string();

        // Test setting API key for non-existent provider
        let result = config.set_api_key(nonexistent_provider.clone(), "key".to_string());
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));

        // Test adding header for non-existent provider
        let result = config.add_header(
            nonexistent_provider.clone(),
            "header".to_string(),
            "value".to_string(),
        );
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));

        // Test removing header for non-existent provider
        let result = config.remove_header(nonexistent_provider.clone(), "header".to_string());
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));

        // Test listing headers for non-existent provider
        let result = config.list_headers(&nonexistent_provider);
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));

        // Test setting token URL for non-existent provider
        let result = config.set_token_url(
            nonexistent_provider.clone(),
            "https://example.com".to_string(),
        );
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));

        // Test setting cached token for non-existent provider
        let expires_at = Utc::now() + chrono::Duration::hours(1);
        let result = config.set_cached_token(
            nonexistent_provider.clone(),
            "token".to_string(),
            expires_at,
        );
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));
    }

    #[test]
    fn test_provider_concurrent_operations() {
        // Set up temporary test environment
        let temp_dir = TempDir::new().expect("Failed to create temp directory");
        std::env::set_var("LC_TEST_CONFIG_DIR", temp_dir.path());
        
        let (mut config, _config_temp_dir) = create_config_with_providers();

        // Test multiple operations on the same provider
        let provider_name = get_test_provider_name("openai");

        // Set API key
        config
            .set_api_key(provider_name.clone(), "api-key-1".to_string())
            .unwrap();

        // Add multiple headers
        config
            .add_header(
                provider_name.clone(),
                "X-Header-1".to_string(),
                "value-1".to_string(),
            )
            .unwrap();
        config
            .add_header(
                provider_name.clone(),
                "X-Header-2".to_string(),
                "value-2".to_string(),
            )
            .unwrap();
        config
            .add_header(
                provider_name.clone(),
                "X-Header-3".to_string(),
                "value-3".to_string(),
            )
            .unwrap();

        // Set token URL
        config
            .set_token_url(
                provider_name.clone(),
                "https://auth.openai.com/token".to_string(),
            )
            .unwrap();

        // Verify all operations succeeded
        let provider_with_auth = config.get_provider_with_auth(&provider_name).unwrap();
        assert_eq!(provider_with_auth.api_key, Some("api-key-1".to_string()));
        assert_eq!(
            provider_with_auth.token_url,
            Some("https://auth.openai.com/token".to_string())
        );

        let headers = config.list_headers(&provider_name).unwrap();
        assert_eq!(headers.len(), 3);
        assert!(headers.contains_key("X-Header-1"));
        assert!(headers.contains_key("X-Header-2"));
        assert!(headers.contains_key("X-Header-3"));

        // Update API key
        config
            .set_api_key(provider_name.clone(), "api-key-2".to_string())
            .unwrap();
        let provider_with_auth = config.get_provider_with_auth(&provider_name).unwrap();
        assert_eq!(provider_with_auth.api_key, Some("api-key-2".to_string()));

        // Remove some headers - check if header exists first
        let headers_before = config.list_headers(&provider_name).unwrap();
        if headers_before.contains_key("X-Header-2") {
            config
                .remove_header(provider_name.clone(), "X-Header-2".to_string())
                .unwrap();
            let headers = config.list_headers(&provider_name).unwrap();
            assert_eq!(headers.len(), 2);
            assert!(!headers.contains_key("X-Header-2"));
        }
        
        // Keep temp_dir alive until the end
        drop(temp_dir);
        drop(_config_temp_dir);
    }
}

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

    #[test]
    fn test_provider_alias_workflow() {
        let (mut config, _temp_dir) = create_config_with_providers();

        let openai_name = get_test_provider_name("openai");

        // Test adding alias that references existing provider
        let result = config.add_alias("gpt4".to_string(), format!("{}:gpt-4", openai_name));
        assert!(result.is_ok());

        let alias = config.get_alias("gpt4");
        assert_eq!(alias, Some(&format!("{}:gpt-4", openai_name)));

        // Test adding alias that references non-existent provider
        let result = config.add_alias("invalid".to_string(), "nonexistent:model".to_string());
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));

        // Test adding alias with invalid format
        let result = config.add_alias("invalid-format".to_string(), "just-a-model".to_string());
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("format"));

        // Test removing alias
        let result = config.remove_alias("gpt4".to_string());
        assert!(result.is_ok());
        assert!(config.get_alias("gpt4").is_none());

        // Test removing non-existent alias
        let result = config.remove_alias("nonexistent".to_string());
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not found"));
    }
}

#[cfg(test)]
mod provider_config_persistence_tests {
    use super::*;
    use std::fs;

    #[test]
    fn test_config_save_and_load() {
        let (mut config, temp_dir) = create_test_config();
        let config_path = temp_dir.path().join("config.toml");

        // Add a provider
        config
            .add_provider_with_paths(
                "test-provider".to_string(),
                "https://api.test.com".to_string(),
                Some("/v1/models".to_string()),
                Some("/v1/chat".to_string()),
            )
            .unwrap();

        // Set API key and headers
        config
            .set_api_key("test-provider".to_string(), "secret-key".to_string())
            .unwrap();
        config
            .add_header(
                "test-provider".to_string(),
                "X-Custom".to_string(),
                "value".to_string(),
            )
            .unwrap();

        // Save config to file
        let toml_content = toml::to_string_pretty(&config).unwrap();
        fs::write(&config_path, &toml_content).unwrap();

        // Load config from file
        let loaded_content = fs::read_to_string(&config_path).unwrap();
        let loaded_config: Config = toml::from_str(&loaded_content).unwrap();

        // Verify loaded config matches original
        assert!(loaded_config.has_provider("test-provider"));
        let provider = loaded_config.get_provider("test-provider").unwrap();
        assert_eq!(provider.endpoint, "https://api.test.com");
        assert_eq!(provider.models_path, "/v1/models");
        assert_eq!(provider.chat_path, "/v1/chat");
        // API key is now stored separately in keys.toml, so the provider config won't have it
        assert_eq!(provider.api_key, None);
        assert_eq!(provider.headers.get("X-Custom"), Some(&"value".to_string()));
        
        // Verify the API key can be retrieved via get_provider_with_auth
        let provider_with_auth = loaded_config.get_provider_with_auth("test-provider").unwrap();
        assert_eq!(provider_with_auth.api_key, Some("secret-key".to_string()));
    }

    #[test]
    fn test_config_with_cached_token_serialization() {
        let (mut config, temp_dir) = create_test_config();
        let config_path = temp_dir.path().join("config.toml");

        // Add provider with cached token
        config
            .add_provider(
                "test-provider".to_string(),
                "https://api.test.com".to_string(),
            )
            .unwrap();

        let expires_at = Utc::now() + chrono::Duration::hours(1);
        config
            .set_cached_token(
                "test-provider".to_string(),
                "cached-token-123".to_string(),
                expires_at,
            )
            .unwrap();

        // Save and reload
        let toml_content = toml::to_string_pretty(&config).unwrap();
        fs::write(&config_path, &toml_content).unwrap();

        let loaded_content = fs::read_to_string(&config_path).unwrap();
        let loaded_config: Config = toml::from_str(&loaded_content).unwrap();

        // Verify cached token is preserved
        let cached_token = loaded_config.get_cached_token("test-provider");
        assert!(cached_token.is_some());
        assert_eq!(cached_token.unwrap().token, "cached-token-123");
        assert_eq!(cached_token.unwrap().expires_at, expires_at);
    }
}