llm-shield-api 0.1.0

Production-grade REST API for LLM Shield
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
//! Integration tests for scan endpoints

use axum::http::StatusCode;
use llm_shield_api::models::response::{BatchScanResponse, ScanResponse};
use llm_shield_api::router::create_router_with_state;
use serde_json::json;

mod common;
use common::{create_test_state, parse_json, post_request};

#[tokio::test]
async fn test_scan_prompt_endpoint_success() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "Hello world, this is a test prompt",
        "scanners": ["test_scanner_1"],
        "cacheEnabled": false
    });

    let (status, body) = post_request(app, "/v1/scan/prompt", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: ScanResponse = parse_json(&body);
    assert!(response.is_valid);
    assert_eq!(response.risk_score, 0.0);
    assert_eq!(response.scanner_results.len(), 1);
    assert_eq!(response.scanner_results[0].scanner, "test_scanner_1");
    assert!(!response.cache_hit);
}

#[tokio::test]
async fn test_scan_prompt_endpoint_failing_scanner() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "Test prompt",
        "scanners": ["test_failing_scanner"],
        "cacheEnabled": false
    });

    let (status, body) = post_request(app, "/v1/scan/prompt", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: ScanResponse = parse_json(&body);
    assert!(!response.is_valid); // Should fail
    assert_eq!(response.risk_score, 0.8); // From failing scanner
    assert_eq!(response.scanner_results.len(), 1);
    assert_eq!(response.scanner_results[0].scanner, "test_failing_scanner");
}

#[tokio::test]
async fn test_scan_prompt_endpoint_multiple_scanners() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "Test with multiple scanners",
        "scanners": ["test_scanner_1", "test_scanner_2"],
        "cacheEnabled": false
    });

    let (status, body) = post_request(app, "/v1/scan/prompt", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: ScanResponse = parse_json(&body);
    assert!(response.is_valid);
    assert_eq!(response.scanner_results.len(), 2);
    assert_eq!(response.scanner_results[0].scanner, "test_scanner_1");
    assert_eq!(response.scanner_results[1].scanner, "test_scanner_2");
}

#[tokio::test]
async fn test_scan_prompt_endpoint_all_scanners() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "Test with all scanners",
        "scanners": [],
        "cacheEnabled": false
    });

    let (status, body) = post_request(app, "/v1/scan/prompt", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: ScanResponse = parse_json(&body);
    // Should run all 3 scanners (test_scanner_1, test_scanner_2, test_failing_scanner)
    assert!(!response.is_valid); // One scanner fails
    assert_eq!(response.risk_score, 0.8); // Max risk from failing scanner
    assert_eq!(response.scanner_results.len(), 3);
}

#[tokio::test]
async fn test_scan_prompt_endpoint_empty_prompt_validation() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "",
        "scanners": [],
        "cacheEnabled": false
    });

    let (status, _body) = post_request(app, "/v1/scan/prompt", req_body).await;

    assert_eq!(status, StatusCode::UNPROCESSABLE_ENTITY); // Validation error returns 422
}

#[tokio::test]
async fn test_scan_prompt_endpoint_nonexistent_scanner() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "Test prompt",
        "scanners": ["nonexistent_scanner"],
        "cacheEnabled": false
    });

    let (status, _body) = post_request(app, "/v1/scan/prompt", req_body).await;

    assert_eq!(status, StatusCode::NOT_FOUND); // Scanner not found
}

#[tokio::test]
async fn test_scan_prompt_endpoint_timing() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "Test timing",
        "scanners": ["test_scanner_1"],
        "cacheEnabled": false
    });

    let (status, body) = post_request(app, "/v1/scan/prompt", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: ScanResponse = parse_json(&body);
    // Timing should be measured (very fast for mock scanners, but should be reasonable)
    assert!(response.scan_time_ms < 1000); // Should complete in under 1 second
    assert!(response.scanner_results[0].execution_time_ms.is_some());
    if let Some(exec_time) = response.scanner_results[0].execution_time_ms {
        assert!(exec_time < 1000); // Individual scanner should also be fast
    }
}

#[tokio::test]
async fn test_scan_prompt_endpoint_default_cache_enabled() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    // Without cacheEnabled field, should default to true
    let req_body = json!({
        "prompt": "Test default cache",
        "scanners": ["test_scanner_1"]
    });

    let (status, body) = post_request(app, "/v1/scan/prompt", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: ScanResponse = parse_json(&body);
    assert!(response.is_valid);
}

#[tokio::test]
async fn test_scan_prompt_endpoint_invalid_json() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    // Missing required field
    let req_body = json!({
        "scanners": ["test_scanner_1"],
        "cacheEnabled": false
    });

    let (status, _body) = post_request(app, "/v1/scan/prompt", req_body).await;

    assert_eq!(status, StatusCode::UNPROCESSABLE_ENTITY); // Deserialization error
}

// Tests for POST /v1/scan/output

#[tokio::test]
async fn test_scan_output_endpoint_success() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "What is the weather today?",
        "output": "The weather is sunny with a high of 75°F.",
        "scanners": ["test_scanner_1"],
        "cacheEnabled": false
    });

    let (status, body) = post_request(app, "/v1/scan/output", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: ScanResponse = parse_json(&body);
    assert!(response.is_valid);
    assert_eq!(response.risk_score, 0.0);
    assert_eq!(response.scanner_results.len(), 1);
    assert_eq!(response.scanner_results[0].scanner, "test_scanner_1");
    assert!(!response.cache_hit);
}

#[tokio::test]
async fn test_scan_output_endpoint_failing_scanner() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "Test prompt",
        "output": "Test output with risk",
        "scanners": ["test_failing_scanner"],
        "cacheEnabled": false
    });

    let (status, body) = post_request(app, "/v1/scan/output", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: ScanResponse = parse_json(&body);
    assert!(!response.is_valid); // Should fail
    assert_eq!(response.risk_score, 0.8); // From failing scanner
    assert_eq!(response.scanner_results.len(), 1);
}

#[tokio::test]
async fn test_scan_output_endpoint_empty_prompt_validation() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "",
        "output": "Some output",
        "scanners": [],
        "cacheEnabled": false
    });

    let (status, _body) = post_request(app, "/v1/scan/output", req_body).await;

    assert_eq!(status, StatusCode::UNPROCESSABLE_ENTITY); // Validation error
}

#[tokio::test]
async fn test_scan_output_endpoint_empty_output_validation() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "Test prompt",
        "output": "",
        "scanners": [],
        "cacheEnabled": false
    });

    let (status, _body) = post_request(app, "/v1/scan/output", req_body).await;

    assert_eq!(status, StatusCode::UNPROCESSABLE_ENTITY); // Validation error
}

#[tokio::test]
async fn test_scan_output_endpoint_multiple_scanners() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "Test prompt",
        "output": "Test output with multiple scanners",
        "scanners": ["test_scanner_1", "test_scanner_2"],
        "cacheEnabled": false
    });

    let (status, body) = post_request(app, "/v1/scan/output", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: ScanResponse = parse_json(&body);
    assert!(response.is_valid);
    assert_eq!(response.scanner_results.len(), 2);
}

#[tokio::test]
async fn test_scan_output_endpoint_nonexistent_scanner() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "prompt": "Test prompt",
        "output": "Test output",
        "scanners": ["nonexistent_scanner"],
        "cacheEnabled": false
    });

    let (status, _body) = post_request(app, "/v1/scan/output", req_body).await;

    assert_eq!(status, StatusCode::NOT_FOUND); // Scanner not found
}

#[tokio::test]
async fn test_scan_output_endpoint_invalid_json() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    // Missing output field
    let req_body = json!({
        "prompt": "Test prompt",
        "scanners": [],
        "cacheEnabled": false
    });

    let (status, _body) = post_request(app, "/v1/scan/output", req_body).await;

    assert_eq!(status, StatusCode::UNPROCESSABLE_ENTITY); // Deserialization error
}

// Tests for POST /v1/scan/batch

#[tokio::test]
async fn test_scan_batch_endpoint_success() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "items": [
            {
                "prompt": "First prompt to scan",
                "scanners": ["test_scanner_1"],
                "cacheEnabled": false
            },
            {
                "prompt": "Second prompt to scan",
                "scanners": ["test_scanner_2"],
                "cacheEnabled": false
            }
        ],
        "maxConcurrent": 2
    });

    let (status, body) = post_request(app, "/v1/scan/batch", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: BatchScanResponse = parse_json(&body);
    assert_eq!(response.results.len(), 2);
    assert_eq!(response.success_count, 2);
    assert_eq!(response.failure_count, 0);
    assert!(response.total_time_ms < 1000); // Should complete quickly
}

#[tokio::test]
async fn test_scan_batch_endpoint_multiple_items() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let items: Vec<_> = (0..5)
        .map(|i| json!({
            "prompt": format!("Test prompt {}", i),
            "scanners": [],
            "cacheEnabled": false
        }))
        .collect();

    let req_body = json!({
        "items": items,
        "maxConcurrent": 3
    });

    let (status, body) = post_request(app, "/v1/scan/batch", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: BatchScanResponse = parse_json(&body);
    // Note: may have failures if "all scanners" returns empty for bidirectional-only state
    // But with our test state which has Input scanners, should work
    assert_eq!(response.results.len() + response.failure_count, 5);
}

#[tokio::test]
async fn test_scan_batch_endpoint_empty_items_validation() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "items": [],
        "maxConcurrent": 2
    });

    let (status, _body) = post_request(app, "/v1/scan/batch", req_body).await;

    assert_eq!(status, StatusCode::UNPROCESSABLE_ENTITY); // Validation error
}

#[tokio::test]
async fn test_scan_batch_endpoint_invalid_concurrency() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "items": [
            {
                "prompt": "Test prompt",
                "scanners": [],
                "cacheEnabled": false
            }
        ],
        "maxConcurrent": 0 // Invalid: must be >= 1
    });

    let (status, _body) = post_request(app, "/v1/scan/batch", req_body).await;

    assert_eq!(status, StatusCode::UNPROCESSABLE_ENTITY); // Validation error
}

#[tokio::test]
async fn test_scan_batch_endpoint_high_concurrency() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "items": [
            {
                "prompt": "Test prompt",
                "scanners": [],
                "cacheEnabled": false
            }
        ],
        "maxConcurrent": 11 // Invalid: max is 10
    });

    let (status, _body) = post_request(app, "/v1/scan/batch", req_body).await;

    assert_eq!(status, StatusCode::UNPROCESSABLE_ENTITY); // Validation error
}

#[tokio::test]
async fn test_scan_batch_endpoint_default_concurrency() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    // Without maxConcurrent, should default to 5
    let req_body = json!({
        "items": [
            {
                "prompt": "Test prompt 1",
                "scanners": ["test_scanner_1"],
                "cacheEnabled": false
            },
            {
                "prompt": "Test prompt 2",
                "scanners": ["test_scanner_1"],
                "cacheEnabled": false
            }
        ]
    });

    let (status, body) = post_request(app, "/v1/scan/batch", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: BatchScanResponse = parse_json(&body);
    assert_eq!(response.success_count, 2);
}

#[tokio::test]
async fn test_scan_batch_endpoint_with_failures() {
    let state = create_test_state();
    let app = create_router_with_state(state);

    let req_body = json!({
        "items": [
            {
                "prompt": "Valid prompt",
                "scanners": ["test_scanner_1"],
                "cacheEnabled": false
            },
            {
                "prompt": "Invalid with bad scanner",
                "scanners": ["nonexistent_scanner"],
                "cacheEnabled": false
            }
        ],
        "maxConcurrent": 2
    });

    let (status, body) = post_request(app, "/v1/scan/batch", req_body).await;

    assert_eq!(status, StatusCode::OK);

    let response: BatchScanResponse = parse_json(&body);
    // Should have 1 success and 1 failure
    assert_eq!(response.success_count, 1);
    assert_eq!(response.failure_count, 1);
}