maproom 0.1.0

Semantic code search powered by embeddings and SQLite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
//! Provider factory for creating embedding providers from environment configuration.
//!
//! This module provides factory functions for constructing embedding providers with
//! auto-detection and validation. It implements a zero-config experience by detecting
//! Ollama availability automatically, with fallback to explicit provider configuration.
//!
//! # Auto-detection Strategy
//!
//! 1. Check if `MAPROOM_EMBEDDING_PROVIDER` environment variable is set
//! 2. If not set, attempt to detect Ollama using fallback chain:
//!    - `MAPROOM_EMBEDDING_API_ENDPOINT` (extract base URL)
//!    - `localhost:11434` (native development)
//!    - `host.docker.internal:11434` (Docker/DevContainer)
//! 3. If Ollama is unavailable, return an error with helpful configuration guidance
//!
//! # Examples
//!
//! ```no_run
//! use maproom::embedding::factory::create_provider_from_env;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//!     // Auto-detect provider (prefers Ollama, falls back to MAPROOM_EMBEDDING_PROVIDER env var)
//!     let provider = create_provider_from_env().await?;
//!
//!     println!("Using provider: {}", provider.provider_name());
//!     println!("Embedding dimension: {}", provider.dimension());
//!
//!     // Generate embedding
//!     let embedding = provider.embed("Hello, world!".to_string()).await?;
//!     assert_eq!(embedding.len(), provider.dimension());
//!
//!     Ok(())
//! }
//! ```
//!
//! # Environment Variables
//!
//! - `MAPROOM_EMBEDDING_PROVIDER`: Provider name ("ollama", "openai", "google")
//! - `MAPROOM_EMBEDDING_MODEL`: Model name (provider-specific defaults)
//! - `MAPROOM_EMBEDDING_API_ENDPOINT`: API endpoint (provider-specific defaults)
//! - `OPENAI_API_KEY`: Required for OpenAI provider
//! - `GOOGLE_PROJECT_ID`: Required for Google provider
//! - `GOOGLE_APPLICATION_CREDENTIALS`: Required for Google provider
//!
//! # Configuration Examples
//!
//! ## Zero-config (Ollama auto-detection)
//! ```bash
//! # No environment variables needed - detects Ollama automatically
//! cargo run
//! ```
//!
//! ## Explicit OpenAI configuration
//! ```bash
//! export MAPROOM_EMBEDDING_PROVIDER=openai
//! export OPENAI_API_KEY=sk-...
//! cargo run
//! ```
//!
//! ## Custom Ollama endpoint
//! ```bash
//! export MAPROOM_EMBEDDING_PROVIDER=ollama
//! export MAPROOM_EMBEDDING_API_ENDPOINT=http://remote-host:11434/api/embed
//! export MAPROOM_EMBEDDING_MODEL=nomic-embed-text
//! cargo run
//! ```
//!
//! ## Google Vertex AI configuration
//! ```bash
//! export MAPROOM_EMBEDDING_PROVIDER=google
//! export GOOGLE_PROJECT_ID=my-project
//! export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json
//! cargo run
//! ```

use std::env;
use std::fs;
use std::path::PathBuf;
use std::time::Duration;

use crate::embedding::client::OpenAIClient;
use crate::embedding::config::{EmbeddingConfig, Provider};
use crate::embedding::error::{ConfigError, EmbeddingError};
use crate::embedding::google::GoogleProvider;
use crate::embedding::ollama::OllamaProvider;
use crate::embedding::provider::EmbeddingProvider;

/// Create embedding provider from environment configuration.
///
/// This function implements a zero-config experience with intelligent auto-detection:
///
/// # Auto-detection Process
///
/// 1. **Explicit Configuration**: If `MAPROOM_EMBEDDING_PROVIDER` is set, use that provider
/// 2. **Ollama Detection**: Otherwise, detect Ollama using fallback chain:
///    - `MAPROOM_EMBEDDING_API_ENDPOINT` (extract base URL from embed endpoint)
///    - `localhost:11434` (native development)
///    - `host.docker.internal:11434` (Docker/DevContainer environments)
/// 3. **Configuration Error**: If no provider is available, return helpful error message
///
/// # Supported Providers
///
/// - **ollama**: Local Ollama embeddings (zero-config, auto-detected)
/// - **openai**: OpenAI API (requires `OPENAI_API_KEY`)
/// - **google**: Google Vertex AI (requires `GOOGLE_PROJECT_ID`, future implementation)
///
/// # Environment Variables
///
/// ## Provider Selection
/// - `MAPROOM_EMBEDDING_PROVIDER`: Provider name (optional, default: auto-detect)
///
/// ## Model Configuration
/// - `MAPROOM_EMBEDDING_MODEL`: Model name (optional, provider-specific defaults)
/// - `MAPROOM_EMBEDDING_API_ENDPOINT`: API endpoint (optional, provider-specific defaults)
///
/// ## Provider-Specific Authentication
/// - `OPENAI_API_KEY`: Required for OpenAI provider
/// - `GOOGLE_PROJECT_ID`: Required for Google provider (future)
///
/// # Returns
///
/// - `Ok(Box<dyn EmbeddingProvider>)` - Successfully created and configured provider
/// - `Err(EmbeddingError)` - Configuration validation failed or no provider available
///
/// # Errors
///
/// This function returns an error if:
/// - No provider is explicitly configured and Ollama is not detected
/// - Required environment variables are missing (e.g., `OPENAI_API_KEY` for OpenAI)
/// - Provider name is not recognized
/// - HTTP client creation fails
///
/// # Examples
///
/// ## Zero-config with Ollama auto-detection
/// ```no_run
/// # use maproom::embedding::factory::create_provider_from_env;
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// // Automatically detects Ollama at localhost:11434
/// let provider = create_provider_from_env().await?;
/// assert_eq!(provider.provider_name(), "ollama");
/// # Ok(())
/// # }
/// ```
///
/// ## Explicit OpenAI configuration
/// ```no_run
/// # use maproom::embedding::factory::create_provider_from_env;
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// // Set environment: MAPROOM_EMBEDDING_PROVIDER=openai
/// //                  OPENAI_API_KEY=sk-...
/// let provider = create_provider_from_env().await?;
/// assert_eq!(provider.provider_name(), "openai");
/// # Ok(())
/// # }
/// ```
pub async fn create_provider_from_env() -> Result<Box<dyn EmbeddingProvider>, EmbeddingError> {
    // Check explicit config first
    let explicit_provider = env::var("MAPROOM_EMBEDDING_PROVIDER").ok();

    // Track detected endpoint for Ollama auto-detection
    let (provider_name, detected_endpoint) = match explicit_provider.as_deref() {
        Some(p) => {
            tracing::debug!(
                "Using explicit provider from MAPROOM_EMBEDDING_PROVIDER: {}",
                p
            );
            (p.to_lowercase(), None)
        }
        None => {
            // Auto-detect Ollama using fallback chain
            tracing::debug!("No MAPROOM_EMBEDDING_PROVIDER set, attempting Ollama auto-detection");
            match detect_ollama_endpoint().await {
                Some(endpoint) => {
                    tracing::info!("Ollama detected at: {}", endpoint);
                    ("ollama".to_string(), Some(endpoint))
                }
                None => {
                    tracing::warn!(
                        "Ollama not detected and no MAPROOM_EMBEDDING_PROVIDER configured"
                    );
                    return Err(EmbeddingError::Config(ConfigError::MissingConfig(
                        "No embedding provider configured. Options:\n\
                         1. Install and start Ollama (https://ollama.ai) for zero-config local embeddings\n\
                         2. Set MAPROOM_EMBEDDING_PROVIDER=openai and OPENAI_API_KEY=... for OpenAI\n\
                         3. Set MAPROOM_EMBEDDING_PROVIDER=google and GOOGLE_PROJECT_ID=... for Google (future)"
                            .to_string(),
                    )));
                }
            }
        }
    };

    // Create provider based on name
    match provider_name.as_str() {
        "ollama" => {
            // Priority: explicit env var → auto-detection → default
            let endpoint = if let Ok(explicit) = env::var("MAPROOM_EMBEDDING_API_ENDPOINT") {
                // Explicit config takes absolute precedence
                let normalized = normalize_endpoint_url(&explicit);
                tracing::info!(
                    "Using explicit endpoint from MAPROOM_EMBEDDING_API_ENDPOINT: {}",
                    normalized
                );
                normalized
            } else if let Some(detected) = detected_endpoint {
                // Auto-detected base URL needs path appended
                let endpoint = format!("{}/api/embed", detected);
                tracing::debug!("Using auto-detected endpoint: {}", endpoint);
                endpoint
            } else {
                // Default fallback
                tracing::debug!("Using default endpoint: http://localhost:11434/api/embed");
                "http://localhost:11434/api/embed".to_string()
            };
            let model = env::var("MAPROOM_EMBEDDING_MODEL")
                .unwrap_or_else(|_| "mxbai-embed-large".to_string());

            // Load configuration from environment (including dimension)
            // Pass detected provider to enable dimension inference
            let config = EmbeddingConfig::from_env_with_provider(Some(Provider::Ollama))?;
            let dimension = config.dimension;
            let parallel_config = config.parallel;

            tracing::info!(
                "Using provider: ollama (model: {}, dimension: {}, endpoint: {}, parallel: enabled={}, sub_batch={}, concurrency={})",
                model,
                dimension,
                endpoint,
                parallel_config.enabled,
                parallel_config.sub_batch_size,
                parallel_config.max_concurrency
            );

            let provider =
                OllamaProvider::new_with_config(endpoint, model, dimension, parallel_config)?;
            Ok(Box::new(provider))
        }
        "openai" => {
            tracing::debug!("Creating OpenAI provider from environment configuration");

            // Validate required environment variables before creating provider
            // Try Maproom-specific var first, then fall back to standard var
            if env::var("MAPROOM_OPENAI_API_KEY").is_err() && env::var("OPENAI_API_KEY").is_err() {
                return Err(EmbeddingError::Config(ConfigError::MissingConfig(
                    "OpenAI API key required for OpenAI provider.\n\
                     Get your API key from: https://platform.openai.com/api-keys\n\
                     Then set: export MAPROOM_OPENAI_API_KEY=sk-...\n\
                     (or use standard: export OPENAI_API_KEY=sk-...)"
                        .to_string(),
                )));
            }

            let config = EmbeddingConfig::from_env()?;
            let client = OpenAIClient::new(config)?;

            tracing::info!("Using provider: openai (model: {})", client.config().model);
            Ok(Box::new(client))
        }
        "google" => {
            tracing::debug!("Creating Google provider from environment configuration");

            // Load embedding config with Google provider to get parallel settings
            let config = EmbeddingConfig::from_env_with_provider(Some(Provider::Google))?;
            let parallel_config = config.parallel;

            // Validate GOOGLE_PROJECT_ID (try Maproom-specific var first)
            let project_id = env::var("MAPROOM_GOOGLE_PROJECT_ID")
                .or_else(|_| env::var("GOOGLE_PROJECT_ID"))
                .map_err(|_| {
                    EmbeddingError::Config(ConfigError::MissingConfig(
                        "Google project ID required for Google provider.\n\
                         Get your project ID from: https://console.cloud.google.com/\n\
                         Then set: export MAPROOM_GOOGLE_PROJECT_ID=your-project-id\n\
                         (or use standard: export GOOGLE_PROJECT_ID=your-project-id)"
                            .to_string(),
                    ))
                })?;

            // Read optional configuration
            let region = env::var("GOOGLE_REGION")
                .unwrap_or_else(|_| GoogleProvider::DEFAULT_REGION.to_string());
            let model = env::var("GOOGLE_MODEL")
                .unwrap_or_else(|_| GoogleProvider::DEFAULT_MODEL.to_string());

            // Try GOOGLE_APPLICATION_CREDENTIALS first (service account file)
            // Fall back to ADC if not set
            let creds_path_result = env::var("MAPROOM_GOOGLE_APPLICATION_CREDENTIALS")
                .or_else(|_| env::var("GOOGLE_APPLICATION_CREDENTIALS"));

            let provider: Box<dyn EmbeddingProvider> = if let Ok(creds_path_str) = creds_path_result
            {
                let creds_path = PathBuf::from(&creds_path_str);

                // Check credentials file exists
                if !creds_path.exists() {
                    return Err(EmbeddingError::Config(ConfigError::FileError(format!(
                        "Service account credentials file not found at: {}\n\
                         Verify the path is correct and the file exists.",
                        creds_path.display()
                    ))));
                }

                // Validate credentials file is readable and has valid JSON structure
                validate_service_account_json(&creds_path)?;

                tracing::info!(
                    "Using provider: google with service account (project: {}, region: {}, model: {}, parallel: enabled={}, sub_batch={}, concurrency={})",
                    project_id,
                    region,
                    model,
                    parallel_config.enabled,
                    parallel_config.sub_batch_size,
                    parallel_config.max_concurrency
                );

                Box::new(
                    GoogleProvider::new_with_config(
                        project_id,
                        creds_path,
                        region,
                        model,
                        parallel_config,
                    )
                    .await?,
                )
            } else {
                // No explicit credentials file - try ADC (Application Default Credentials)
                // This supports: gcloud auth application-default login, GCE metadata, Workload Identity
                tracing::info!(
                    "Using provider: google with ADC (project: {}, region: {}, model: {}, parallel: enabled={}, sub_batch={}, concurrency={})",
                    project_id,
                    region,
                    model,
                    parallel_config.enabled,
                    parallel_config.sub_batch_size,
                    parallel_config.max_concurrency
                );

                Box::new(
                    GoogleProvider::from_adc(project_id, region, model, parallel_config).await?,
                )
            };

            Ok(provider)
        }
        unknown => {
            tracing::error!("Unknown provider requested: {}", unknown);
            Err(EmbeddingError::Config(ConfigError::InvalidValue {
                field: "MAPROOM_EMBEDDING_PROVIDER".to_string(),
                reason: format!(
                    "Unknown provider: '{}'. Supported providers: ollama, openai, google",
                    unknown
                ),
            }))
        }
    }
}

/// Validate service account JSON file structure.
///
/// This function validates that a service account JSON file exists, is readable,
/// contains valid JSON, and has all required fields for Google Cloud authentication.
///
/// # Arguments
///
/// * `path` - Path to the service account JSON key file
///
/// # Required Fields
///
/// - `type`: Must be "service_account"
/// - `project_id`: GCP project ID
/// - `private_key`: RSA private key for signing JWT tokens
/// - `client_email`: Service account email address
///
/// # Returns
///
/// - `Ok(())` - File is valid and contains required fields
/// - `Err(EmbeddingError)` - File is unreadable, invalid JSON, or missing required fields
///
/// # Examples
///
/// ```ignore
/// # use maproom::embedding::factory::validate_service_account_json;
/// # use std::path::PathBuf;
/// # fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let path = PathBuf::from("/path/to/service-account.json");
/// validate_service_account_json(&path)?;
/// # Ok(())
/// # }
/// ```
fn validate_service_account_json(path: &std::path::Path) -> Result<(), EmbeddingError> {
    // Read file contents
    let content = fs::read_to_string(path).map_err(|e| {
        EmbeddingError::Config(ConfigError::FileError(format!(
            "Failed to read service account JSON file: {}\n\
             Ensure the file has proper read permissions.",
            e
        )))
    })?;

    // Parse JSON
    let json: serde_json::Value = serde_json::from_str(&content).map_err(|e| {
        EmbeddingError::Config(ConfigError::FileError(format!(
            "Service account file is not valid JSON: {}\n\
             Download a new service account key from: https://console.cloud.google.com/iam-admin/serviceaccounts",
            e
        )))
    })?;

    // Validate required fields
    let required_fields = ["type", "project_id", "private_key", "client_email"];
    for field in &required_fields {
        if json.get(field).is_none() {
            return Err(EmbeddingError::Config(ConfigError::FileError(format!(
                "Service account JSON missing required field: '{}'\n\
                 Expected fields: type, project_id, private_key, client_email\n\
                 Download a valid service account key from: https://console.cloud.google.com/iam-admin/serviceaccounts",
                field
            ))));
        }
    }

    // Validate type field value
    if let Some(account_type) = json.get("type").and_then(|v| v.as_str()) {
        if account_type != "service_account" {
            return Err(EmbeddingError::Config(ConfigError::FileError(format!(
                "Service account JSON has wrong type: expected 'service_account', got '{}'\n\
                 Ensure you downloaded a service account key, not an OAuth client ID or other credential type.\n\
                 Download from: https://console.cloud.google.com/iam-admin/serviceaccounts",
                account_type
            ))));
        }
    } else {
        return Err(EmbeddingError::Config(ConfigError::FileError(
            "Service account JSON 'type' field is not a string".to_string(),
        )));
    }

    Ok(())
}

/// Normalize an endpoint URL for Ollama API.
///
/// Given a base URL or full embed endpoint, ensures the URL:
/// - Has no trailing slashes
/// - Has `/api/embed` suffix
///
/// # Arguments
///
/// * `url` - Base URL (e.g., `http://localhost:11434`) or full endpoint (e.g., `http://localhost:11434/api/embed`)
///
/// # Returns
///
/// Normalized endpoint URL with `/api/embed` suffix
///
/// # Examples
///
/// ```ignore
/// // This function is private and cannot be tested in doctests
/// assert_eq!(
///     normalize_endpoint_url("http://localhost:11434"),
///     "http://localhost:11434/api/embed"
/// );
/// assert_eq!(
///     normalize_endpoint_url("http://localhost:11434/api/embed"),
///     "http://localhost:11434/api/embed"
/// );
/// assert_eq!(
///     normalize_endpoint_url("http://localhost:11434/"),
///     "http://localhost:11434/api/embed"
/// );
/// ```
fn normalize_endpoint_url(url: &str) -> String {
    let url = url.trim().trim_end_matches('/');

    // If already has /api/embed, use as-is
    if url.ends_with("/api/embed") {
        return url.to_string();
    }

    // Otherwise append standard path
    format!("{}/api/embed", url)
}

/// Extract the base URL from an Ollama embed endpoint.
///
/// Given a full embed endpoint URL (e.g., `http://host:port/api/embed`),
/// extracts just the base URL (e.g., `http://host:port`) for health checks.
///
/// # Supported Suffixes
///
/// - `/api/embed` - Standard Ollama embedding endpoint
/// - `/api/embeddings` - Alternative endpoint format
///
/// Handles trailing slashes gracefully.
///
/// # Returns
///
/// - `Some(base_url)` - Base URL without the embed suffix
/// - `None` - URL doesn't have a recognized suffix
///
/// # Examples
///
/// ```ignore
/// # fn example() {
/// assert_eq!(
///     extract_base_url("http://localhost:11434/api/embed"),
///     Some("http://localhost:11434".to_string())
/// );
/// assert_eq!(
///     extract_base_url("http://host:8080/api/embeddings/"),
///     Some("http://host:8080".to_string())
/// );
/// assert_eq!(extract_base_url("http://host:8080/custom"), None);
/// # }
/// ```
fn extract_base_url(endpoint: &str) -> Option<String> {
    // Handle trailing slashes: "http://host:port/api/embed/" → "http://host:port"
    let endpoint = endpoint.trim_end_matches('/');
    endpoint
        .strip_suffix("/api/embed")
        .or_else(|| endpoint.strip_suffix("/api/embeddings"))
        .map(|s| s.to_string())
}

/// Detect Ollama endpoint using fallback chain.
///
/// This function attempts to detect a running Ollama instance by checking
/// multiple endpoints in priority order. This enables zero-config operation
/// in various environments including Docker and DevContainers.
///
/// # Detection Order
///
/// 1. **Explicit Configuration**: `MAPROOM_EMBEDDING_API_ENDPOINT` env var
///    (extracts base URL from the embed endpoint)
/// 2. **Native Development**: `localhost:11434`
/// 3. **Docker/DevContainer**: `host.docker.internal:11434`
///
/// Each endpoint is checked with a 2-second timeout. Total worst-case
/// detection time is 6 seconds (all endpoints timeout).
///
/// # Returns
///
/// - `Some(base_url)` - First reachable Ollama endpoint's base URL
/// - `None` - No Ollama instance detected at any endpoint
///
/// # Examples
///
/// ```ignore
/// # async fn example() {
/// if let Some(endpoint) = detect_ollama_endpoint().await {
///     println!("Ollama available at: {}", endpoint);
/// } else {
///     println!("Ollama not detected");
/// }
/// # }
/// ```
async fn detect_ollama_endpoint() -> Option<String> {
    // Build HTTP client with short timeout per endpoint
    let client = match reqwest::Client::builder()
        .timeout(Duration::from_secs(2))
        .build()
    {
        Ok(c) => c,
        Err(e) => {
            tracing::debug!("Failed to build HTTP client for Ollama detection: {}", e);
            return None;
        }
    };

    // Build fallback list
    let mut endpoints = Vec::new();

    // 1. Check explicit endpoint config (extract base URL)
    if let Ok(embed_endpoint) = env::var("MAPROOM_EMBEDDING_API_ENDPOINT") {
        if let Some(base) = extract_base_url(&embed_endpoint) {
            endpoints.push(base);
        }
    }

    // 2. localhost (native development)
    endpoints.push("http://localhost:11434".to_string());

    // 3. Docker host (containerized development)
    endpoints.push("http://host.docker.internal:11434".to_string());

    // Log all endpoints we'll try (helpful for debugging)
    tracing::debug!("Ollama detection fallback chain: {:?}", endpoints);

    // Try each endpoint sequentially
    for base in endpoints {
        let check_url = format!("{}/api/tags", base);
        tracing::debug!("Checking Ollama at: {}", check_url);

        match client.get(&check_url).send().await {
            Ok(response) if response.status().is_success() => {
                tracing::info!("Ollama detected at: {}", base);
                return Some(base);
            }
            Ok(response) => {
                tracing::debug!(
                    "Ollama check failed at {}: status {}",
                    base,
                    response.status()
                );
            }
            Err(e) => {
                tracing::debug!("Ollama not available at {}: {}", base, e);
            }
        }
    }

    tracing::debug!("No Ollama endpoint detected");
    None
}

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

    // Note: These tests use environment variables which are global state.
    // The #[serial] annotation ensures tests run sequentially to avoid interference.

    #[test]
    fn test_provider_name_normalization() {
        // Test case-insensitive provider names
        assert_eq!("ollama".to_lowercase(), "ollama");
        assert_eq!("OLLAMA".to_lowercase(), "ollama");
        assert_eq!("Ollama".to_lowercase(), "ollama");
        assert_eq!("openai".to_lowercase(), "openai");
        assert_eq!("OpenAI".to_lowercase(), "openai");
    }

    #[test]
    fn test_normalize_endpoint_url_base_url() {
        // Base URL should get /api/embed appended
        assert_eq!(
            normalize_endpoint_url("http://localhost:11434"),
            "http://localhost:11434/api/embed"
        );
        assert_eq!(
            normalize_endpoint_url("http://host.docker.internal:11434"),
            "http://host.docker.internal:11434/api/embed"
        );
    }

    #[test]
    fn test_normalize_endpoint_url_full_url() {
        // Full URL with /api/embed should remain unchanged
        assert_eq!(
            normalize_endpoint_url("http://localhost:11434/api/embed"),
            "http://localhost:11434/api/embed"
        );
        assert_eq!(
            normalize_endpoint_url("http://host.docker.internal:11434/api/embed"),
            "http://host.docker.internal:11434/api/embed"
        );
    }

    #[test]
    fn test_normalize_endpoint_url_trailing_slashes() {
        // Trailing slash on base URL
        assert_eq!(
            normalize_endpoint_url("http://localhost:11434/"),
            "http://localhost:11434/api/embed"
        );
        // Trailing slash on full URL
        assert_eq!(
            normalize_endpoint_url("http://localhost:11434/api/embed/"),
            "http://localhost:11434/api/embed"
        );
        // Multiple trailing slashes on base
        assert_eq!(
            normalize_endpoint_url("http://localhost:11434///"),
            "http://localhost:11434/api/embed"
        );
        // Multiple trailing slashes on full
        assert_eq!(
            normalize_endpoint_url("http://localhost:11434/api/embed///"),
            "http://localhost:11434/api/embed"
        );
    }

    #[test]
    fn test_normalize_endpoint_url_whitespace() {
        // Leading and trailing whitespace
        assert_eq!(
            normalize_endpoint_url("  http://localhost:11434  "),
            "http://localhost:11434/api/embed"
        );
        assert_eq!(
            normalize_endpoint_url("  http://localhost:11434/api/embed  "),
            "http://localhost:11434/api/embed"
        );
    }

    #[test]
    fn test_normalize_endpoint_url_empty_string() {
        // Empty string gets /api/embed appended (edge case)
        assert_eq!(normalize_endpoint_url(""), "/api/embed");
    }

    #[test]
    fn test_extract_base_url_embed_suffix() {
        // Standard /api/embed suffix
        assert_eq!(
            extract_base_url("http://localhost:11434/api/embed"),
            Some("http://localhost:11434".to_string())
        );
        // Custom host with port
        assert_eq!(
            extract_base_url("http://ollama.local:11434/api/embed"),
            Some("http://ollama.local:11434".to_string())
        );
        // Docker host
        assert_eq!(
            extract_base_url("http://host.docker.internal:11434/api/embed"),
            Some("http://host.docker.internal:11434".to_string())
        );
    }

    #[test]
    fn test_extract_base_url_embeddings_suffix() {
        // Alternative /api/embeddings suffix
        assert_eq!(
            extract_base_url("http://host:8080/api/embeddings"),
            Some("http://host:8080".to_string())
        );
        // With different port
        assert_eq!(
            extract_base_url("http://localhost:9999/api/embeddings"),
            Some("http://localhost:9999".to_string())
        );
    }

    #[test]
    fn test_extract_base_url_trailing_slash() {
        // Trailing slash on /api/embed
        assert_eq!(
            extract_base_url("http://localhost:11434/api/embed/"),
            Some("http://localhost:11434".to_string())
        );
        // Trailing slash on /api/embeddings
        assert_eq!(
            extract_base_url("http://host:8080/api/embeddings/"),
            Some("http://host:8080".to_string())
        );
        // Multiple trailing slashes
        assert_eq!(
            extract_base_url("http://localhost:11434/api/embed///"),
            Some("http://localhost:11434".to_string())
        );
    }

    #[test]
    fn test_extract_base_url_no_suffix() {
        // No recognized suffix - returns None
        assert_eq!(extract_base_url("http://localhost:11434/custom"), None);
        assert_eq!(
            extract_base_url("http://localhost:11434/api/generate"),
            None
        );
        assert_eq!(extract_base_url("http://localhost:11434"), None);
        // Partial match shouldn't work
        assert_eq!(extract_base_url("http://localhost:11434/api/embe"), None);
    }

    #[test]
    fn test_extract_base_url_empty() {
        // Empty string
        assert_eq!(extract_base_url(""), None);
        // Just slashes
        assert_eq!(extract_base_url("/"), None);
        assert_eq!(extract_base_url("///"), None);
    }

    #[tokio::test]
    async fn test_ollama_detection_timeout() {
        // This test verifies that Ollama detection respects the 2-second timeout per endpoint
        // The fallback chain tries up to 3 endpoints (custom, localhost, host.docker.internal)
        // Worst case: 3 endpoints × 2s timeout = 6s
        let start = std::time::Instant::now();
        let _result = detect_ollama_endpoint().await;
        let elapsed = start.elapsed();

        // Should complete within 7 seconds (3 × 2s timeout + 1s margin)
        // In practice, localhost usually fails fast (connection refused) rather than timing out
        assert!(
            elapsed.as_secs() < 7,
            "Ollama detection took too long: {:?}",
            elapsed
        );
    }

    #[tokio::test]
    #[serial]
    async fn test_create_provider_with_explicit_ollama() {
        // Clean up all environment variables first
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_MODEL");
        env::remove_var("EMBEDDING_API_ENDPOINT");
        env::remove_var("OPENAI_API_KEY");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");

        // Test explicit Ollama configuration
        env::set_var("MAPROOM_EMBEDDING_PROVIDER", "ollama");
        env::set_var("MAPROOM_EMBEDDING_MODEL", "nomic-embed-text");
        env::set_var("EMBEDDING_API_ENDPOINT", "http://localhost:11434/api/embed");
        env::set_var("MAPROOM_EMBEDDING_DIMENSION", "768");

        let result = create_provider_from_env().await;

        // Clean up env vars
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_MODEL");
        env::remove_var("EMBEDDING_API_ENDPOINT");
        env::remove_var("MAPROOM_EMBEDDING_DIMENSION");

        assert!(
            result.is_ok(),
            "Failed to create Ollama provider: {:?}",
            result.err()
        );
        let provider = result.unwrap();
        assert_eq!(provider.provider_name(), "ollama");
        assert_eq!(provider.dimension(), 768);
    }

    #[tokio::test]
    #[serial]
    async fn test_create_provider_missing_openai_key() {
        // Clean up all environment variables first
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("OPENAI_API_KEY");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");

        // Set provider to openai without API key
        env::set_var("MAPROOM_EMBEDDING_PROVIDER", "openai");

        let result = create_provider_from_env().await;

        // Clean up
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");

        assert!(
            result.is_err(),
            "Expected error when OPENAI_API_KEY is missing"
        );
        if let Err(err) = result {
            assert!(
                matches!(err, EmbeddingError::Config(ConfigError::MissingConfig(_))),
                "Expected MissingConfig error, got: {:?}",
                err
            );

            // Check error message is helpful
            let err_msg = err.to_string();
            assert!(
                err_msg.contains("OPENAI_API_KEY"),
                "Error message should mention OPENAI_API_KEY: {}",
                err_msg
            );
        }
    }

    #[tokio::test]
    #[serial]
    async fn test_create_provider_unknown_provider() {
        // Clean up all environment variables first
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("OPENAI_API_KEY");
        env::remove_var("MAPROOM_OPENAI_API_KEY");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("MAPROOM_GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");
        env::remove_var("MAPROOM_GOOGLE_APPLICATION_CREDENTIALS");

        env::set_var("MAPROOM_EMBEDDING_PROVIDER", "unknown-provider");

        let result = create_provider_from_env().await;

        // Clean up
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");

        assert!(result.is_err(), "Expected error for unknown provider");
        if let Err(err) = result {
            assert!(
                matches!(
                    err,
                    EmbeddingError::Config(ConfigError::InvalidValue { .. })
                ),
                "Expected InvalidValue error, got: {:?}",
                err
            );

            // Check error message lists supported providers
            let err_msg = err.to_string();
            assert!(
                err_msg.contains("ollama") && err_msg.contains("openai"),
                "Error message should list supported providers: {}",
                err_msg
            );
        }
    }

    #[tokio::test]
    #[serial]
    async fn test_create_provider_google_missing_project_id() {
        // Clean up all environment variables first
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("OPENAI_API_KEY");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");

        // Set provider but not project ID
        env::set_var("MAPROOM_EMBEDDING_PROVIDER", "google");

        let result = create_provider_from_env().await;

        // Clean up
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");

        assert!(
            result.is_err(),
            "Expected error when GOOGLE_PROJECT_ID is missing"
        );
        if let Err(err) = result {
            assert!(
                matches!(err, EmbeddingError::Config(ConfigError::MissingConfig(_))),
                "Expected MissingConfig error, got: {:?}",
                err
            );

            let err_msg = err.to_string();
            assert!(
                err_msg.contains("GOOGLE_PROJECT_ID"),
                "Error message should mention GOOGLE_PROJECT_ID: {}",
                err_msg
            );
            assert!(
                err_msg.contains("console.cloud.google.com"),
                "Error message should reference GCP Console: {}",
                err_msg
            );
        }
    }

    /// Validates that Google provider errors do not contain OpenAI-specific error context.
    ///
    /// Context: AFM-01 fix replaced hardcoded "Ensure OPENAI_API_KEY is set" context strings
    /// in main.rs that masked provider-specific errors. This test prevents regression by
    /// verifying that Google provider initialization failures surface correct provider-specific
    /// error messages without OpenAI terminology. Created after 15 competition test failures
    /// revealed the cross-provider error masking issue.
    #[tokio::test]
    #[serial]
    async fn test_google_provider_error_does_not_mention_openai() {
        // Clean up all environment variables
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_API_ENDPOINT");
        env::remove_var("OPENAI_API_KEY");
        env::remove_var("MAPROOM_OPENAI_API_KEY");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("MAPROOM_GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");
        env::remove_var("MAPROOM_GOOGLE_APPLICATION_CREDENTIALS");

        // Configure Google provider without project ID
        env::set_var("MAPROOM_EMBEDDING_PROVIDER", "google");

        let result = create_provider_from_env().await;

        // Clean up
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");

        assert!(
            result.is_err(),
            "Expected error when GOOGLE_PROJECT_ID is missing"
        );

        if let Err(err) = result {
            let err_msg = err.to_string();

            // Verify Google-specific error surfaces
            assert!(
                err_msg.contains("GOOGLE_PROJECT_ID") || err_msg.contains("Google project ID"),
                "Error should mention Google project ID, got: {}",
                err_msg
            );

            // Verify OpenAI is NOT mentioned in the error
            assert!(
                !err_msg.contains("OPENAI_API_KEY"),
                "Google provider error must NOT mention OPENAI_API_KEY, got: {}",
                err_msg
            );
        }
    }

    #[tokio::test]
    #[serial]
    async fn test_create_provider_google_missing_credentials() {
        // Clean up all environment variables first (including MAPROOM_ prefixed variants)
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_API_ENDPOINT");
        env::remove_var("OPENAI_API_KEY");
        env::remove_var("MAPROOM_OPENAI_API_KEY");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("MAPROOM_GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");
        env::remove_var("MAPROOM_GOOGLE_APPLICATION_CREDENTIALS");

        // Set provider and project ID but not credentials
        env::set_var("MAPROOM_EMBEDDING_PROVIDER", "google");
        env::set_var("GOOGLE_PROJECT_ID", "test-project");

        let result = create_provider_from_env().await;

        // Clean up
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("GOOGLE_PROJECT_ID");

        assert!(
            result.is_err(),
            "Expected error when GOOGLE_APPLICATION_CREDENTIALS is missing"
        );
        if let Err(err) = result {
            // After commit 52991e99, when GOOGLE_APPLICATION_CREDENTIALS is not set,
            // the factory falls back to ADC (Application Default Credentials) via
            // GoogleProvider::from_adc(). When ADC also fails (no gcloud login, no
            // metadata server), we get MissingConfig — credentials are genuinely missing.
            assert!(
                matches!(err, EmbeddingError::Config(ConfigError::MissingConfig(_))),
                "Expected MissingConfig error, got: {:?}",
                err
            );

            let err_msg = err.to_string();
            assert!(
                err_msg.contains("GOOGLE_APPLICATION_CREDENTIALS"),
                "Error message should mention GOOGLE_APPLICATION_CREDENTIALS: {}",
                err_msg
            );
            assert!(
                err_msg.contains("service account JSON key"),
                "Error message should reference service account key: {}",
                err_msg
            );
        }
    }

    #[tokio::test]
    #[serial]
    async fn test_create_provider_google_credentials_file_not_found() {
        // Clean up all environment variables first (including MAPROOM_ prefixed variants)
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_API_ENDPOINT");
        env::remove_var("OPENAI_API_KEY");
        env::remove_var("MAPROOM_OPENAI_API_KEY");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("MAPROOM_GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");
        env::remove_var("MAPROOM_GOOGLE_APPLICATION_CREDENTIALS");

        env::set_var("MAPROOM_EMBEDDING_PROVIDER", "google");
        env::set_var("GOOGLE_PROJECT_ID", "test-project");
        env::set_var(
            "GOOGLE_APPLICATION_CREDENTIALS",
            "/nonexistent/path/key.json",
        );

        let result = create_provider_from_env().await;

        // Clean up
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");

        assert!(
            result.is_err(),
            "Expected error when credentials file doesn't exist"
        );
        if let Err(err) = result {
            assert!(
                matches!(err, EmbeddingError::Config(ConfigError::FileError(_))),
                "Expected FileError, got: {:?}",
                err
            );

            let err_msg = err.to_string();
            assert!(
                err_msg.contains("not found"),
                "Error message should indicate file not found: {}",
                err_msg
            );
            assert!(
                err_msg.contains("/nonexistent/path/key.json"),
                "Error message should show the path: {}",
                err_msg
            );
        }
    }

    #[tokio::test]
    async fn test_validate_service_account_json_invalid_json() {
        // Create a temporary file with invalid JSON
        let temp_dir = std::env::temp_dir();
        let temp_file = temp_dir.join("invalid-service-account.json");
        fs::write(&temp_file, "{ invalid json }").expect("Failed to write temp file");

        let result = validate_service_account_json(&temp_file);

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

        assert!(result.is_err(), "Expected error for invalid JSON");
        if let Err(err) = result {
            assert!(
                matches!(err, EmbeddingError::Config(ConfigError::FileError(_))),
                "Expected FileError, got: {:?}",
                err
            );

            let err_msg = err.to_string();
            assert!(
                err_msg.contains("not valid JSON"),
                "Error message should indicate invalid JSON: {}",
                err_msg
            );
            assert!(
                err_msg.contains("console.cloud.google.com"),
                "Error message should reference GCP Console: {}",
                err_msg
            );
        }
    }

    #[tokio::test]
    async fn test_validate_service_account_json_missing_field() {
        // Create a temporary file with incomplete service account JSON
        let temp_dir = std::env::temp_dir();
        let temp_file = temp_dir.join("incomplete-service-account.json");
        let incomplete_json = r#"{
            "type": "service_account",
            "project_id": "test-project"
        }"#;
        fs::write(&temp_file, incomplete_json).expect("Failed to write temp file");

        let result = validate_service_account_json(&temp_file);

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

        assert!(
            result.is_err(),
            "Expected error for missing required fields"
        );
        if let Err(err) = result {
            assert!(
                matches!(err, EmbeddingError::Config(ConfigError::FileError(_))),
                "Expected FileError, got: {:?}",
                err
            );

            let err_msg = err.to_string();
            assert!(
                err_msg.contains("missing required field"),
                "Error message should indicate missing field: {}",
                err_msg
            );
            // Should mention one of the missing fields (private_key or client_email)
            assert!(
                err_msg.contains("private_key") || err_msg.contains("client_email"),
                "Error message should name a missing field: {}",
                err_msg
            );
        }
    }

    #[tokio::test]
    async fn test_validate_service_account_json_wrong_type() {
        // Create a temporary file with wrong account type
        let temp_dir = std::env::temp_dir();
        let temp_file = temp_dir.join("wrong-type-service-account.json");
        let wrong_type_json = r#"{
            "type": "authorized_user",
            "project_id": "test-project",
            "private_key": "-----BEGIN PRIVATE KEY-----\ntest\n-----END PRIVATE KEY-----\n",
            "client_email": "test@example.com"
        }"#;
        fs::write(&temp_file, wrong_type_json).expect("Failed to write temp file");

        let result = validate_service_account_json(&temp_file);

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

        assert!(result.is_err(), "Expected error for wrong account type");
        if let Err(err) = result {
            assert!(
                matches!(err, EmbeddingError::Config(ConfigError::FileError(_))),
                "Expected FileError, got: {:?}",
                err
            );

            let err_msg = err.to_string();
            assert!(
                err_msg.contains("wrong type"),
                "Error message should indicate wrong type: {}",
                err_msg
            );
            assert!(
                err_msg.contains("authorized_user"),
                "Error message should show actual type: {}",
                err_msg
            );
            assert!(
                err_msg.contains("service_account"),
                "Error message should show expected type: {}",
                err_msg
            );
        }
    }

    #[tokio::test]
    async fn test_validate_service_account_json_valid() {
        // Create a temporary file with valid service account JSON structure
        let temp_dir = std::env::temp_dir();
        let temp_file = temp_dir.join("valid-service-account.json");
        let valid_json = r#"{
            "type": "service_account",
            "project_id": "test-project",
            "private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQC\n-----END PRIVATE KEY-----\n",
            "client_email": "test@test-project.iam.gserviceaccount.com",
            "client_id": "123456789",
            "auth_uri": "https://accounts.google.com/o/oauth2/auth",
            "token_uri": "https://oauth2.googleapis.com/token"
        }"#;
        fs::write(&temp_file, valid_json).expect("Failed to write temp file");

        let result = validate_service_account_json(&temp_file);

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

        assert!(
            result.is_ok(),
            "Expected success for valid service account JSON: {:?}",
            result.err()
        );
    }

    #[tokio::test]
    #[serial]
    async fn test_create_provider_no_config_no_ollama() {
        // Clean up all environment variables first
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("OPENAI_API_KEY");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");

        // Note: This test will pass if Ollama IS running locally
        // If Ollama is available, it will successfully create a provider
        // If Ollama is NOT available, it will return a helpful error
        let result = create_provider_from_env().await;

        match result {
            Err(err) => {
                let err_msg = err.to_string();

                // Error should mention installation options
                assert!(
                    err_msg.contains("Ollama") || err_msg.contains("MAPROOM_EMBEDDING_PROVIDER"),
                    "Error message should provide helpful guidance: {}",
                    err_msg
                );
            }
            Ok(provider) => {
                // If it succeeded, it must have detected Ollama
                assert_eq!(provider.provider_name(), "ollama");
            }
        }
    }

    #[tokio::test]
    #[serial]
    async fn test_explicit_endpoint_takes_precedence() {
        // Clean up all environment variables first
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_MODEL");
        env::remove_var("MAPROOM_EMBEDDING_API_ENDPOINT");
        env::remove_var("MAPROOM_EMBEDDING_DIMENSION");
        env::remove_var("OPENAI_API_KEY");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");

        // Set explicit Ollama configuration with Docker host endpoint
        env::set_var("MAPROOM_EMBEDDING_PROVIDER", "ollama");
        env::set_var(
            "MAPROOM_EMBEDDING_API_ENDPOINT",
            "http://host.docker.internal:11434",
        );
        env::set_var("MAPROOM_EMBEDDING_MODEL", "mxbai-embed-large");
        env::set_var("MAPROOM_EMBEDDING_DIMENSION", "1024");

        let result = create_provider_from_env().await;

        // Clean up env vars
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_API_ENDPOINT");
        env::remove_var("MAPROOM_EMBEDDING_MODEL");
        env::remove_var("MAPROOM_EMBEDDING_DIMENSION");

        // Provider should be created successfully (connection failure is OK - we're testing configuration)
        assert!(
            result.is_ok(),
            "Failed to create Ollama provider with explicit endpoint: {:?}",
            result.err()
        );
        let provider = result.unwrap();
        assert_eq!(provider.provider_name(), "ollama");
        assert_eq!(provider.dimension(), 1024);

        // Verify endpoint normalization worked by checking the provider was configured
        // (actual HTTP connection may fail, but provider should be created)
    }

    #[tokio::test]
    #[serial]
    async fn test_explicit_endpoint_with_full_url() {
        // Clean up all environment variables first
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_MODEL");
        env::remove_var("MAPROOM_EMBEDDING_API_ENDPOINT");
        env::remove_var("MAPROOM_EMBEDDING_DIMENSION");
        env::remove_var("OPENAI_API_KEY");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");

        // Set explicit endpoint with full URL (including /api/embed)
        env::set_var("MAPROOM_EMBEDDING_PROVIDER", "ollama");
        env::set_var(
            "MAPROOM_EMBEDDING_API_ENDPOINT",
            "http://host.docker.internal:11434/api/embed",
        );
        env::set_var("MAPROOM_EMBEDDING_MODEL", "mxbai-embed-large");
        env::set_var("MAPROOM_EMBEDDING_DIMENSION", "1024");

        let result = create_provider_from_env().await;

        // Clean up env vars
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_API_ENDPOINT");
        env::remove_var("MAPROOM_EMBEDDING_MODEL");
        env::remove_var("MAPROOM_EMBEDDING_DIMENSION");

        assert!(
            result.is_ok(),
            "Failed to create Ollama provider with full endpoint URL: {:?}",
            result.err()
        );
        let provider = result.unwrap();
        assert_eq!(provider.provider_name(), "ollama");
        assert_eq!(provider.dimension(), 1024);
    }

    #[tokio::test]
    #[serial]
    async fn test_backward_compat_auto_detection_when_no_explicit_endpoint() {
        // Clean up all environment variables first
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_MODEL");
        env::remove_var("MAPROOM_EMBEDDING_API_ENDPOINT");
        env::remove_var("MAPROOM_EMBEDDING_DIMENSION");
        env::remove_var("OPENAI_API_KEY");
        env::remove_var("GOOGLE_PROJECT_ID");
        env::remove_var("GOOGLE_APPLICATION_CREDENTIALS");

        // Do NOT set MAPROOM_EMBEDDING_API_ENDPOINT - should trigger auto-detection
        // This test verifies backward compatibility with existing auto-detection behavior
        let result = create_provider_from_env().await;

        // Test should either:
        // 1. Succeed if Ollama is detected (auto-detection worked)
        // 2. Fail with helpful error if no Ollama detected (expected when Ollama not running)
        match result {
            Ok(provider) => {
                // Auto-detection succeeded
                assert_eq!(provider.provider_name(), "ollama");
            }
            Err(err) => {
                // Auto-detection failed (expected when Ollama not running)
                let err_msg = err.to_string();
                assert!(
                    err_msg.contains("Ollama") || err_msg.contains("MAPROOM_EMBEDDING_PROVIDER"),
                    "Error message should provide helpful guidance: {}",
                    err_msg
                );
            }
        }
    }

    #[tokio::test]
    async fn test_provider_trait_object_compatibility() {
        // Test that factory returns a valid trait object
        env::set_var("MAPROOM_EMBEDDING_PROVIDER", "ollama");

        let result = create_provider_from_env().await;

        // Clean up
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");

        if result.is_ok() {
            let provider: Box<dyn EmbeddingProvider> = result.unwrap();

            // Verify trait methods work through dynamic dispatch
            assert!(!provider.provider_name().is_empty());
            assert!(provider.dimension() > 0);

            // Test that metrics returns None for providers without metrics
            let metrics = provider.metrics();
            assert!(metrics.is_none() || metrics.is_some());
        }
    }

    #[test]
    fn test_error_messages_are_actionable() {
        // Verify error messages provide clear next steps
        let missing_key_error =
            ConfigError::MissingConfig("OPENAI_API_KEY environment variable required".to_string());
        let err_msg = missing_key_error.to_string();
        assert!(!err_msg.is_empty());

        let invalid_provider_error = ConfigError::InvalidValue {
            field: "MAPROOM_EMBEDDING_PROVIDER".to_string(),
            reason: "Unknown provider".to_string(),
        };
        let err_msg = invalid_provider_error.to_string();
        assert!(err_msg.contains("MAPROOM_EMBEDDING_PROVIDER"));
    }

    #[tokio::test]
    #[serial]
    #[ignore] // Requires embedding provider (Ollama)
    async fn test_backward_compat_nomic_embed_text() {
        // Verify that explicit nomic-embed-text configuration still works after default change
        env::set_var("MAPROOM_EMBEDDING_MODEL", "nomic-embed-text");
        env::set_var("MAPROOM_EMBEDDING_DIMENSION", "768");

        let provider = create_provider_from_env().await.unwrap();
        assert_eq!(provider.provider_name(), "ollama");
        assert_eq!(provider.dimension(), 768);

        env::remove_var("MAPROOM_EMBEDDING_MODEL");
        env::remove_var("MAPROOM_EMBEDDING_DIMENSION");
    }

    #[tokio::test]
    #[serial]
    async fn test_zero_config_infers_dimension_mxbai() {
        // Clean environment
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_MODEL");
        env::remove_var("MAPROOM_EMBEDDING_DIMENSION");
        env::remove_var("MAPROOM_EMBEDDING_API_ENDPOINT");

        // Set up minimal config for Ollama
        env::set_var("MAPROOM_EMBEDDING_PROVIDER", "ollama");
        env::set_var("MAPROOM_EMBEDDING_MODEL", "mxbai-embed-large");

        let result = create_provider_from_env().await;

        // Cleanup
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_MODEL");

        assert!(result.is_ok(), "Provider creation should succeed");
        let provider = result.unwrap();
        assert_eq!(provider.provider_name(), "ollama");
        assert_eq!(provider.dimension(), 1024); // Correctly inferred
    }

    #[tokio::test]
    #[serial]
    #[ignore] // Requires Ollama running
    async fn test_auto_detected_ollama_uses_correct_dimension() {
        // Clean environment
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_MODEL");
        env::remove_var("MAPROOM_EMBEDDING_DIMENSION");

        // Requires Ollama at localhost:11434
        let result = create_provider_from_env().await;

        match result {
            Ok(provider) => {
                assert_eq!(provider.provider_name(), "ollama");
                assert_eq!(provider.dimension(), 1024); // mxbai-embed-large default
            }
            Err(_) => {
                panic!("Ollama not running - expected for this test");
            }
        }

        // Cleanup
        env::remove_var("MAPROOM_EMBEDDING_PROVIDER");
        env::remove_var("MAPROOM_EMBEDDING_MODEL");
        env::remove_var("MAPROOM_EMBEDDING_DIMENSION");
    }
}