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
//! RBAC type definitions

use std::collections::HashSet;

/// Role definition
#[derive(Debug, Clone)]
pub struct Role {
    /// Role name
    pub name: String,
    /// Role description
    pub description: String,
    /// Permissions granted by this role
    pub permissions: HashSet<String>,
    /// Parent roles (inheritance)
    pub parent_roles: HashSet<String>,
    /// Whether this is a system role
    pub is_system: bool,
}

/// Permission definition
#[derive(Debug, Clone)]
pub struct Permission {
    /// Permission name
    pub name: String,
    /// Permission description
    pub description: String,
    /// Resource this permission applies to
    pub resource: String,
    /// Action this permission allows
    pub action: String,
    /// Whether this is a system permission
    pub is_system: bool,
}

/// Permission check result
#[derive(Debug, Clone)]
pub struct PermissionCheck {
    /// Whether permission is granted
    pub granted: bool,
    /// Roles that granted the permission
    pub granted_by_roles: Vec<String>,
    /// Reason for denial (if not granted)
    pub denial_reason: Option<String>,
}

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

    // ==================== Role Tests ====================

    #[test]
    fn test_role_creation() {
        let mut permissions = HashSet::new();
        permissions.insert("read:users".to_string());
        permissions.insert("write:users".to_string());

        let role = Role {
            name: "admin".to_string(),
            description: "Administrator role".to_string(),
            permissions,
            parent_roles: HashSet::new(),
            is_system: true,
        };

        assert_eq!(role.name, "admin");
        assert!(role.is_system);
        assert_eq!(role.permissions.len(), 2);
    }

    #[test]
    fn test_role_with_parent_roles() {
        let mut parent_roles = HashSet::new();
        parent_roles.insert("user".to_string());
        parent_roles.insert("viewer".to_string());

        let role = Role {
            name: "editor".to_string(),
            description: "Editor with viewer and user permissions".to_string(),
            permissions: HashSet::new(),
            parent_roles,
            is_system: false,
        };

        assert_eq!(role.parent_roles.len(), 2);
        assert!(role.parent_roles.contains("user"));
        assert!(role.parent_roles.contains("viewer"));
    }

    #[test]
    fn test_role_permission_check() {
        let mut permissions = HashSet::new();
        permissions.insert("read:api".to_string());
        permissions.insert("write:api".to_string());
        permissions.insert("delete:api".to_string());

        let role = Role {
            name: "api_manager".to_string(),
            description: "API management role".to_string(),
            permissions,
            parent_roles: HashSet::new(),
            is_system: false,
        };

        assert!(role.permissions.contains("read:api"));
        assert!(role.permissions.contains("write:api"));
        assert!(!role.permissions.contains("admin:api"));
    }

    #[test]
    fn test_role_clone() {
        let mut permissions = HashSet::new();
        permissions.insert("read".to_string());

        let role = Role {
            name: "reader".to_string(),
            description: "Read-only role".to_string(),
            permissions,
            parent_roles: HashSet::new(),
            is_system: false,
        };

        let cloned = role.clone();
        assert_eq!(cloned.name, role.name);
        assert_eq!(cloned.permissions.len(), role.permissions.len());
    }

    #[test]
    fn test_role_debug() {
        let role = Role {
            name: "test".to_string(),
            description: "Test role".to_string(),
            permissions: HashSet::new(),
            parent_roles: HashSet::new(),
            is_system: false,
        };

        let debug_str = format!("{:?}", role);
        assert!(debug_str.contains("Role"));
        assert!(debug_str.contains("test"));
    }

    #[test]
    fn test_role_empty_permissions() {
        let role = Role {
            name: "empty".to_string(),
            description: "Role with no permissions".to_string(),
            permissions: HashSet::new(),
            parent_roles: HashSet::new(),
            is_system: false,
        };

        assert!(role.permissions.is_empty());
    }

    #[test]
    fn test_system_vs_user_role() {
        let system_role = Role {
            name: "super_admin".to_string(),
            description: "System administrator".to_string(),
            permissions: HashSet::new(),
            parent_roles: HashSet::new(),
            is_system: true,
        };

        let user_role = Role {
            name: "custom_role".to_string(),
            description: "User-defined role".to_string(),
            permissions: HashSet::new(),
            parent_roles: HashSet::new(),
            is_system: false,
        };

        assert!(system_role.is_system);
        assert!(!user_role.is_system);
    }

    // ==================== Permission Tests ====================

    #[test]
    fn test_permission_creation() {
        let permission = Permission {
            name: "read:users".to_string(),
            description: "Read user data".to_string(),
            resource: "users".to_string(),
            action: "read".to_string(),
            is_system: true,
        };

        assert_eq!(permission.name, "read:users");
        assert_eq!(permission.resource, "users");
        assert_eq!(permission.action, "read");
        assert!(permission.is_system);
    }

    #[test]
    fn test_permission_different_actions() {
        let actions = vec!["read", "write", "delete", "create", "update"];

        for action in actions {
            let permission = Permission {
                name: format!("{}:resource", action),
                description: format!("{} permission", action),
                resource: "resource".to_string(),
                action: action.to_string(),
                is_system: false,
            };

            assert_eq!(permission.action, action);
        }
    }

    #[test]
    fn test_permission_clone() {
        let permission = Permission {
            name: "write:api".to_string(),
            description: "Write API access".to_string(),
            resource: "api".to_string(),
            action: "write".to_string(),
            is_system: false,
        };

        let cloned = permission.clone();
        assert_eq!(cloned.name, permission.name);
        assert_eq!(cloned.resource, permission.resource);
    }

    #[test]
    fn test_permission_debug() {
        let permission = Permission {
            name: "test:perm".to_string(),
            description: "Test permission".to_string(),
            resource: "test".to_string(),
            action: "test".to_string(),
            is_system: false,
        };

        let debug_str = format!("{:?}", permission);
        assert!(debug_str.contains("Permission"));
        assert!(debug_str.contains("test:perm"));
    }

    #[test]
    fn test_permission_resources() {
        let resources = vec!["users", "teams", "api_keys", "models", "billing"];

        for resource in resources {
            let permission = Permission {
                name: format!("manage:{}", resource),
                description: format!("Manage {}", resource),
                resource: resource.to_string(),
                action: "manage".to_string(),
                is_system: false,
            };

            assert_eq!(permission.resource, resource);
        }
    }

    // ==================== PermissionCheck Tests ====================

    #[test]
    fn test_permission_check_granted() {
        let check = PermissionCheck {
            granted: true,
            granted_by_roles: vec!["admin".to_string(), "manager".to_string()],
            denial_reason: None,
        };

        assert!(check.granted);
        assert_eq!(check.granted_by_roles.len(), 2);
        assert!(check.denial_reason.is_none());
    }

    #[test]
    fn test_permission_check_denied() {
        let check = PermissionCheck {
            granted: false,
            granted_by_roles: vec![],
            denial_reason: Some("Insufficient permissions".to_string()),
        };

        assert!(!check.granted);
        assert!(check.granted_by_roles.is_empty());
        assert_eq!(
            check.denial_reason.as_ref().unwrap(),
            "Insufficient permissions"
        );
    }

    #[test]
    fn test_permission_check_single_role() {
        let check = PermissionCheck {
            granted: true,
            granted_by_roles: vec!["user".to_string()],
            denial_reason: None,
        };

        assert_eq!(check.granted_by_roles.len(), 1);
        assert_eq!(check.granted_by_roles[0], "user");
    }

    #[test]
    fn test_permission_check_clone() {
        let check = PermissionCheck {
            granted: true,
            granted_by_roles: vec!["admin".to_string()],
            denial_reason: None,
        };

        let cloned = check.clone();
        assert_eq!(cloned.granted, check.granted);
        assert_eq!(cloned.granted_by_roles, check.granted_by_roles);
    }

    #[test]
    fn test_permission_check_debug() {
        let check = PermissionCheck {
            granted: false,
            granted_by_roles: vec![],
            denial_reason: Some("Access denied".to_string()),
        };

        let debug_str = format!("{:?}", check);
        assert!(debug_str.contains("PermissionCheck"));
        assert!(debug_str.contains("false"));
    }

    // ==================== Integration Tests ====================

    #[test]
    fn test_role_permission_matching() {
        let mut permissions = HashSet::new();
        permissions.insert("read:users".to_string());
        permissions.insert("write:users".to_string());

        let role = Role {
            name: "user_manager".to_string(),
            description: "User management role".to_string(),
            permissions,
            parent_roles: HashSet::new(),
            is_system: false,
        };

        let required_permission = "read:users";
        let has_permission = role.permissions.contains(required_permission);

        let check = PermissionCheck {
            granted: has_permission,
            granted_by_roles: if has_permission {
                vec![role.name.clone()]
            } else {
                vec![]
            },
            denial_reason: if has_permission {
                None
            } else {
                Some("Permission not found".to_string())
            },
        };

        assert!(check.granted);
        assert_eq!(check.granted_by_roles[0], "user_manager");
    }

    #[test]
    fn test_role_hierarchy() {
        // Create base role
        let mut viewer_perms = HashSet::new();
        viewer_perms.insert("read:*".to_string());

        let viewer = Role {
            name: "viewer".to_string(),
            description: "Read-only access".to_string(),
            permissions: viewer_perms,
            parent_roles: HashSet::new(),
            is_system: true,
        };

        // Create editor that inherits from viewer
        let mut editor_parents = HashSet::new();
        editor_parents.insert("viewer".to_string());

        let mut editor_perms = HashSet::new();
        editor_perms.insert("write:*".to_string());

        let editor = Role {
            name: "editor".to_string(),
            description: "Can edit content".to_string(),
            permissions: editor_perms,
            parent_roles: editor_parents,
            is_system: true,
        };

        assert!(editor.parent_roles.contains(&viewer.name));
        assert!(editor.permissions.contains("write:*"));
    }

    #[test]
    fn test_permission_check_multiple_roles() {
        let check = PermissionCheck {
            granted: true,
            granted_by_roles: vec![
                "admin".to_string(),
                "manager".to_string(),
                "user".to_string(),
            ],
            denial_reason: None,
        };

        assert!(check.granted_by_roles.contains(&"admin".to_string()));
        assert!(check.granted_by_roles.contains(&"manager".to_string()));
        assert!(check.granted_by_roles.contains(&"user".to_string()));
    }

    #[test]
    fn test_denial_reasons() {
        let reasons = vec![
            "Insufficient permissions",
            "Role not assigned",
            "Permission expired",
            "Resource not found",
            "Action not allowed",
        ];

        for reason in reasons {
            let check = PermissionCheck {
                granted: false,
                granted_by_roles: vec![],
                denial_reason: Some(reason.to_string()),
            };

            assert!(!check.granted);
            assert_eq!(check.denial_reason.as_ref().unwrap(), reason);
        }
    }
}