sentinel-agent-js 0.1.0

JavaScript scripting agent for Sentinel reverse proxy - embed custom JS logic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
//! Integration tests for the JavaScript agent using sentinel-agent-protocol.
//!
//! These tests spin up an actual AgentServer and connect via AgentClient
//! to verify the full protocol flow.

use sentinel_agent_js::JsAgent;
use sentinel_agent_protocol::{
    AgentClient, AgentServer, Decision, EventType, HeaderOp, RequestHeadersEvent, RequestMetadata,
    ResponseHeadersEvent,
};
use std::collections::HashMap;
use std::time::Duration;
use tempfile::tempdir;

/// Helper to start a JS agent server with given script and return the socket path
async fn start_test_server(
    script: &str,
    fail_open: bool,
) -> (tempfile::TempDir, std::path::PathBuf) {
    let dir = tempdir().expect("Failed to create temp dir");
    let socket_path = dir.path().join("js-test.sock");

    let agent =
        JsAgent::from_source(script.to_string(), fail_open).expect("Failed to create agent");
    let server = AgentServer::new("test-js", socket_path.clone(), Box::new(agent));

    tokio::spawn(async move {
        let _ = server.run().await;
    });

    // Give server time to start
    tokio::time::sleep(Duration::from_millis(50)).await;

    (dir, socket_path)
}

/// Create a client connected to the test server
async fn create_client(socket_path: &std::path::Path) -> AgentClient {
    AgentClient::unix_socket("test-client", socket_path, Duration::from_secs(5))
        .await
        .expect("Failed to connect to agent")
}

/// Create a basic request metadata
fn make_metadata() -> RequestMetadata {
    let id = uuid::Uuid::new_v4().to_string();
    RequestMetadata {
        correlation_id: id.clone(),
        request_id: id,
        client_ip: "192.168.1.100".to_string(),
        client_port: 54321,
        server_name: Some("test.example.com".to_string()),
        protocol: "HTTP/1.1".to_string(),
        tls_version: Some("TLSv1.3".to_string()),
        tls_cipher: None,
        route_id: Some("default".to_string()),
        upstream_id: None,
        timestamp: "2025-01-01T12:00:00Z".to_string(),
    }
}

/// Create a request headers event
fn make_request_headers(
    method: &str,
    uri: &str,
    headers: HashMap<String, Vec<String>>,
) -> RequestHeadersEvent {
    RequestHeadersEvent {
        metadata: make_metadata(),
        method: method.to_string(),
        uri: uri.to_string(),
        headers,
    }
}

/// Create a response headers event
fn make_response_headers(
    status: u16,
    headers: HashMap<String, Vec<String>>,
) -> ResponseHeadersEvent {
    ResponseHeadersEvent {
        correlation_id: uuid::Uuid::new_v4().to_string(),
        status,
        headers,
    }
}

/// Check if decision is Block
fn is_block(decision: &Decision) -> bool {
    matches!(decision, Decision::Block { .. })
}

/// Check if decision is Allow
fn is_allow(decision: &Decision) -> bool {
    matches!(decision, Decision::Allow)
}

/// Get block status code
fn get_block_status(decision: &Decision) -> Option<u16> {
    match decision {
        Decision::Block { status, .. } => Some(*status),
        _ => None,
    }
}

// ============================================================================
// Basic Decision Tests
// ============================================================================

#[tokio::test]
async fn test_allow_decision() {
    let script = r#"
        function on_request_headers(request) {
            return { decision: "allow" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/api/users", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_allow(&response.decision), "Expected Allow decision");
}

#[tokio::test]
async fn test_block_decision() {
    let script = r#"
        function on_request_headers(request) {
            return { decision: "block", status: 403, body: "Forbidden" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/admin", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_block(&response.decision), "Expected Block decision");
    assert_eq!(get_block_status(&response.decision), Some(403));
}

#[tokio::test]
async fn test_deny_decision() {
    let script = r#"
        function on_request_headers(request) {
            return { decision: "deny", status: 401 };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/protected", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_block(&response.decision), "Expected Block decision");
    assert_eq!(get_block_status(&response.decision), Some(401));
}

#[tokio::test]
async fn test_redirect_decision() {
    let script = r#"
        function on_request_headers(request) {
            return { decision: "redirect", status: 302, body: "https://login.example.com" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/secure", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(
        is_block(&response.decision),
        "Expected Block decision for redirect"
    );
    assert_eq!(get_block_status(&response.decision), Some(302));

    let has_location = response.response_headers.iter().any(|h| match h {
        HeaderOp::Set { name, value } => name == "Location" && value == "https://login.example.com",
        _ => false,
    });
    assert!(has_location, "Expected Location header");
}

#[tokio::test]
async fn test_default_status_codes() {
    // Block without status should default to 403
    let script = r#"
        function on_request_headers(request) {
            return { decision: "block" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/test", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert_eq!(get_block_status(&response.decision), Some(403));
}

// ============================================================================
// Request Inspection Tests
// ============================================================================

#[tokio::test]
async fn test_uri_inspection() {
    let script = r#"
        function on_request_headers(request) {
            if (request.uri.includes("/admin")) {
                return { decision: "block", status: 403 };
            }
            return { decision: "allow" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    // Should block admin
    let event = make_request_headers("GET", "/admin/settings", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_block(&response.decision),
        "Expected admin path to be blocked"
    );

    // Should allow other paths
    let event = make_request_headers("GET", "/api/users", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_allow(&response.decision),
        "Expected non-admin path to be allowed"
    );
}

#[tokio::test]
async fn test_method_inspection() {
    let script = r#"
        function on_request_headers(request) {
            if (request.method === "DELETE") {
                return { decision: "block", status: 405 };
            }
            return { decision: "allow" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    // Should block DELETE
    let event = make_request_headers("DELETE", "/api/resource", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_block(&response.decision),
        "Expected DELETE to be blocked"
    );
    assert_eq!(get_block_status(&response.decision), Some(405));

    // Should allow GET
    let event = make_request_headers("GET", "/api/resource", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(is_allow(&response.decision), "Expected GET to be allowed");
}

#[tokio::test]
async fn test_header_inspection() {
    let script = r#"
        function on_request_headers(request) {
            const ua = request.headers["User-Agent"] || "";
            if (ua.includes("BadBot")) {
                return { decision: "block", status: 403 };
            }
            return { decision: "allow" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    // Should block BadBot
    let mut headers = HashMap::new();
    headers.insert("User-Agent".to_string(), vec!["BadBot/1.0".to_string()]);

    let event = make_request_headers("GET", "/api", headers);
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_block(&response.decision),
        "Expected BadBot to be blocked"
    );

    // Should allow good user agent
    let mut headers = HashMap::new();
    headers.insert("User-Agent".to_string(), vec!["Mozilla/5.0".to_string()]);

    let event = make_request_headers("GET", "/api", headers);
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_allow(&response.decision),
        "Expected Mozilla to be allowed"
    );
}

#[tokio::test]
async fn test_client_ip_inspection() {
    let script = r#"
        function on_request_headers(request) {
            if (request.client_ip.startsWith("10.")) {
                return { decision: "block", status: 403, body: "Internal network blocked" };
            }
            return { decision: "allow" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    // Our test uses 192.168.1.100, so should be allowed
    let event = make_request_headers("GET", "/api", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_allow(&response.decision),
        "Expected 192.168.x to be allowed"
    );
}

// ============================================================================
// Header Manipulation Tests
// ============================================================================

#[tokio::test]
async fn test_add_request_headers() {
    let script = r#"
        function on_request_headers(request) {
            return {
                decision: "allow",
                add_request_headers: {
                    "X-Processed-By": "js-agent",
                    "X-Request-Time": "2025-01-01T12:00:00Z"
                }
            };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/api", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_allow(&response.decision));

    let has_processed_by = response.request_headers.iter().any(|h| match h {
        HeaderOp::Set { name, value } => name == "X-Processed-By" && value == "js-agent",
        _ => false,
    });
    assert!(has_processed_by, "Expected X-Processed-By header");

    let has_request_time = response.request_headers.iter().any(|h| match h {
        HeaderOp::Set { name, .. } => name == "X-Request-Time",
        _ => false,
    });
    assert!(has_request_time, "Expected X-Request-Time header");
}

#[tokio::test]
async fn test_remove_request_headers() {
    let script = r#"
        function on_request_headers(request) {
            return {
                decision: "allow",
                remove_request_headers: ["X-Debug", "X-Internal"]
            };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/api", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_allow(&response.decision));

    let has_remove_debug = response.request_headers.iter().any(|h| match h {
        HeaderOp::Remove { name } => name == "X-Debug",
        _ => false,
    });
    assert!(has_remove_debug, "Expected X-Debug removal");

    let has_remove_internal = response.request_headers.iter().any(|h| match h {
        HeaderOp::Remove { name } => name == "X-Internal",
        _ => false,
    });
    assert!(has_remove_internal, "Expected X-Internal removal");
}

#[tokio::test]
async fn test_add_response_headers() {
    let script = r#"
        function on_request_headers(request) {
            return {
                decision: "allow",
                add_response_headers: {
                    "X-Content-Type-Options": "nosniff",
                    "X-Frame-Options": "DENY"
                }
            };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/api", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_allow(&response.decision));

    let has_nosniff = response.response_headers.iter().any(|h| match h {
        HeaderOp::Set { name, value } => name == "X-Content-Type-Options" && value == "nosniff",
        _ => false,
    });
    assert!(has_nosniff, "Expected X-Content-Type-Options header");

    let has_frame = response.response_headers.iter().any(|h| match h {
        HeaderOp::Set { name, value } => name == "X-Frame-Options" && value == "DENY",
        _ => false,
    });
    assert!(has_frame, "Expected X-Frame-Options header");
}

#[tokio::test]
async fn test_remove_response_headers() {
    let script = r#"
        function on_request_headers(request) {
            return {
                decision: "allow",
                remove_response_headers: ["Server", "X-Powered-By"]
            };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/api", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_allow(&response.decision));

    let has_remove_server = response.response_headers.iter().any(|h| match h {
        HeaderOp::Remove { name } => name == "Server",
        _ => false,
    });
    assert!(has_remove_server, "Expected Server removal");
}

// ============================================================================
// Response Headers Hook Tests
// ============================================================================

#[tokio::test]
async fn test_response_headers_hook() {
    let script = r#"
        function on_response_headers(response) {
            if (response.status >= 500) {
                return {
                    decision: "allow",
                    add_response_headers: {
                        "X-Error-Logged": "true"
                    }
                };
            }
            return { decision: "allow" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    // 500 error should add header
    let event = make_response_headers(500, HashMap::new());
    let response = client
        .send_event(EventType::ResponseHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_allow(&response.decision));
    let has_error_logged = response.response_headers.iter().any(|h| match h {
        HeaderOp::Set { name, value } => name == "X-Error-Logged" && value == "true",
        _ => false,
    });
    assert!(has_error_logged, "Expected X-Error-Logged header for 500");

    // 200 should not add header
    let event = make_response_headers(200, HashMap::new());
    let response = client
        .send_event(EventType::ResponseHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_allow(&response.decision));
    let has_error_logged = response.response_headers.iter().any(|h| match h {
        HeaderOp::Set { name, .. } => name == "X-Error-Logged",
        _ => false,
    });
    assert!(!has_error_logged, "Should not have X-Error-Logged for 200");
}

#[tokio::test]
async fn test_response_headers_inspection() {
    let script = r#"
        function on_response_headers(response) {
            const contentType = response.headers["Content-Type"] || "";
            if (contentType.includes("text/html")) {
                return {
                    decision: "allow",
                    add_response_headers: {
                        "Content-Security-Policy": "default-src 'self'"
                    }
                };
            }
            return { decision: "allow" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let mut headers = HashMap::new();
    headers.insert("Content-Type".to_string(), vec!["text/html".to_string()]);

    let event = make_response_headers(200, headers);
    let response = client
        .send_event(EventType::ResponseHeaders, &event)
        .await
        .expect("Failed to send event");

    let has_csp = response.response_headers.iter().any(|h| match h {
        HeaderOp::Set { name, .. } => name == "Content-Security-Policy",
        _ => false,
    });
    assert!(has_csp, "Expected CSP header for HTML content");
}

// ============================================================================
// Audit Tags Tests
// ============================================================================

#[tokio::test]
async fn test_audit_tags() {
    let script = r#"
        function on_request_headers(request) {
            return {
                decision: "allow",
                tags: ["processed", "logged", "rate-limited"]
            };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/api", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_allow(&response.decision));

    assert!(response.audit.tags.contains(&"processed".to_string()));
    assert!(response.audit.tags.contains(&"logged".to_string()));
    assert!(response.audit.tags.contains(&"rate-limited".to_string()));
}

// ============================================================================
// Error Handling Tests
// ============================================================================

#[tokio::test]
async fn test_undefined_function_allows() {
    // Script without on_request_headers should allow by default
    let script = r#"
        function some_other_function() {
            return { decision: "block" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/api", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(
        is_allow(&response.decision),
        "Expected Allow when function undefined"
    );
}

#[tokio::test]
async fn test_null_return_allows() {
    let script = r#"
        function on_request_headers(request) {
            return null;
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/api", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(
        is_allow(&response.decision),
        "Expected Allow for null return"
    );
}

#[tokio::test]
async fn test_script_error_blocks_by_default() {
    let script = r#"
        function on_request_headers(request) {
            throw new Error("Script error");
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/api", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(
        is_block(&response.decision),
        "Expected Block on script error"
    );
    assert_eq!(get_block_status(&response.decision), Some(500));
}

#[tokio::test]
async fn test_script_error_allows_with_fail_open() {
    let script = r#"
        function on_request_headers(request) {
            throw new Error("Script error");
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, true).await; // fail_open = true
    let mut client = create_client(&socket_path).await;

    let event = make_request_headers("GET", "/api", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(
        is_allow(&response.decision),
        "Expected Allow with fail-open"
    );

    assert!(response.audit.tags.contains(&"js-error".to_string()));
    assert!(response.audit.tags.contains(&"fail-open".to_string()));
}

// ============================================================================
// Complex Logic Tests
// ============================================================================

#[tokio::test]
async fn test_rate_limit_tier_by_path() {
    let script = r#"
        function on_request_headers(request) {
            let tier = "standard";
            if (request.uri.startsWith("/api/v1/")) {
                tier = "api";
            } else if (request.uri.startsWith("/admin/")) {
                tier = "admin";
            }

            return {
                decision: "allow",
                add_request_headers: {
                    "X-Rate-Limit-Tier": tier
                }
            };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    // API path
    let event = make_request_headers("GET", "/api/v1/users", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    let has_api_tier = response.request_headers.iter().any(|h| match h {
        HeaderOp::Set { name, value } => name == "X-Rate-Limit-Tier" && value == "api",
        _ => false,
    });
    assert!(has_api_tier, "Expected API tier for /api/v1/ path");

    // Admin path
    let event = make_request_headers("GET", "/admin/dashboard", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    let has_admin_tier = response.request_headers.iter().any(|h| match h {
        HeaderOp::Set { name, value } => name == "X-Rate-Limit-Tier" && value == "admin",
        _ => false,
    });
    assert!(has_admin_tier, "Expected admin tier for /admin/ path");

    // Standard path
    let event = make_request_headers("GET", "/public/page", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");

    let has_standard_tier = response.request_headers.iter().any(|h| match h {
        HeaderOp::Set { name, value } => name == "X-Rate-Limit-Tier" && value == "standard",
        _ => false,
    });
    assert!(has_standard_tier, "Expected standard tier for other paths");
}

#[tokio::test]
async fn test_authentication_required() {
    let script = r#"
        function on_request_headers(request) {
            // Skip for public paths
            if (request.uri.startsWith("/public/") || request.uri === "/health") {
                return { decision: "allow" };
            }

            // Check for auth header
            if (!request.headers["Authorization"]) {
                return {
                    decision: "block",
                    status: 401,
                    body: "Authentication required"
                };
            }

            return { decision: "allow" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    // Public path - should allow without auth
    let event = make_request_headers("GET", "/public/page", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_allow(&response.decision),
        "Expected public path to be allowed"
    );

    // Health endpoint - should allow without auth
    let event = make_request_headers("GET", "/health", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_allow(&response.decision),
        "Expected health to be allowed"
    );

    // Protected path without auth - should block
    let event = make_request_headers("GET", "/api/users", HashMap::new());
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_block(&response.decision),
        "Expected protected path to be blocked without auth"
    );
    assert_eq!(get_block_status(&response.decision), Some(401));

    // Protected path with auth - should allow
    let mut headers = HashMap::new();
    headers.insert(
        "Authorization".to_string(),
        vec!["Bearer token123".to_string()],
    );
    let event = make_request_headers("GET", "/api/users", headers);
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_allow(&response.decision),
        "Expected protected path with auth to be allowed"
    );
}

#[tokio::test]
async fn test_scanner_detection() {
    let script = r#"
        function on_request_headers(request) {
            const ua = (request.headers["User-Agent"] || "").toLowerCase();
            const badBots = ["sqlmap", "nikto", "nessus", "masscan"];

            for (const bot of badBots) {
                if (ua.includes(bot)) {
                    return {
                        decision: "block",
                        status: 403,
                        tags: ["bot-blocked", bot]
                    };
                }
            }
            return { decision: "allow" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    // SQLMap should be blocked
    let mut headers = HashMap::new();
    headers.insert("User-Agent".to_string(), vec!["sqlmap/1.0".to_string()]);
    let event = make_request_headers("GET", "/api", headers);
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_block(&response.decision),
        "Expected sqlmap to be blocked"
    );

    // Nikto should be blocked
    let mut headers = HashMap::new();
    headers.insert("User-Agent".to_string(), vec!["Nikto/2.1".to_string()]);
    let event = make_request_headers("GET", "/api", headers);
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(is_block(&response.decision), "Expected Nikto to be blocked");

    // Normal browser should be allowed
    let mut headers = HashMap::new();
    headers.insert(
        "User-Agent".to_string(),
        vec!["Mozilla/5.0 Chrome/100".to_string()],
    );
    let event = make_request_headers("GET", "/api", headers);
    let response = client
        .send_event(EventType::RequestHeaders, &event)
        .await
        .expect("Failed to send event");
    assert!(
        is_allow(&response.decision),
        "Expected normal browser to be allowed"
    );
}

#[tokio::test]
async fn test_security_headers_for_html() {
    let script = r#"
        function on_response_headers(response) {
            const contentType = response.headers["Content-Type"] || "";

            if (contentType.includes("text/html")) {
                return {
                    decision: "allow",
                    add_response_headers: {
                        "X-Content-Type-Options": "nosniff",
                        "X-Frame-Options": "DENY",
                        "X-XSS-Protection": "1; mode=block",
                        "Referrer-Policy": "strict-origin-when-cross-origin"
                    }
                };
            }

            return { decision: "allow" };
        }
    "#;

    let (_dir, socket_path) = start_test_server(script, false).await;
    let mut client = create_client(&socket_path).await;

    // HTML response should get security headers
    let mut headers = HashMap::new();
    headers.insert(
        "Content-Type".to_string(),
        vec!["text/html; charset=utf-8".to_string()],
    );
    let event = make_response_headers(200, headers);
    let response = client
        .send_event(EventType::ResponseHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_allow(&response.decision));
    assert_eq!(response.response_headers.len(), 4);

    // JSON response should not get security headers
    let mut headers = HashMap::new();
    headers.insert(
        "Content-Type".to_string(),
        vec!["application/json".to_string()],
    );
    let event = make_response_headers(200, headers);
    let response = client
        .send_event(EventType::ResponseHeaders, &event)
        .await
        .expect("Failed to send event");

    assert!(is_allow(&response.decision));
    assert!(response.response_headers.is_empty());
}