Skip to main content

oxi/store/
auth_storage.rs

1//! Authentication storage for API keys, OAuth tokens, and session tokens.
2//!
3//! Provides secure storage and retrieval of authentication credentials,
4//! with OS keyring integration and fallback to encrypted file storage.
5//! Supports multi-provider auth, credential validation, and session tokens.
6
7use parking_lot::RwLock;
8use serde::{Deserialize, Serialize};
9use std::collections::HashMap;
10use std::path::PathBuf;
11use std::sync::{Arc, OnceLock};
12
13// ============================================================================
14// Credential Types
15// ============================================================================
16
17/// Authentication credential
18#[derive(Debug, Clone, Serialize, Deserialize)]
19#[serde(tag = "type", rename_all = "snake_case")]
20pub enum AuthCredential {
21    /// API key credential
22    ApiKey {
23        /// The API key string.
24        key: String,
25    },
26    /// OAuth credential with token management
27    OAuth {
28        /// access_token.
29        access_token: String,
30        /// refresh_token.
31        refresh_token: Option<String>,
32        /// expires_at.
33        expires_at: u64,
34        /// Scopes granted (space-separated)
35        #[serde(default)]
36        scopes: Option<String>,
37        /// Provider-specific data (JSON for extensibility)
38        #[serde(default)]
39        provider_data: Option<serde_json::Value>,
40    },
41    /// Session token credential (e.g. from browser-based login)
42    Session {
43        /// token.
44        token: String,
45        /// When the session expires (unix timestamp, 0 = never)
46        #[serde(default)]
47        expires_at: u64,
48        /// Session metadata (user info, etc.)
49        #[serde(default)]
50        metadata: Option<serde_json::Value>,
51    },
52}
53
54impl AuthCredential {
55    /// Check if the credential is expired
56    pub fn is_expired(&self) -> bool {
57        match self {
58            AuthCredential::OAuth { expires_at, .. } => {
59                let now = now_secs();
60                *expires_at < now
61            }
62            AuthCredential::Session { expires_at, .. } => {
63                if *expires_at == 0 {
64                    return false; // never expires
65                }
66                *expires_at <= now_secs()
67            }
68            AuthCredential::ApiKey { .. } => false,
69        }
70    }
71
72    /// Check if the token needs refresh (within 60 seconds of expiration)
73    pub fn needs_refresh(&self) -> bool {
74        match self {
75            AuthCredential::OAuth {
76                expires_at,
77                refresh_token,
78                ..
79            } => {
80                let now = now_secs();
81                refresh_token.is_some() && *expires_at <= now + 60
82            }
83            AuthCredential::Session { .. } => false,
84            AuthCredential::ApiKey { .. } => false,
85        }
86    }
87
88    /// Get the access token if valid (not expired)
89    pub fn access_token(&self) -> Option<&str> {
90        match self {
91            AuthCredential::OAuth { access_token, .. } if !self.is_expired() => Some(access_token),
92            AuthCredential::Session { token, .. } if !self.is_expired() => Some(token),
93            _ => None,
94        }
95    }
96
97    /// Get the credential type name
98    pub fn type_name(&self) -> &'static str {
99        match self {
100            AuthCredential::ApiKey { .. } => "api_key",
101            AuthCredential::OAuth { .. } => "oauth",
102            AuthCredential::Session { .. } => "session",
103        }
104    }
105
106    /// Validate the credential structure
107    pub fn validate(&self) -> Result<(), CredentialValidationError> {
108        match self {
109            AuthCredential::ApiKey { key } => {
110                if key.is_empty() {
111                    return Err(CredentialValidationError::EmptyField("key".to_string()));
112                }
113                // Check for common placeholder values
114                if key == "your-api-key-here" || key == "xxx" {
115                    return Err(CredentialValidationError::PlaceholderValue(key.clone()));
116                }
117                Ok(())
118            }
119            AuthCredential::OAuth {
120                access_token,
121                expires_at,
122                ..
123            } => {
124                if access_token.is_empty() {
125                    return Err(CredentialValidationError::EmptyField(
126                        "access_token".to_string(),
127                    ));
128                }
129                if *expires_at == 0 {
130                    return Err(CredentialValidationError::InvalidExpiry);
131                }
132                Ok(())
133            }
134            AuthCredential::Session { token, .. } => {
135                if token.is_empty() {
136                    return Err(CredentialValidationError::EmptyField("token".to_string()));
137                }
138                Ok(())
139            }
140        }
141    }
142}
143
144/// Credential validation error
145#[derive(Debug, Clone, thiserror::Error)]
146pub enum CredentialValidationError {
147    #[error("Field '{0}' must not be empty")]
148    /// empty field variant.
149    EmptyField(String),
150    #[error("Placeholder value detected: '{0}'")]
151    /// placeholder value variant.
152    PlaceholderValue(String),
153    #[error("Invalid expiry timestamp")]
154    /// invalid expiry variant.
155    InvalidExpiry,
156}
157
158// ============================================================================
159// Auth Status
160// ============================================================================
161
162/// Authentication status
163#[derive(Debug, Clone)]
164pub struct AuthStatus {
165    /// Whether auth is configured
166    pub configured: bool,
167    /// Source of the auth (stored, runtime, environment, fallback)
168    pub source: Option<String>,
169    /// Label for display
170    pub label: Option<String>,
171}
172
173impl std::fmt::Display for AuthStatus {
174    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
175        match (&self.source, &self.label) {
176            (Some(source), Some(label)) => write!(f, "{} ({})", source, label),
177            (Some(source), None) => write!(f, "{}", source),
178            (None, Some(label)) => write!(f, "{}", label),
179            (None, None) => write!(f, "not configured"),
180        }
181    }
182}
183
184// ============================================================================
185// Auth Errors
186// ============================================================================
187
188/// Result of an auth operation
189pub type AuthResult<T> = Result<T, AuthError>;
190
191/// Authentication errors
192#[derive(Debug, Clone, thiserror::Error)]
193pub enum AuthError {
194    #[error("Failed to read auth storage: {0}")]
195    /// read error variant.
196    ReadError(String),
197    #[error("Failed to write auth storage: {0}")]
198    /// write error variant.
199    WriteError(String),
200    #[error("Credential not found: {0}")]
201    /// not found variant.
202    NotFound(String),
203    #[error("Invalid credential format: {0}")]
204    /// invalid format variant.
205    InvalidFormat(String),
206    #[error("Keyring error: {0}")]
207    /// keyring error variant.
208    KeyringError(String),
209    #[error("Credential validation failed: {0}")]
210    /// validation failed variant.
211    ValidationFailed(String),
212}
213
214// ============================================================================
215// Storage Backend Trait
216// ============================================================================
217
218/// Storage backend trait
219pub trait AuthStorageBackend: Send + Sync {
220    /// Read stored data
221    fn read(&self) -> AuthResult<Option<String>>;
222    /// Write data
223    fn write(&self, data: &str) -> AuthResult<()>;
224    /// Delete stored data
225    fn delete(&self) -> AuthResult<()>;
226}
227
228// ============================================================================
229// File Backend
230// ============================================================================
231
232/// File-based auth storage backend
233pub struct FileAuthStorage {
234    path: PathBuf,
235    cache: RwLock<Option<String>>,
236}
237
238impl FileAuthStorage {
239    /// Create a new file-based auth storage
240    pub fn new(path: PathBuf) -> Self {
241        Self {
242            path,
243            cache: RwLock::new(None),
244        }
245    }
246
247    /// Get the default auth file path (uses ~/.oxi/auth.json for consistency with settings)
248    pub fn default_path() -> Option<PathBuf> {
249        dirs::home_dir().map(|p| p.join(".oxi").join("auth.json"))
250    }
251
252    /// Get the storage path
253    pub fn path(&self) -> &PathBuf {
254        &self.path
255    }
256}
257
258impl AuthStorageBackend for FileAuthStorage {
259    fn read(&self) -> AuthResult<Option<String>> {
260        if !self.path.exists() {
261            return Ok(None);
262        }
263
264        match std::fs::read_to_string(&self.path) {
265            Ok(content) => {
266                *self.cache.write() = Some(content.clone());
267                Ok(Some(content))
268            }
269            Err(e) => Err(AuthError::ReadError(e.to_string())),
270        }
271    }
272
273    fn write(&self, data: &str) -> AuthResult<()> {
274        // Ensure parent directory exists with restricted permissions
275        if let Some(parent) = self.path.parent() {
276            std::fs::create_dir_all(parent).map_err(|e| AuthError::WriteError(e.to_string()))?;
277
278            #[cfg(unix)]
279            {
280                use std::os::unix::fs::PermissionsExt;
281                let perms = std::fs::Permissions::from_mode(0o700);
282                let _ = std::fs::set_permissions(parent, perms);
283            }
284        }
285
286        // Write the file
287        std::fs::write(&self.path, data).map_err(|e| AuthError::WriteError(e.to_string()))?;
288
289        // Set file permissions to owner-only on Unix
290        #[cfg(unix)]
291        {
292            use std::os::unix::fs::PermissionsExt;
293            let perms = std::fs::Permissions::from_mode(0o600);
294            std::fs::set_permissions(&self.path, perms)
295                .map_err(|e| AuthError::WriteError(e.to_string()))?;
296        }
297
298        *self.cache.write() = Some(data.to_string());
299        Ok(())
300    }
301
302    fn delete(&self) -> AuthResult<()> {
303        if self.path.exists() {
304            std::fs::remove_file(&self.path).map_err(|e| AuthError::WriteError(e.to_string()))?;
305        }
306        *self.cache.write() = None;
307        Ok(())
308    }
309}
310
311// ============================================================================
312// Memory Backend
313// ============================================================================
314
315/// Memory-based auth storage (for testing)
316pub struct MemoryAuthStorage {
317    data: RwLock<HashMap<String, AuthCredential>>,
318}
319
320impl MemoryAuthStorage {
321    /// Create a new memory auth storage
322    pub fn new() -> Self {
323        Self {
324            data: RwLock::new(HashMap::new()),
325        }
326    }
327}
328
329impl Default for MemoryAuthStorage {
330    fn default() -> Self {
331        Self::new()
332    }
333}
334
335impl AuthStorageBackend for MemoryAuthStorage {
336    fn read(&self) -> AuthResult<Option<String>> {
337        // Memory backend doesn't use JSON serialization
338        Ok(None)
339    }
340
341    fn write(&self, _data: &str) -> AuthResult<()> {
342        Ok(())
343    }
344
345    fn delete(&self) -> AuthResult<()> {
346        self.data.write().clear();
347        Ok(())
348    }
349}
350
351// ============================================================================
352// Fallback Resolver
353// ============================================================================
354
355/// Trait for fallback API key resolution (e.g., from models.json config)
356pub trait FallbackResolver: Send + Sync {
357    /// Try to resolve an API key for the given provider
358    fn resolve(&self, provider: &str) -> Option<String>;
359}
360
361/// A simple closure-based fallback resolver
362pub struct FnFallbackResolver {
363    #[allow(clippy::type_complexity)]
364    f: Box<dyn Fn(&str) -> Option<String> + Send + Sync>,
365}
366
367impl FnFallbackResolver {
368    /// Create from a closure
369    #[allow(clippy::type_complexity)]
370    pub fn new(f: Box<dyn Fn(&str) -> Option<String> + Send + Sync>) -> Self {
371        Self { f }
372    }
373}
374
375impl FallbackResolver for FnFallbackResolver {
376    fn resolve(&self, provider: &str) -> Option<String> {
377        (self.f)(provider)
378    }
379}
380
381/// Environment variable fallback resolver.
382///
383/// Uses oxi-ai's `BuiltinProvider` registry to look up the primary and
384/// extra env var names for each provider, then checks `std::env`.
385pub struct EnvVarFallbackResolver;
386
387impl FallbackResolver for EnvVarFallbackResolver {
388    fn resolve(&self, provider: &str) -> Option<String> {
389        // Look up the provider's env key from the builtin registry
390        let builtin = oxi_ai::get_builtin_provider(provider)?;
391        let key = builtin.env_key;
392
393        // Try primary key
394        if let Ok(val) = std::env::var(key) {
395            if !val.is_empty() {
396                return Some(val);
397            }
398        }
399
400        // Try extra keys
401        for extra in builtin.extra_env_keys {
402            if let Ok(val) = std::env::var(extra) {
403                if !val.is_empty() {
404                    return Some(val);
405                }
406            }
407        }
408
409        None
410    }
411}
412
413// ============================================================================
414// Auth Storage (Main)
415// ============================================================================
416
417/// Main auth storage struct.
418///
419/// Provides multi-layered credential lookup with the following priority:
420/// 1. Runtime override (CLI --api-key)
421/// 2. Stored API key from auth.json
422/// 3. OAuth token from auth.json (with auto-refresh awareness)
423/// 4. Session token from auth.json
424/// 5. Environment variable
425/// 6. Fallback resolver (e.g., custom provider config from models.json)
426pub struct AuthStorage {
427    /// File-based storage backend
428    file_storage: Option<Arc<dyn AuthStorageBackend>>,
429    /// In-memory credential cache
430    credentials: RwLock<HashMap<String, AuthCredential>>,
431    /// Runtime overrides (CLI --api-key)
432    runtime_overrides: RwLock<HashMap<String, String>>,
433    /// Fallback resolver for custom providers
434    fallback_resolver: RwLock<Option<Arc<dyn FallbackResolver>>>,
435    /// Collected errors
436    errors: RwLock<Vec<AuthError>>,
437    /// Whether initial load had an error
438    load_error: RwLock<Option<AuthError>>,
439    /// OnceLock to warn about plaintext storage only once
440    plaintext_warned: OnceLock<()>,
441}
442
443impl AuthStorage {
444    /// Create a new auth storage with default file backend
445    pub fn new() -> Self {
446        let file_storage = FileAuthStorage::default_path()
447            .map(|p| Arc::new(FileAuthStorage::new(p)) as Arc<dyn AuthStorageBackend>);
448
449        let credentials = if let Some(ref storage) = file_storage {
450            match storage.read() {
451                Ok(Some(content)) => serde_json::from_str(&content).unwrap_or_default(),
452                _ => HashMap::new(),
453            }
454        } else {
455            HashMap::new()
456        };
457
458        Self {
459            file_storage,
460            credentials: RwLock::new(credentials),
461            runtime_overrides: RwLock::new(HashMap::new()),
462            fallback_resolver: RwLock::new(None),
463            errors: RwLock::new(Vec::new()),
464            load_error: RwLock::new(None),
465            plaintext_warned: OnceLock::new(),
466        }
467    }
468
469    /// Create with explicit storage backend
470    pub fn with_backend(backend: impl AuthStorageBackend + 'static) -> Self {
471        let credentials = match backend.read() {
472            Ok(Some(content)) => serde_json::from_str(&content).unwrap_or_default(),
473            _ => HashMap::new(),
474        };
475
476        Self {
477            file_storage: Some(Arc::new(backend)),
478            credentials: RwLock::new(credentials),
479            runtime_overrides: RwLock::new(HashMap::new()),
480            fallback_resolver: RwLock::new(None),
481            errors: RwLock::new(Vec::new()),
482            load_error: RwLock::new(None),
483            plaintext_warned: OnceLock::new(),
484        }
485    }
486
487    /// Create a memory-only storage (for testing)
488    pub fn in_memory() -> Self {
489        Self {
490            file_storage: None,
491            credentials: RwLock::new(HashMap::new()),
492            runtime_overrides: RwLock::new(HashMap::new()),
493            fallback_resolver: RwLock::new(None),
494            errors: RwLock::new(Vec::new()),
495            load_error: RwLock::new(None),
496            plaintext_warned: OnceLock::new(),
497        }
498    }
499
500    /// Get the default auth file path
501    pub fn default_path() -> Option<PathBuf> {
502        FileAuthStorage::default_path()
503    }
504
505    // -----------------------------------------------------------------------
506    // Runtime overrides
507    // -----------------------------------------------------------------------
508
509    /// Set a runtime API key override (from CLI --api-key)
510    pub fn set_runtime_key(&self, provider: &str, api_key: String) {
511        self.runtime_overrides
512            .write()
513            .insert(provider.to_string(), api_key);
514    }
515
516    /// Remove a runtime override
517    pub fn remove_runtime_key(&self, provider: &str) {
518        self.runtime_overrides.write().remove(provider);
519    }
520
521    // -----------------------------------------------------------------------
522    // Fallback resolver
523    // -----------------------------------------------------------------------
524
525    /// Set a fallback resolver for API keys not found in auth.json or env vars.
526    /// Used for custom provider keys from models.json.
527    pub fn set_fallback_resolver(&self, resolver: Arc<dyn FallbackResolver>) {
528        *self.fallback_resolver.write() = Some(resolver);
529    }
530
531    /// Clear the fallback resolver
532    pub fn clear_fallback_resolver(&self) {
533        *self.fallback_resolver.write() = None;
534    }
535
536    // -----------------------------------------------------------------------
537    // Credential query
538    // -----------------------------------------------------------------------
539
540    /// Check if a provider has any auth configured
541    pub fn has_auth(&self, provider: &str) -> bool {
542        if self.runtime_overrides.read().contains_key(provider) {
543            return true;
544        }
545        if self.credentials.read().contains_key(provider) {
546            return true;
547        }
548        if let Some(ref resolver) = *self.fallback_resolver.read() {
549            if resolver.resolve(provider).is_some() {
550                return true;
551            }
552        }
553        false
554    }
555
556    /// Get auth status for a provider (without exposing credentials)
557    pub fn get_status(&self, provider: &str) -> AuthStatus {
558        if self.runtime_overrides.read().contains_key(provider) {
559            return AuthStatus {
560                configured: false,
561                source: Some("runtime".to_string()),
562                label: Some("--api-key".to_string()),
563            };
564        }
565
566        if let Some(cred) = self.credentials.read().get(provider) {
567            return AuthStatus {
568                configured: true,
569                source: Some("stored".to_string()),
570                label: Some(cred.type_name().to_string()),
571            };
572        }
573
574        if let Some(ref resolver) = *self.fallback_resolver.read() {
575            if resolver.resolve(provider).is_some() {
576                return AuthStatus {
577                    configured: false,
578                    source: Some("fallback".to_string()),
579                    label: Some("custom provider config".to_string()),
580                };
581            }
582        }
583
584        AuthStatus {
585            configured: false,
586            source: None,
587            label: None,
588        }
589    }
590
591    /// Get API key for a provider.
592    ///
593    /// Priority:
594    /// 1. Runtime override (CLI --api-key)
595    /// 2. Stored API key from auth.json
596    /// 3. OAuth token from auth.json (auto-refreshed)
597    /// 4. Session token from auth.json
598    /// 5. Fallback resolver
599    pub fn get_api_key(&self, provider: &str) -> Option<String> {
600        self.get_api_key_with_options(provider, true)
601    }
602
603    /// Get API key with option to include/exclude fallback resolver
604    pub fn get_api_key_with_options(
605        &self,
606        provider: &str,
607        include_fallback: bool,
608    ) -> Option<String> {
609        // 1. Runtime override
610        if let Some(key) = self.runtime_overrides.read().get(provider) {
611            return Some(key.clone());
612        }
613
614        // 2-4. Stored credential
615        if let Some(cred) = self.credentials.read().get(provider) {
616            return match cred {
617                AuthCredential::ApiKey { key } => Some(key.clone()),
618                AuthCredential::OAuth {
619                    access_token,
620                    expires_at,
621                    ..
622                } => {
623                    if *expires_at > now_secs() {
624                        Some(access_token.clone())
625                    } else {
626                        // Token expired - caller should handle refresh
627                        None
628                    }
629                }
630                AuthCredential::Session {
631                    token, expires_at, ..
632                } => {
633                    if *expires_at == 0 || *expires_at > now_secs() {
634                        Some(token.clone())
635                    } else {
636                        None
637                    }
638                }
639            };
640        }
641
642        // 5. Cross-provider alias lookup:
643        //    If the key is stored under a different provider name that shares
644        //    the same env_key (e.g. key stored as "zai-coding-global" but
645        //    looked up as "zai"), check those providers' stored credentials.
646        if let Some(builtin) = oxi_ai::register_builtins::get_builtin_provider(provider) {
647            let env_key = builtin.env_key;
648            let credentials = self.credentials.read();
649            for other in oxi_ai::register_builtins::get_builtin_providers() {
650                if other.name == provider {
651                    continue; // already checked above
652                }
653                if other.env_key == env_key {
654                    if let Some(cred) = credentials.get(other.name) {
655                        return match cred {
656                            AuthCredential::ApiKey { key } => Some(key.clone()),
657                            AuthCredential::OAuth {
658                                access_token,
659                                expires_at,
660                                ..
661                            } => {
662                                if *expires_at > now_secs() {
663                                    Some(access_token.clone())
664                                } else {
665                                    None
666                                }
667                            }
668                            AuthCredential::Session {
669                                token, expires_at, ..
670                            } => {
671                                if *expires_at == 0 || *expires_at > now_secs() {
672                                    Some(token.clone())
673                                } else {
674                                    None
675                                }
676                            }
677                        };
678                    }
679                }
680            }
681        }
682
683        // 6. Fallback resolver
684        if include_fallback {
685            if let Some(ref resolver) = *self.fallback_resolver.read() {
686                return resolver.resolve(provider);
687            }
688        }
689
690        None
691    }
692
693    // -----------------------------------------------------------------------
694    // Credential mutation
695    // -----------------------------------------------------------------------
696
697    /// Set API key for a provider
698    pub fn set_api_key(&self, provider: &str, key: String) {
699        self.credentials
700            .write()
701            .insert(provider.to_string(), AuthCredential::ApiKey { key });
702        if let Err(e) = self.persist() {
703            tracing::warn!("Failed to persist API key for '{}': {}", provider, e);
704        }
705    }
706
707    /// Set OAuth credential for a provider
708    pub fn set_oauth(
709        &self,
710        provider: &str,
711        access_token: String,
712        refresh_token: Option<String>,
713        expires_at: u64,
714    ) {
715        self.set_oauth_full(
716            provider,
717            access_token,
718            refresh_token,
719            expires_at,
720            None,
721            None,
722        );
723    }
724
725    /// Set OAuth credential with full details
726    pub fn set_oauth_full(
727        &self,
728        provider: &str,
729        access_token: String,
730        refresh_token: Option<String>,
731        expires_at: u64,
732        scopes: Option<String>,
733        provider_data: Option<serde_json::Value>,
734    ) {
735        self.credentials.write().insert(
736            provider.to_string(),
737            AuthCredential::OAuth {
738                access_token,
739                refresh_token,
740                expires_at,
741                scopes,
742                provider_data,
743            },
744        );
745        if let Err(e) = self.persist() {
746            tracing::warn!("Failed to persist OAuth token for '{}': {}", provider, e);
747        }
748    }
749
750    /// Set session token for a provider
751    pub fn set_session(
752        &self,
753        provider: &str,
754        token: String,
755        expires_at: u64,
756        metadata: Option<serde_json::Value>,
757    ) {
758        self.credentials.write().insert(
759            provider.to_string(),
760            AuthCredential::Session {
761                token,
762                expires_at,
763                metadata,
764            },
765        );
766        if let Err(e) = self.persist() {
767            tracing::warn!("Failed to persist session for '{}': {}", provider, e);
768        }
769    }
770
771    /// Update an existing OAuth credential (for token refresh)
772    pub fn update_oauth_tokens(
773        &self,
774        provider: &str,
775        new_access_token: String,
776        new_refresh_token: Option<String>,
777        new_expires_at: u64,
778    ) -> AuthResult<()> {
779        let mut creds = self.credentials.write();
780        let cred = creds
781            .get_mut(provider)
782            .ok_or_else(|| AuthError::NotFound(provider.to_string()))?;
783
784        match cred {
785            AuthCredential::OAuth {
786                access_token,
787                refresh_token,
788                expires_at,
789                ..
790            } => {
791                *access_token = new_access_token;
792                *refresh_token = new_refresh_token;
793                *expires_at = new_expires_at;
794            }
795            _ => {
796                return Err(AuthError::InvalidFormat(format!(
797                    "Provider '{}' does not have OAuth credentials",
798                    provider
799                )));
800            }
801        }
802
803        drop(creds);
804        if let Err(e) = self.persist() {
805            tracing::warn!(
806                "Failed to persist OAuth token update for '{}': {}",
807                provider,
808                e
809            );
810        }
811        Ok(())
812    }
813
814    // -----------------------------------------------------------------------
815    // Credential retrieval
816    // -----------------------------------------------------------------------
817
818    /// Get credential for a provider
819    pub fn get(&self, provider: &str) -> Option<AuthCredential> {
820        self.credentials.read().get(provider).cloned()
821    }
822
823    /// Get OAuth credential for a provider (for token refresh)
824    pub fn get_oauth_credential(&self, provider: &str) -> Option<AuthCredential> {
825        self.credentials.read().get(provider).cloned()
826    }
827
828    /// Check if a provider has OAuth credentials that can be refreshed
829    pub fn has_oauth_with_refresh(&self, provider: &str) -> bool {
830        if let Some(cred) = self.credentials.read().get(provider) {
831            matches!(
832                cred,
833                AuthCredential::OAuth {
834                    refresh_token: Some(_),
835                    ..
836                }
837            )
838        } else {
839            false
840        }
841    }
842
843    // -----------------------------------------------------------------------
844    // CRUD operations
845    // -----------------------------------------------------------------------
846
847    /// Set a credential for a provider
848    pub fn set(&self, provider: &str, credential: AuthCredential) {
849        self.credentials
850            .write()
851            .insert(provider.to_string(), credential);
852        if let Err(e) = self.persist() {
853            tracing::warn!("Failed to persist credential for '{}': {}", provider, e);
854        }
855    }
856
857    /// Remove credential for a provider
858    pub fn remove(&self, provider: &str) {
859        self.credentials.write().remove(provider);
860        if let Err(e) = self.persist() {
861            tracing::warn!("Failed to persist after removing '{}': {}", provider, e);
862        }
863    }
864
865    /// List all providers with credentials
866    pub fn list_providers(&self) -> Vec<String> {
867        self.credentials.read().keys().cloned().collect()
868    }
869
870    /// Check if credential exists for provider in storage
871    pub fn has(&self, provider: &str) -> bool {
872        self.credentials.read().contains_key(provider)
873    }
874
875    /// Get all credentials
876    pub fn get_all(&self) -> HashMap<String, AuthCredential> {
877        self.credentials.read().clone()
878    }
879
880    /// Clear all stored credentials
881    pub fn clear(&self) {
882        self.credentials.write().clear();
883        if let Err(e) = self.persist() {
884            tracing::warn!("Failed to persist after clearing credentials: {}", e);
885        }
886    }
887
888    // -----------------------------------------------------------------------
889    // Persistence
890    // -----------------------------------------------------------------------
891
892    /// Reload from disk
893    pub fn reload(&self) {
894        if let Some(ref storage) = self.file_storage {
895            match storage.read() {
896                Ok(Some(content)) => {
897                    if let Ok(creds) = serde_json::from_str(&content) {
898                        *self.credentials.write() = creds;
899                    }
900                    *self.load_error.write() = None;
901                }
902                Ok(None) => {
903                    self.credentials.write().clear();
904                    *self.load_error.write() = None;
905                }
906                Err(e) => {
907                    *self.load_error.write() = Some(e);
908                    self.record_error(AuthError::ReadError(
909                        "Failed to reload auth storage".to_string(),
910                    ));
911                }
912            }
913        }
914    }
915
916    /// Persist to disk
917    #[allow(unexpected_cfgs)]
918    fn persist(&self) -> Result<(), String> {
919        if let Some(ref storage) = self.file_storage {
920            let creds = self.credentials.read();
921            if let Ok(json) = serde_json::to_string_pretty(&*creds) {
922                // Warn once about plaintext storage when not using keyring
923                #[cfg(not(feature = "keyring"))]
924                {
925                    self.plaintext_warned.get_or_init(|| {
926                        tracing::warn!(
927                            "Auth credentials are stored in plaintext. \
928                             Enable the 'keyring' feature for secure OS-level storage."
929                        );
930                    });
931                }
932
933                if let Err(e) = storage.write(&json) {
934                    tracing::error!("Failed to persist auth storage: {}", e);
935                    self.record_error(e);
936                    return Err("persist failed".to_string());
937                }
938            }
939        }
940        Ok(())
941    }
942
943    // -----------------------------------------------------------------------
944    // Error tracking
945    // -----------------------------------------------------------------------
946
947    /// Record an error
948    fn record_error(&self, error: AuthError) {
949        self.errors.write().push(error);
950    }
951
952    /// Drain collected errors
953    pub fn drain_errors(&self) -> Vec<AuthError> {
954        let mut errors = self.errors.write();
955        std::mem::take(&mut *errors)
956    }
957
958    /// Get the last load error
959    pub fn load_error(&self) -> Option<AuthError> {
960        self.load_error.read().clone()
961    }
962
963    // -----------------------------------------------------------------------
964    // Validation
965    // -----------------------------------------------------------------------
966
967    /// Validate all stored credentials
968    pub fn validate_all(&self) -> Vec<(String, CredentialValidationError)> {
969        let creds = self.credentials.read();
970        let mut results = Vec::new();
971        for (provider, cred) in creds.iter() {
972            if let Err(e) = cred.validate() {
973                results.push((provider.clone(), e));
974            }
975        }
976        results
977    }
978
979    /// Validate credential for a specific provider
980    pub fn validate(&self, provider: &str) -> Result<(), CredentialValidationError> {
981        let creds = self.credentials.read();
982        let cred = creds.get(provider).ok_or_else(|| {
983            CredentialValidationError::EmptyField(format!(
984                "no credential for provider '{}'",
985                provider
986            ))
987        })?;
988        cred.validate()
989    }
990
991    // -----------------------------------------------------------------------
992    // Multi-provider support
993    // -----------------------------------------------------------------------
994
995    /// Get all configured provider IDs (sorted)
996    pub fn configured_providers(&self) -> Vec<String> {
997        let mut providers: Vec<String> = self.credentials.read().keys().cloned().collect();
998        providers.sort();
999        providers
1000    }
1001
1002    /// Check if multiple providers are configured
1003    pub fn has_multiple_providers(&self) -> bool {
1004        self.credentials.read().len() > 1
1005    }
1006
1007    /// Get the primary provider (first configured, preferring stored over env)
1008    pub fn primary_provider(&self) -> Option<String> {
1009        let creds = self.credentials.read();
1010        creds.keys().next().cloned()
1011    }
1012
1013    /// Migrate credentials from one provider to another
1014    pub fn migrate_provider(&self, from: &str, to: &str) -> AuthResult<()> {
1015        let mut creds = self.credentials.write();
1016        let cred = creds
1017            .remove(from)
1018            .ok_or_else(|| AuthError::NotFound(from.to_string()))?;
1019        creds.insert(to.to_string(), cred);
1020        drop(creds);
1021        let _ = self.persist();
1022        Ok(())
1023    }
1024}
1025
1026impl Default for AuthStorage {
1027    fn default() -> Self {
1028        Self::new()
1029    }
1030}
1031
1032// ============================================================================
1033// Helper: current unix timestamp
1034// ============================================================================
1035
1036fn now_secs() -> u64 {
1037    std::time::SystemTime::now()
1038        .duration_since(std::time::UNIX_EPOCH)
1039        .map(|d| d.as_secs())
1040        .unwrap_or(0)
1041}
1042
1043// ============================================================================
1044// Keyring Support
1045// ============================================================================
1046
1047/// Wrapper for using OS keyring with fallback
1048#[allow(unexpected_cfgs)]
1049pub mod keyring_support {
1050    use super::*;
1051
1052    /// Try to get a secret from the OS keyring
1053    #[cfg(feature = "keyring")]
1054    pub fn get_keyring_secret(service: &str, account: &str) -> Option<String> {
1055        use keyring::Entry;
1056        Entry::new(service, account)
1057            .ok()
1058            .and_then(|entry| entry.get_password().ok())
1059    }
1060
1061    /// Try to set a secret in the OS keyring
1062    #[cfg(feature = "keyring")]
1063    pub fn set_keyring_secret(service: &str, account: &str, secret: &str) -> AuthResult<()> {
1064        use keyring::Entry;
1065        Entry::new(service, account)
1066            .map_err(|e| AuthError::KeyringError(e.to_string()))?
1067            .set_password(secret)
1068            .map_err(|e| AuthError::KeyringError(e.to_string()))
1069    }
1070
1071    /// Try to delete a secret from the OS keyring
1072    #[cfg(feature = "keyring")]
1073    pub fn delete_keyring_secret(service: &str, account: &str) -> AuthResult<()> {
1074        use keyring::Entry;
1075        Entry::new(service, account)
1076            .map_err(|e| AuthError::KeyringError(e.to_string()))?
1077            .delete_credential()
1078            .map_err(|e| AuthError::KeyringError(e.to_string()))
1079    }
1080
1081    // Non-keyring fallbacks
1082    #[cfg(not(feature = "keyring"))]
1083    /// Retrieve a secret from the OS keyring.
1084    ///
1085    /// Returns `None` when the keyring feature is not compiled in.
1086    pub fn get_keyring_secret(_service: &str, _account: &str) -> Option<String> {
1087        None
1088    }
1089
1090    #[cfg(not(feature = "keyring"))]
1091    /// Store a secret in the OS keyring.
1092    ///
1093    /// Returns an error when the keyring feature is not compiled in.
1094    pub fn set_keyring_secret(_service: &str, _account: &str, _secret: &str) -> AuthResult<()> {
1095        Err(AuthError::KeyringError(
1096            "Keyring support not compiled".to_string(),
1097        ))
1098    }
1099
1100    #[cfg(not(feature = "keyring"))]
1101    /// Delete a secret from the OS keyring.
1102    ///
1103    /// Returns an error when the keyring feature is not compiled in.
1104    pub fn delete_keyring_secret(_service: &str, _account: &str) -> AuthResult<()> {
1105        Err(AuthError::KeyringError(
1106            "Keyring support not compiled".to_string(),
1107        ))
1108    }
1109}
1110
1111// ============================================================================
1112// Singleton
1113// ============================================================================
1114
1115/// Get a shared singleton `Arc<AuthStorage>` instance.
1116///
1117/// Avoids creating multiple `AuthStorage::new()` instances that each
1118/// independently read and cache `auth.json`. All callers share the same
1119/// in-memory state through the `Arc`.
1120pub fn shared_auth_storage() -> Arc<AuthStorage> {
1121    static STORAGE: OnceLock<Arc<AuthStorage>> = OnceLock::new();
1122    STORAGE
1123        .get_or_init(|| {
1124            let storage = Arc::new(AuthStorage::new());
1125            // Default fallback: resolve API keys from environment variables
1126            // using the BuiltinProvider registry (env_key + extra_env_keys).
1127            storage.set_fallback_resolver(Arc::new(EnvVarFallbackResolver));
1128            storage
1129        })
1130        .clone()
1131}
1132
1133// ============================================================================
1134// Tests
1135// ============================================================================
1136
1137#[cfg(test)]
1138mod tests {
1139    use super::*;
1140
1141    #[test]
1142    fn test_auth_storage_new() {
1143        let storage = AuthStorage::in_memory();
1144        assert!(!storage.has("anthropic"));
1145    }
1146
1147    #[test]
1148    fn test_set_and_get_api_key() {
1149        let storage = AuthStorage::in_memory();
1150        storage.set_api_key("anthropic", "sk-test123".to_string());
1151        assert!(storage.has("anthropic"));
1152        assert_eq!(
1153            storage.get_api_key("anthropic"),
1154            Some("sk-test123".to_string())
1155        );
1156    }
1157
1158    #[test]
1159    fn test_runtime_override() {
1160        let storage = AuthStorage::in_memory();
1161        storage.set_api_key("anthropic", "stored-key".to_string());
1162        storage.set_runtime_key("anthropic", "runtime-key".to_string());
1163
1164        // Runtime key should take priority
1165        assert_eq!(
1166            storage.get_api_key("anthropic"),
1167            Some("runtime-key".to_string())
1168        );
1169    }
1170
1171    #[test]
1172    fn test_remove_credential() {
1173        let storage = AuthStorage::in_memory();
1174        storage.set_api_key("anthropic", "sk-test123".to_string());
1175        assert!(storage.has("anthropic"));
1176
1177        storage.remove("anthropic");
1178        assert!(!storage.has("anthropic"));
1179    }
1180
1181    #[test]
1182    fn test_auth_status() {
1183        let storage = AuthStorage::in_memory();
1184        storage.set_api_key("anthropic", "sk-test123".to_string());
1185
1186        let status = storage.get_status("anthropic");
1187        assert!(status.configured);
1188        assert_eq!(status.source, Some("stored".to_string()));
1189        assert_eq!(status.label, Some("api_key".to_string()));
1190    }
1191
1192    #[test]
1193    fn test_auth_status_display() {
1194        let status = AuthStatus {
1195            configured: true,
1196            source: Some("stored".to_string()),
1197            label: Some("api_key".to_string()),
1198        };
1199        let display = format!("{}", status);
1200        assert_eq!(display, "stored (api_key)");
1201
1202        let no_config = AuthStatus {
1203            configured: false,
1204            source: None,
1205            label: None,
1206        };
1207        assert_eq!(format!("{}", no_config), "not configured");
1208    }
1209
1210    #[test]
1211    fn test_list_providers() {
1212        let storage = AuthStorage::in_memory();
1213        storage.set_api_key("anthropic", "key1".to_string());
1214        storage.set_api_key("openai", "key2".to_string());
1215
1216        let providers = storage.list_providers();
1217        assert!(providers.contains(&"anthropic".to_string()));
1218        assert!(providers.contains(&"openai".to_string()));
1219    }
1220
1221    #[test]
1222    fn test_oauth_credential() {
1223        let storage = AuthStorage::in_memory();
1224        storage.set_oauth(
1225            "provider",
1226            "access123".to_string(),
1227            Some("refresh456".to_string()),
1228            u64::MAX,
1229        );
1230
1231        assert!(storage.has("provider"));
1232        assert_eq!(
1233            storage.get_api_key("provider"),
1234            Some("access123".to_string())
1235        );
1236    }
1237
1238    #[test]
1239    fn test_expired_oauth_token() {
1240        let storage = AuthStorage::in_memory();
1241        // Set token that expired in the past
1242        storage.set_oauth("provider", "access123".to_string(), None, 0);
1243
1244        // Token should be treated as expired
1245        let key = storage.get_api_key("provider");
1246        assert!(key.is_none());
1247    }
1248
1249    #[test]
1250    fn test_get_all_credentials() {
1251        let storage = AuthStorage::in_memory();
1252        storage.set_api_key("anthropic", "key1".to_string());
1253        storage.set_api_key("openai", "key2".to_string());
1254
1255        let all = storage.get_all();
1256        assert_eq!(all.len(), 2);
1257    }
1258
1259    #[test]
1260    fn test_clear() {
1261        let storage = AuthStorage::in_memory();
1262        storage.set_api_key("anthropic", "key".to_string());
1263        assert!(storage.has("anthropic"));
1264
1265        storage.clear();
1266        assert!(!storage.has("anthropic"));
1267    }
1268
1269    #[test]
1270    fn test_remove_runtime_key() {
1271        let storage = AuthStorage::in_memory();
1272        storage.set_api_key("anthropic", "stored".to_string());
1273        storage.set_runtime_key("anthropic", "runtime".to_string());
1274
1275        assert_eq!(
1276            storage.get_api_key("anthropic"),
1277            Some("runtime".to_string())
1278        );
1279
1280        storage.remove_runtime_key("anthropic");
1281        assert_eq!(storage.get_api_key("anthropic"), Some("stored".to_string()));
1282    }
1283
1284    #[test]
1285    fn test_auth_credential_is_expired() {
1286        // API key never expires
1287        let api_key_cred = AuthCredential::ApiKey {
1288            key: "test".to_string(),
1289        };
1290        assert!(!api_key_cred.is_expired());
1291
1292        // OAuth token that expires in the future
1293        let future_time = now_secs() + 3600;
1294        let oauth_cred = AuthCredential::OAuth {
1295            access_token: "token".to_string(),
1296            refresh_token: Some("refresh".to_string()),
1297            expires_at: future_time,
1298            scopes: None,
1299            provider_data: None,
1300        };
1301        assert!(!oauth_cred.is_expired());
1302
1303        // OAuth token that expired in the past
1304        let oauth_cred_expired = AuthCredential::OAuth {
1305            access_token: "token".to_string(),
1306            refresh_token: Some("refresh".to_string()),
1307            expires_at: 0,
1308            scopes: None,
1309            provider_data: None,
1310        };
1311        assert!(oauth_cred_expired.is_expired());
1312    }
1313
1314    #[test]
1315    fn test_auth_credential_needs_refresh() {
1316        let future_time = now_secs() + 120; // 2 minutes from now
1317
1318        // Has refresh token, will expire soon - not yet within 60s
1319        let oauth_cred = AuthCredential::OAuth {
1320            access_token: "token".to_string(),
1321            refresh_token: Some("refresh".to_string()),
1322            expires_at: future_time,
1323            scopes: None,
1324            provider_data: None,
1325        };
1326        assert!(!oauth_cred.needs_refresh());
1327
1328        // Within 60 seconds
1329        let soon = now_secs() + 30;
1330        let oauth_soon = AuthCredential::OAuth {
1331            access_token: "token".to_string(),
1332            refresh_token: Some("refresh".to_string()),
1333            expires_at: soon,
1334            scopes: None,
1335            provider_data: None,
1336        };
1337        assert!(oauth_soon.needs_refresh());
1338
1339        // No refresh token - doesn't need refresh
1340        let no_refresh = AuthCredential::OAuth {
1341            access_token: "token".to_string(),
1342            refresh_token: None,
1343            expires_at: future_time,
1344            scopes: None,
1345            provider_data: None,
1346        };
1347        assert!(!no_refresh.needs_refresh());
1348
1349        // API key never needs refresh
1350        let api_key_cred = AuthCredential::ApiKey {
1351            key: "test".to_string(),
1352        };
1353        assert!(!api_key_cred.needs_refresh());
1354    }
1355
1356    #[test]
1357    fn test_auth_credential_access_token() {
1358        let future_time = now_secs() + 3600;
1359
1360        let oauth_cred = AuthCredential::OAuth {
1361            access_token: "valid_token".to_string(),
1362            refresh_token: Some("refresh".to_string()),
1363            expires_at: future_time,
1364            scopes: None,
1365            provider_data: None,
1366        };
1367        assert_eq!(oauth_cred.access_token(), Some("valid_token"));
1368
1369        // Expired token
1370        let expired_cred = AuthCredential::OAuth {
1371            access_token: "expired_token".to_string(),
1372            refresh_token: Some("refresh".to_string()),
1373            expires_at: 0,
1374            scopes: None,
1375            provider_data: None,
1376        };
1377        assert!(expired_cred.access_token().is_none());
1378
1379        // API key returns None via access_token
1380        let api_key_cred = AuthCredential::ApiKey {
1381            key: "api_key_token".to_string(),
1382        };
1383        assert!(api_key_cred.access_token().is_none());
1384    }
1385
1386    #[test]
1387    fn test_get_oauth_credential() {
1388        let storage = AuthStorage::in_memory();
1389        storage.set_oauth(
1390            "provider",
1391            "access".to_string(),
1392            Some("refresh".to_string()),
1393            u64::MAX,
1394        );
1395
1396        let cred = storage.get_oauth_credential("provider");
1397        assert!(cred.is_some());
1398        assert!(matches!(cred.unwrap(), AuthCredential::OAuth { .. }));
1399    }
1400
1401    #[test]
1402    fn test_has_oauth_with_refresh() {
1403        let storage = AuthStorage::in_memory();
1404
1405        // With refresh token
1406        storage.set_oauth(
1407            "with_refresh",
1408            "access".to_string(),
1409            Some("refresh".to_string()),
1410            u64::MAX,
1411        );
1412        assert!(storage.has_oauth_with_refresh("with_refresh"));
1413
1414        // Without refresh token
1415        storage.set_oauth("without_refresh", "access".to_string(), None, u64::MAX);
1416        assert!(!storage.has_oauth_with_refresh("without_refresh"));
1417
1418        // API key provider
1419        storage.set_api_key("apikey_provider", "key".to_string());
1420        assert!(!storage.has_oauth_with_refresh("apikey_provider"));
1421    }
1422
1423    #[test]
1424    fn test_set_oauth_full() {
1425        let storage = AuthStorage::in_memory();
1426        storage.set_oauth_full(
1427            "provider",
1428            "access_token".to_string(),
1429            Some("refresh_token".to_string()),
1430            3600,
1431            Some("read write".to_string()),
1432            Some(serde_json::json!({"extra": "data"})),
1433        );
1434
1435        let cred = storage.get_oauth_credential("provider");
1436        assert!(cred.is_some());
1437        if let AuthCredential::OAuth {
1438            scopes,
1439            provider_data,
1440            ..
1441        } = cred.unwrap()
1442        {
1443            assert_eq!(scopes, Some("read write".to_string()));
1444            assert!(provider_data.is_some());
1445        } else {
1446            panic!("Expected OAuth credential");
1447        }
1448    }
1449
1450    #[test]
1451    fn test_session_token() {
1452        let storage = AuthStorage::in_memory();
1453        storage.set_session(
1454            "browser",
1455            "session-token-123".to_string(),
1456            0, // never expires
1457            Some(serde_json::json!({"user": "test"})),
1458        );
1459
1460        assert!(storage.has("browser"));
1461        assert_eq!(
1462            storage.get_api_key("browser"),
1463            Some("session-token-123".to_string())
1464        );
1465
1466        let cred = storage.get("browser").unwrap();
1467        assert!(matches!(cred, AuthCredential::Session { .. }));
1468        assert!(cred.access_token().is_some());
1469    }
1470
1471    #[test]
1472    fn test_session_token_expired() {
1473        let storage = AuthStorage::in_memory();
1474        storage.set_session("browser", "session-token".to_string(), 1, None);
1475
1476        // Token expired (timestamp 1 is in the past)
1477        assert!(storage.get_api_key("browser").is_none());
1478    }
1479
1480    #[test]
1481    fn test_credential_validation() {
1482        // Valid API key
1483        let valid = AuthCredential::ApiKey {
1484            key: "sk-valid".to_string(),
1485        };
1486        assert!(valid.validate().is_ok());
1487
1488        // Empty API key
1489        let empty = AuthCredential::ApiKey {
1490            key: "".to_string(),
1491        };
1492        assert!(empty.validate().is_err());
1493
1494        // Placeholder
1495        let placeholder = AuthCredential::ApiKey {
1496            key: "your-api-key-here".to_string(),
1497        };
1498        assert!(placeholder.validate().is_err());
1499
1500        // Valid OAuth
1501        let valid_oauth = AuthCredential::OAuth {
1502            access_token: "token".to_string(),
1503            refresh_token: None,
1504            expires_at: now_secs() + 3600,
1505            scopes: None,
1506            provider_data: None,
1507        };
1508        assert!(valid_oauth.validate().is_ok());
1509
1510        // Invalid OAuth (empty token)
1511        let invalid_oauth = AuthCredential::OAuth {
1512            access_token: "".to_string(),
1513            refresh_token: None,
1514            expires_at: 1000,
1515            scopes: None,
1516            provider_data: None,
1517        };
1518        assert!(invalid_oauth.validate().is_err());
1519    }
1520
1521    #[test]
1522    fn test_validate_all() {
1523        let storage = AuthStorage::in_memory();
1524        storage.set_api_key("valid", "sk-good".to_string());
1525        storage.set_api_key("empty", "".to_string());
1526
1527        let errors = storage.validate_all();
1528        assert_eq!(errors.len(), 1);
1529        assert_eq!(errors[0].0, "empty");
1530    }
1531
1532    #[test]
1533    fn test_update_oauth_tokens() {
1534        let storage = AuthStorage::in_memory();
1535        storage.set_oauth(
1536            "provider",
1537            "old-access".to_string(),
1538            Some("old-refresh".to_string()),
1539            now_secs() + 3600,
1540        );
1541
1542        storage
1543            .update_oauth_tokens(
1544                "provider",
1545                "new-access".to_string(),
1546                Some("new-refresh".to_string()),
1547                now_secs() + 7200,
1548            )
1549            .unwrap();
1550
1551        let key = storage.get_api_key("provider");
1552        assert_eq!(key, Some("new-access".to_string()));
1553    }
1554
1555    #[test]
1556    fn test_update_oauth_tokens_wrong_type() {
1557        let storage = AuthStorage::in_memory();
1558        storage.set_api_key("provider", "key".to_string());
1559
1560        let result = storage.update_oauth_tokens(
1561            "provider",
1562            "new-access".to_string(),
1563            None,
1564            now_secs() + 3600,
1565        );
1566        assert!(result.is_err());
1567    }
1568
1569    #[test]
1570    fn test_migrate_provider() {
1571        let storage = AuthStorage::in_memory();
1572        storage.set_api_key("old-provider", "key123".to_string());
1573        storage
1574            .migrate_provider("old-provider", "new-provider")
1575            .unwrap();
1576
1577        assert!(!storage.has("old-provider"));
1578        assert!(storage.has("new-provider"));
1579        assert_eq!(
1580            storage.get_api_key("new-provider"),
1581            Some("key123".to_string())
1582        );
1583    }
1584
1585    #[test]
1586    fn test_migrate_provider_not_found() {
1587        let storage = AuthStorage::in_memory();
1588        let result = storage.migrate_provider("nonexistent", "target");
1589        assert!(result.is_err());
1590    }
1591
1592    #[test]
1593    fn test_error_draining() {
1594        let storage = AuthStorage::in_memory();
1595        let errors = storage.drain_errors();
1596        assert!(errors.is_empty());
1597    }
1598
1599    #[test]
1600    fn test_fallback_resolver() {
1601        let storage = AuthStorage::in_memory();
1602        storage.set_fallback_resolver(Arc::new(FnFallbackResolver::new(Box::new(|provider| {
1603            if provider == "custom" {
1604                Some("custom-key-from-config".to_string())
1605            } else {
1606                None
1607            }
1608        }))));
1609
1610        assert_eq!(
1611            storage.get_api_key("custom"),
1612            Some("custom-key-from-config".to_string())
1613        );
1614        assert!(storage.get_api_key("unknown").is_none());
1615
1616        // Without fallback
1617        storage.clear_fallback_resolver();
1618        assert!(storage.get_api_key("custom").is_none());
1619    }
1620
1621    #[test]
1622    fn test_get_api_key_with_options() {
1623        let storage = AuthStorage::in_memory();
1624        storage.set_fallback_resolver(Arc::new(FnFallbackResolver::new(Box::new(|_| {
1625            Some("fallback-key".to_string())
1626        }))));
1627
1628        // With fallback
1629        assert_eq!(
1630            storage.get_api_key_with_options("test", true),
1631            Some("fallback-key".to_string())
1632        );
1633
1634        // Without fallback
1635        assert!(storage.get_api_key_with_options("test", false).is_none());
1636    }
1637
1638    #[test]
1639    fn test_configured_providers() {
1640        let storage = AuthStorage::in_memory();
1641        storage.set_api_key("openai", "key".to_string());
1642        storage.set_api_key("anthropic", "key".to_string());
1643
1644        let providers = storage.configured_providers();
1645        assert!(providers.len() >= 2);
1646        // Should be sorted
1647        let mut sorted = providers.clone();
1648        sorted.sort();
1649        assert_eq!(providers, sorted);
1650    }
1651
1652    #[test]
1653    fn test_has_multiple_providers() {
1654        let storage = AuthStorage::in_memory();
1655        assert!(!storage.has_multiple_providers());
1656
1657        storage.set_api_key("openai", "key1".to_string());
1658        assert!(!storage.has_multiple_providers());
1659
1660        storage.set_api_key("anthropic", "key2".to_string());
1661        assert!(storage.has_multiple_providers());
1662    }
1663
1664    #[test]
1665    fn test_set_and_get_credential() {
1666        let storage = AuthStorage::in_memory();
1667        let cred = AuthCredential::Session {
1668            token: "abc".to_string(),
1669            expires_at: 0,
1670            metadata: None,
1671        };
1672        storage.set("custom", cred);
1673        let retrieved = storage.get("custom");
1674        assert!(retrieved.is_some());
1675        assert!(matches!(retrieved.unwrap(), AuthCredential::Session { .. }));
1676    }
1677
1678    #[test]
1679    fn test_credential_type_name() {
1680        assert_eq!(
1681            AuthCredential::ApiKey {
1682                key: "k".to_string()
1683            }
1684            .type_name(),
1685            "api_key"
1686        );
1687        assert_eq!(
1688            AuthCredential::OAuth {
1689                access_token: "t".to_string(),
1690                refresh_token: None,
1691                expires_at: 0,
1692                scopes: None,
1693                provider_data: None,
1694            }
1695            .type_name(),
1696            "oauth"
1697        );
1698        assert_eq!(
1699            AuthCredential::Session {
1700                token: "t".to_string(),
1701                expires_at: 0,
1702                metadata: None,
1703            }
1704            .type_name(),
1705            "session"
1706        );
1707    }
1708}