litellm-rs 0.4.16

A high-performance AI Gateway written in Rust, providing OpenAI-compatible APIs with intelligent routing, load balancing, and enterprise features
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
//! User session management

use crate::core::models::Metadata;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use uuid::Uuid;

/// User session
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UserSession {
    /// Session metadata
    #[serde(flatten)]
    pub metadata: Metadata,
    /// User ID
    pub user_id: Uuid,
    /// Session token
    #[serde(skip_serializing)]
    pub token: String,
    /// Session type
    pub session_type: SessionType,
    /// IP address
    pub ip_address: Option<String>,
    /// User agent
    pub user_agent: Option<String>,
    /// Expires at
    pub expires_at: chrono::DateTime<chrono::Utc>,
    /// Last activity
    pub last_activity: chrono::DateTime<chrono::Utc>,
    /// Session data
    pub data: HashMap<String, serde_json::Value>,
}

/// Session type
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum SessionType {
    /// Web session
    Web,
    /// API session
    Api,
    /// Mobile session
    Mobile,
    /// CLI session
    Cli,
}

impl UserSession {
    /// Create a new session
    pub fn new(
        user_id: Uuid,
        token: String,
        session_type: SessionType,
        expires_at: chrono::DateTime<chrono::Utc>,
    ) -> Self {
        Self {
            metadata: Metadata::new(),
            user_id,
            token,
            session_type,
            ip_address: None,
            user_agent: None,
            expires_at,
            last_activity: chrono::Utc::now(),
            data: HashMap::new(),
        }
    }

    /// Check if session is expired
    pub fn is_expired(&self) -> bool {
        chrono::Utc::now() > self.expires_at
    }

    /// Update last activity
    pub fn update_activity(&mut self) {
        self.last_activity = chrono::Utc::now();
    }

    /// Set session data
    pub fn set_data<K: Into<String>, V: Into<serde_json::Value>>(&mut self, key: K, value: V) {
        self.data.insert(key.into(), value.into());
    }

    /// Get session data
    pub fn get_data(&self, key: &str) -> Option<&serde_json::Value> {
        self.data.get(key)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use chrono::{Duration, Utc};

    // ==================== SessionType Tests ====================

    #[test]
    fn test_session_type_web() {
        let session_type = SessionType::Web;
        let json = serde_json::to_string(&session_type).unwrap();
        assert_eq!(json, "\"web\"");
    }

    #[test]
    fn test_session_type_api() {
        let session_type = SessionType::Api;
        let json = serde_json::to_string(&session_type).unwrap();
        assert_eq!(json, "\"api\"");
    }

    #[test]
    fn test_session_type_mobile() {
        let session_type = SessionType::Mobile;
        let json = serde_json::to_string(&session_type).unwrap();
        assert_eq!(json, "\"mobile\"");
    }

    #[test]
    fn test_session_type_cli() {
        let session_type = SessionType::Cli;
        let json = serde_json::to_string(&session_type).unwrap();
        assert_eq!(json, "\"cli\"");
    }

    #[test]
    fn test_session_type_deserialize() {
        let web: SessionType = serde_json::from_str("\"web\"").unwrap();
        assert!(matches!(web, SessionType::Web));

        let api: SessionType = serde_json::from_str("\"api\"").unwrap();
        assert!(matches!(api, SessionType::Api));
    }

    #[test]
    fn test_session_type_clone() {
        let original = SessionType::Mobile;
        let cloned = original.clone();
        let json1 = serde_json::to_string(&original).unwrap();
        let json2 = serde_json::to_string(&cloned).unwrap();
        assert_eq!(json1, json2);
    }

    #[test]
    fn test_session_type_debug() {
        let session_type = SessionType::Cli;
        let debug_str = format!("{:?}", session_type);
        assert!(debug_str.contains("Cli"));
    }

    // ==================== UserSession Creation Tests ====================

    #[test]
    fn test_user_session_new() {
        let user_id = Uuid::new_v4();
        let token = "test_token_123".to_string();
        let expires_at = Utc::now() + Duration::hours(24);

        let session = UserSession::new(user_id, token.clone(), SessionType::Web, expires_at);

        assert_eq!(session.user_id, user_id);
        assert_eq!(session.token, token);
        assert!(matches!(session.session_type, SessionType::Web));
        assert_eq!(session.expires_at, expires_at);
        assert!(session.ip_address.is_none());
        assert!(session.user_agent.is_none());
        assert!(session.data.is_empty());
    }

    #[test]
    fn test_user_session_new_with_api_type() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::days(30);

        let session = UserSession::new(
            user_id,
            "api_token".to_string(),
            SessionType::Api,
            expires_at,
        );

        assert!(matches!(session.session_type, SessionType::Api));
    }

    #[test]
    fn test_user_session_new_with_mobile_type() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::days(7);

        let session = UserSession::new(
            user_id,
            "mobile_token".to_string(),
            SessionType::Mobile,
            expires_at,
        );

        assert!(matches!(session.session_type, SessionType::Mobile));
    }

    #[test]
    fn test_user_session_new_with_cli_type() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(1);

        let session = UserSession::new(
            user_id,
            "cli_token".to_string(),
            SessionType::Cli,
            expires_at,
        );

        assert!(matches!(session.session_type, SessionType::Cli));
    }

    // ==================== UserSession Expiration Tests ====================

    #[test]
    fn test_user_session_not_expired() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let session = UserSession::new(user_id, "token".to_string(), SessionType::Web, expires_at);

        assert!(!session.is_expired());
    }

    #[test]
    fn test_user_session_expired() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() - Duration::hours(1);

        let session = UserSession::new(user_id, "token".to_string(), SessionType::Web, expires_at);

        assert!(session.is_expired());
    }

    #[test]
    fn test_user_session_just_expired() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() - Duration::seconds(1);

        let session = UserSession::new(user_id, "token".to_string(), SessionType::Web, expires_at);

        assert!(session.is_expired());
    }

    // ==================== UserSession Activity Tests ====================

    #[test]
    fn test_user_session_update_activity() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let mut session =
            UserSession::new(user_id, "token".to_string(), SessionType::Web, expires_at);

        let initial_activity = session.last_activity;
        std::thread::sleep(std::time::Duration::from_millis(10));
        session.update_activity();

        assert!(session.last_activity >= initial_activity);
    }

    // ==================== UserSession Data Tests ====================

    #[test]
    fn test_user_session_set_data() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let mut session =
            UserSession::new(user_id, "token".to_string(), SessionType::Web, expires_at);

        session.set_data("key1", "value1");
        session.set_data("key2", 42);
        session.set_data("key3", true);

        assert_eq!(session.data.len(), 3);
    }

    #[test]
    fn test_user_session_get_data() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let mut session =
            UserSession::new(user_id, "token".to_string(), SessionType::Web, expires_at);

        session.set_data("test_key", "test_value");

        let value = session.get_data("test_key");
        assert!(value.is_some());
        assert_eq!(value.unwrap(), "test_value");
    }

    #[test]
    fn test_user_session_get_data_missing() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let session = UserSession::new(user_id, "token".to_string(), SessionType::Web, expires_at);

        assert!(session.get_data("nonexistent").is_none());
    }

    #[test]
    fn test_user_session_set_data_overwrite() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let mut session =
            UserSession::new(user_id, "token".to_string(), SessionType::Web, expires_at);

        session.set_data("key", "original");
        session.set_data("key", "updated");

        let value = session.get_data("key");
        assert_eq!(value.unwrap(), "updated");
    }

    #[test]
    fn test_user_session_set_data_various_types() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let mut session =
            UserSession::new(user_id, "token".to_string(), SessionType::Web, expires_at);

        session.set_data("string", "hello");
        session.set_data("number", 123);
        session.set_data("float", 1.234);
        session.set_data("bool", true);
        session.set_data("null", serde_json::Value::Null);

        assert_eq!(session.data.len(), 5);
    }

    // ==================== UserSession Serialization Tests ====================

    #[test]
    fn test_user_session_serialize() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let session = UserSession::new(
            user_id,
            "secret_token".to_string(),
            SessionType::Web,
            expires_at,
        );

        let json = serde_json::to_string(&session).unwrap();

        // Token should NOT be serialized (skip_serializing)
        assert!(!json.contains("secret_token"));
        // User ID should be serialized
        assert!(json.contains(&user_id.to_string()));
        // Session type should be serialized
        assert!(json.contains("\"session_type\":\"web\""));
    }

    #[test]
    fn test_user_session_serialize_with_optional_fields() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let mut session =
            UserSession::new(user_id, "token".to_string(), SessionType::Api, expires_at);

        session.ip_address = Some("192.168.1.1".to_string());
        session.user_agent = Some("Mozilla/5.0".to_string());

        let json = serde_json::to_string(&session).unwrap();

        assert!(json.contains("192.168.1.1"));
        assert!(json.contains("Mozilla/5.0"));
    }

    // ==================== UserSession Clone Tests ====================

    #[test]
    fn test_user_session_clone() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let mut session = UserSession::new(
            user_id,
            "token".to_string(),
            SessionType::Mobile,
            expires_at,
        );

        session.ip_address = Some("10.0.0.1".to_string());
        session.set_data("key", "value");

        let cloned = session.clone();

        assert_eq!(session.user_id, cloned.user_id);
        assert_eq!(session.token, cloned.token);
        assert_eq!(session.ip_address, cloned.ip_address);
        assert_eq!(session.data.len(), cloned.data.len());
    }

    // ==================== UserSession Debug Tests ====================

    #[test]
    fn test_user_session_debug() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let session = UserSession::new(user_id, "token".to_string(), SessionType::Cli, expires_at);

        let debug_str = format!("{:?}", session);
        assert!(debug_str.contains("UserSession"));
        assert!(debug_str.contains("Cli"));
    }

    // ==================== UserSession Edge Cases ====================

    #[test]
    fn test_user_session_empty_token() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);

        let session = UserSession::new(user_id, "".to_string(), SessionType::Web, expires_at);

        assert!(session.token.is_empty());
    }

    #[test]
    fn test_user_session_long_token() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::hours(24);
        let long_token = "a".repeat(1000);

        let session = UserSession::new(user_id, long_token.clone(), SessionType::Web, expires_at);

        assert_eq!(session.token.len(), 1000);
    }

    #[test]
    fn test_user_session_far_future_expiry() {
        let user_id = Uuid::new_v4();
        let expires_at = Utc::now() + Duration::days(365 * 10);

        let session = UserSession::new(user_id, "token".to_string(), SessionType::Api, expires_at);

        assert!(!session.is_expired());
    }
}