aioduct 0.2.2

Async-native HTTP client built directly on hyper 1.x — no hyper-util, no legacy
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
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
#![cfg(all(feature = "compio", feature = "tokio"))]

#[path = "compio_integration/cache.rs"]
mod cache;
#[path = "compio_integration/chunk_download.rs"]
mod chunk_download;
#[path = "compio_integration/client_behavior.rs"]
mod client_behavior;
#[path = "compio_integration/connect_tunnel.rs"]
mod connect_tunnel;
#[path = "compio_integration/forward_local.rs"]
mod forward_local;
#[path = "compio_integration/forwarding.rs"]
mod forwarding;
#[path = "compio_integration/proxy_local.rs"]
mod proxy_local;
#[path = "compio_integration/request_builder.rs"]
mod request_builder;
#[path = "compio_integration/resolver.rs"]
mod resolver;
#[path = "compio_integration/sse.rs"]
mod sse;
#[path = "compio_integration/streaming.rs"]
mod streaming;

use std::convert::Infallible;
use std::net::SocketAddr;
use std::time::Duration;

use bytes::Bytes;
use http_body_util::{BodyExt, Full};
use hyper::server::conn::http1 as server_http1;
use hyper::service::service_fn;
use hyper::{Request, Response};

use aioduct::runtime::compio_rt::{CompioRuntime, TcpConnector};
use aioduct::{
    CONTENT_DIGEST, HttpEngineLocal, MessageSignatureBase, MessageSignatureComponent,
    MessageSignatureConfig, sha256_content_digest_value,
};

async fn hello(_req: Request<hyper::body::Incoming>) -> Result<Response<Full<Bytes>>, Infallible> {
    Ok(Response::new(Full::new(Bytes::from("hello aioduct"))))
}

fn compio_signature(_: &[u8]) -> Result<Vec<u8>, aioduct::MessageSignatureError> {
    Ok(b"compio".to_vec())
}

fn start_server_tokio() -> SocketAddr {
    start_server_with_tokio(|req| async { hello(req).await })
}

fn read_raw_request_headers(stream: &mut std::net::TcpStream) {
    use std::io::Read;

    stream
        .set_read_timeout(Some(Duration::from_secs(5)))
        .unwrap();
    let mut request = Vec::with_capacity(1024);
    let mut buf = [0u8; 512];
    while request.len() < 16 * 1024 {
        let n = stream.read(&mut buf).unwrap();
        assert_ne!(n, 0, "client closed before sending request headers");
        request.extend_from_slice(&buf[..n]);
        if request.windows(4).any(|window| window == b"\r\n\r\n") {
            stream.set_read_timeout(None).unwrap();
            return;
        }
    }
    panic!("request headers exceeded 16 KiB");
}

fn start_server_with_tokio<F, Fut>(handler: F) -> SocketAddr
where
    F: Fn(Request<hyper::body::Incoming>) -> Fut + Send + Clone + 'static,
    Fut: std::future::Future<Output = Result<Response<Full<Bytes>>, Infallible>> + Send,
{
    let (tx, rx) = std::sync::mpsc::channel();
    std::thread::spawn(move || {
        let rt = tokio::runtime::Runtime::new().unwrap();
        rt.block_on(async {
            let listener = tokio::net::TcpListener::bind("127.0.0.1:0").await.unwrap();
            let addr = listener.local_addr().unwrap();
            tx.send(addr).unwrap();

            loop {
                let (stream, _) = listener.accept().await.unwrap();
                let io = aioduct::runtime::tokio_rt::TokioIo::new(stream);
                let handler = handler.clone();
                tokio::spawn(async move {
                    let _ = server_http1::Builder::new()
                        .serve_connection(io, service_fn(handler))
                        .await;
                });
            }
        });
    });
    rx.recv().unwrap()
}

#[test]
fn test_compio_get_request() {
    let addr = start_server_tokio();
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::new();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();

        assert_eq!(resp.status(), http::StatusCode::OK);
        let body = resp.text().await.unwrap();
        assert_eq!(body, "hello aioduct");
    });
}

#[test]
fn test_compio_base_url_resolves_relative_path() {
    let addr = start_server_with_tokio(|req| async move {
        let path = req.uri().path().to_string();
        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from(path))))
    });
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .base_url(&format!("http://{addr}/v1/"))
            .unwrap()
            .build_local()
            .unwrap();

        let resp = client.get_local("users").unwrap().send().await.unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);
        assert_eq!(resp.text().await.unwrap(), "/v1/users");
    });
}

#[test]
fn test_compio_automatic_message_signature() {
    let addr = start_server_with_tokio(|req| async move {
        let signature_input = req
            .headers()
            .get("signature-input")
            .map(|v| v.to_str().unwrap().to_owned())
            .unwrap_or_default();
        let signature = req
            .headers()
            .get("signature")
            .map(|v| v.to_str().unwrap().to_owned())
            .unwrap_or_default();
        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from(format!(
            "{signature_input}\n{signature}"
        )))))
    });
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let config = MessageSignatureConfig::new("sig1")
            .unwrap()
            .component(MessageSignatureComponent::method())
            .component(MessageSignatureComponent::request_target());
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .message_signature(config, compio_signature)
            .build_local()
            .unwrap();

        let resp = client
            .get_local(&format!("http://{addr}/signed"))
            .unwrap()
            .send()
            .await
            .unwrap();
        let body = resp.text().await.unwrap();
        assert!(body.contains("sig1="), "{body}");
        assert!(body.contains("sig1=:Y29tcGlv:"), "{body}");
    });
}

#[test]
fn test_compio_async_local_message_signature() {
    let addr = start_server_with_tokio(|req| async move {
        let signature_input = req
            .headers()
            .get("signature-input")
            .map(|v| v.to_str().unwrap().to_owned())
            .unwrap_or_default();
        let signature = req
            .headers()
            .get("signature")
            .map(|v| v.to_str().unwrap().to_owned())
            .unwrap_or_default();
        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from(format!(
            "{signature_input}\n{signature}"
        )))))
    });
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let config = MessageSignatureConfig::new("sig1")
            .unwrap()
            .component(MessageSignatureComponent::method())
            .component(MessageSignatureComponent::request_target());
        let signer = |base: MessageSignatureBase| async move {
            let signature = std::rc::Rc::new((
                base.as_str().contains(r#""@request-target": /signed"#),
                b"local-async".to_vec(),
            ));
            std::future::ready(()).await;
            assert!(signature.as_ref().0);
            Ok::<_, aioduct::MessageSignatureError>(signature.as_ref().1.clone())
        };
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .message_signature_async_local(config, signer)
            .build_local()
            .unwrap();

        let resp = client
            .get_local(&format!("http://{addr}/signed"))
            .unwrap()
            .send()
            .await
            .unwrap();
        let body = resp.text().await.unwrap();
        assert!(body.contains("sig1="), "{body}");
        assert!(body.contains("sig1=:bG9jYWwtYXN5bmM=:"), "{body}");
    });
}

#[test]
fn test_compio_automatic_content_digest_before_signature() {
    let addr = start_server_with_tokio(|req| async move {
        let content_digest = req
            .headers()
            .get("content-digest")
            .map(|v| v.to_str().unwrap().to_owned())
            .unwrap_or_default();
        let body = req.into_body().collect().await.unwrap().to_bytes();
        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from(format!(
            "content-digest={content_digest}\nbody={}",
            String::from_utf8_lossy(&body)
        )))))
    });
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let config = MessageSignatureConfig::new("sig1")
            .unwrap()
            .component(MessageSignatureComponent::method())
            .component(MessageSignatureComponent::header(
                http::HeaderName::from_static("content-digest"),
            ));
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .automatic_content_digest(true)
            .message_signature(config, compio_signature)
            .build_local()
            .unwrap();

        let resp = client
            .post_local(&format!("http://{addr}/digest"))
            .unwrap()
            .body("hello")
            .send()
            .await
            .unwrap();
        let body = resp.text().await.unwrap();
        let expected = "sha-256=:LPJNul+wow4m6DsqxbninhsWHlwfp0JecwQzYpOLmCQ=:";
        assert!(
            body.contains(&format!("content-digest={expected}")),
            "{body}"
        );
        assert!(body.contains("body=hello"), "{body}");
    });
}

#[cfg(feature = "gzip")]
#[test]
fn test_compio_per_request_no_decompression() {
    use flate2::Compression;
    use flate2::write::GzEncoder;
    use std::io::Write;

    let addr = start_server_with_tokio(|_req| async move {
        let mut encoder = GzEncoder::new(Vec::new(), Compression::fast());
        encoder.write_all(b"compio raw gzip").unwrap();
        let compressed = encoder.finish().unwrap();
        Ok::<_, Infallible>(
            Response::builder()
                .header("content-encoding", "gzip")
                .body(Full::new(Bytes::from(compressed)))
                .unwrap(),
        )
    });
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::new();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .no_decompression()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.headers().get("content-encoding").unwrap(), "gzip");
        let raw = resp.bytes().await.unwrap();
        assert_ne!(
            raw.as_ref(),
            b"compio raw gzip",
            "body must stay compressed"
        );
    });
}

#[test]
fn test_compio_post_request() {
    let addr = start_server_tokio();
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::new();
        let resp = client
            .post_local(&format!("http://{addr}/"))
            .unwrap()
            .body("request body")
            .send()
            .await
            .unwrap();

        assert_eq!(resp.status(), http::StatusCode::OK);
    });
}

#[test]
fn test_compio_connection_reuse() {
    let addr = start_server_tokio();
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::new();
        let url = format!("http://{addr}/");

        let resp1 = client.get_local(&url).unwrap().send().await.unwrap();
        assert_eq!(resp1.status(), http::StatusCode::OK);
        let _ = resp1.text().await.unwrap();

        let resp2 = client.get_local(&url).unwrap().send().await.unwrap();
        assert_eq!(resp2.status(), http::StatusCode::OK);
        let body = resp2.text().await.unwrap();
        assert_eq!(body, "hello aioduct");
    });
}

#[test]
fn test_compio_redirect_302() {
    let final_addr = start_server_tokio();
    let redirect_addr = start_server_with_tokio(move |_req| {
        let target = format!("http://{final_addr}/");
        async move {
            Ok::<_, Infallible>(
                Response::builder()
                    .status(302)
                    .header("location", target)
                    .body(Full::new(Bytes::new()))
                    .unwrap(),
            )
        }
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::new();
        let resp = client
            .get_local(&format!("http://{redirect_addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();

        assert_eq!(resp.status(), http::StatusCode::OK);
        let body = resp.text().await.unwrap();
        assert_eq!(body, "hello aioduct");
    });
}

// ── Compio TLS integration tests ─────────────────────────────────────
#[cfg(all(feature = "compio", feature = "tokio", feature = "rustls"))]
#[path = "compio_integration/tls.rs"]
mod compio_tls_tests;

#[test]
fn test_compio_https_only_rejects_http() {
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .https_only(true)
            .build_local()
            .unwrap();
        let result = client
            .get_local("http://example.com/")
            .unwrap()
            .send()
            .await;
        assert!(result.is_err());
    });
}

#[test]
fn test_compio_no_connection_reuse() {
    let addr = start_server_tokio();
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .no_connection_reuse()
            .build_local()
            .unwrap();
        let url = format!("http://{addr}/");

        let resp1 = client.get_local(&url).unwrap().send().await.unwrap();
        assert_eq!(resp1.status(), http::StatusCode::OK);
        let _ = resp1.text().await.unwrap();

        let resp2 = client.get_local(&url).unwrap().send().await.unwrap();
        assert_eq!(resp2.status(), http::StatusCode::OK);
        let _ = resp2.text().await.unwrap();
    });
}

#[test]
fn test_compio_cookie_jar() {
    let addr = start_server_with_tokio(|req| async move {
        let path = req.uri().path().to_string();
        if path == "/set" {
            Ok::<_, Infallible>(
                Response::builder()
                    .header("set-cookie", "session=abc123; Path=/")
                    .body(Full::new(Bytes::from("cookie set")))
                    .unwrap(),
            )
        } else {
            let cookie = req
                .headers()
                .get("cookie")
                .map(|v| v.to_str().unwrap_or("").to_owned())
                .unwrap_or_default();
            Ok(Response::new(Full::new(Bytes::from(cookie))))
        }
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let jar = aioduct::cookie::CookieJar::new();
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .cookie_jar(jar)
            .build_local()
            .unwrap();

        let resp = client
            .get_local(&format!("http://{addr}/set"))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);
        let _ = resp.text().await.unwrap();

        let resp = client
            .get_local(&format!("http://{addr}/check"))
            .unwrap()
            .send()
            .await
            .unwrap();
        let body = resp.text().await.unwrap();
        assert!(
            body.contains("session=abc123"),
            "cookie not forwarded: {body}"
        );
    });
}

#[test]
fn test_compio_middleware() {
    let addr = start_server_with_tokio(|req| async move {
        let custom = req
            .headers()
            .get("x-middleware")
            .map(|v| v.to_str().unwrap_or("").to_owned())
            .unwrap_or_default();
        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from(custom))))
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .middleware(
                |req: &mut http::Request<aioduct::body::RequestBodySend>, _uri: &http::Uri| {
                    req.headers_mut().insert(
                        "x-middleware",
                        http::header::HeaderValue::from_static("injected"),
                    );
                },
            )
            .build_local()
            .unwrap();

        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();
        let body = resp.text().await.unwrap();
        assert_eq!(body, "injected");
    });
}

#[test]
fn test_compio_read_timeout_fires() {
    let addr = start_server_with_tokio(|_req| async {
        Ok::<_, Infallible>(
            Response::builder()
                .header("content-length", "10000")
                .body(Full::new(Bytes::new()))
                .unwrap(),
        )
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .read_timeout(Duration::from_millis(50))
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);
    });
}

#[test]
fn test_compio_bandwidth_limiter() {
    let addr = start_server_with_tokio(|_req| async {
        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from("bandwidth test data"))))
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .max_download_speed(1024 * 1024)
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.text().await.unwrap(), "bandwidth test data");
    });
}

#[test]
fn test_compio_rate_limiter() {
    let addr = start_server_tokio();
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .max_requests_per_sec(100)
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);
    });
}

#[test]
fn test_compio_error_for_status() {
    let addr = start_server_with_tokio(|_req| async {
        Ok::<_, Infallible>(
            Response::builder()
                .status(404)
                .body(Full::new(Bytes::from("not found")))
                .unwrap(),
        )
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::new();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::NOT_FOUND);
        let err = resp.error_for_status();
        assert!(err.is_err());
    });
}

#[test]
fn test_compio_decompression_disabled() {
    let addr = start_server_with_tokio(|req| async move {
        let accept = req
            .headers()
            .get("accept-encoding")
            .map(|v| v.to_str().unwrap_or("").to_owned())
            .unwrap_or_default();
        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from(accept))))
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .no_decompression()
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();
        let body = resp.text().await.unwrap();
        assert!(body.is_empty() || !body.contains("gzip"));
    });
}

#[test]
fn test_compio_tcp_keepalive() {
    let addr = start_server_tokio();
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .tcp_keepalive(Duration::from_secs(60))
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);
    });
}

#[test]
fn test_compio_resolve_override() {
    let addr = start_server_tokio();
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .resolve("custom-host.local", addr)
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://custom-host.local:{}/", addr.port()))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);
        assert_eq!(resp.text().await.unwrap(), "hello aioduct");
    });
}

#[test]
fn test_compio_request_local_with_delete() {
    let addr = start_server_with_tokio(|req| async move {
        let method = req.method().to_string();
        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from(method))))
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::new();
        let resp = client
            .request_local(http::Method::DELETE, &format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.text().await.unwrap(), "DELETE");
    });
}

#[test]
fn test_compio_observer() {
    use std::sync::{Arc, Mutex};

    let addr = start_server_tokio();
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let phases = Arc::new(Mutex::new(Vec::new()));
        let phases_clone = phases.clone();

        struct Obs(Arc<Mutex<Vec<String>>>);
        impl aioduct::observer::RequestObserver for Obs {
            fn on_event(&self, event: &aioduct::observer::RequestEvent) {
                self.0.lock().unwrap().push(format!("{:?}", event.phase));
            }
            fn on_connection_event(&self, _event: &aioduct::observer::ConnectionEvent) {}
        }

        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .request_observer(Obs(phases_clone))
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);
        let _ = resp.text().await.unwrap();

        let recorded = phases.lock().unwrap();
        assert!(!recorded.is_empty(), "observer should have recorded phases");
    });
}

#[test]
fn test_compio_redirect_with_method_change() {
    let final_addr = start_server_with_tokio(|req| async move {
        let method = req.method().to_string();
        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from(method))))
    });
    let redirect_addr = start_server_with_tokio(move |_req| {
        let target = format!("http://{final_addr}/");
        async move {
            Ok::<_, Infallible>(
                Response::builder()
                    .status(303)
                    .header("location", target)
                    .body(Full::new(Bytes::new()))
                    .unwrap(),
            )
        }
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::new();
        let resp = client
            .post_local(&format!("http://{redirect_addr}/"))
            .unwrap()
            .body("some body")
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);
        assert_eq!(resp.text().await.unwrap(), "GET");
    });
}

#[test]
fn test_compio_too_many_redirects() {
    let addr = start_server_with_tokio(|_req| async {
        Ok::<_, Infallible>(
            Response::builder()
                .status(302)
                .header("location", "/loop")
                .body(Full::new(Bytes::new()))
                .unwrap(),
        )
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .max_redirects(3)
            .build_local()
            .unwrap();
        let result = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await;
        assert!(result.is_err());
    });
}

#[test]
fn test_compio_connect_timeout() {
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .connect_timeout(Duration::from_millis(1))
            .build_local()
            .unwrap();
        let result = client
            .get_local("http://192.0.2.1:1/")
            .unwrap()
            .timeout(Duration::from_secs(2))
            .send()
            .await;
        assert!(result.is_err());
    });
}

#[test]
fn test_compio_hsts_store() {
    let addr = start_server_with_tokio(|_req| async {
        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from("hsts test"))))
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let hsts = aioduct::hsts::HstsStore::new();
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .hsts(hsts)
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);
    });
}

// ── Cookie store from response test ────────────────────────────────

#[test]
fn test_compio_cookie_store_from_response() {
    let addr = start_server_with_tokio(|req| async move {
        let path = req.uri().path().to_string();
        if path == "/login" {
            Ok::<_, Infallible>(
                Response::builder()
                    .header("set-cookie", "token=xyz789; Path=/; HttpOnly")
                    .header("set-cookie", "lang=en; Path=/")
                    .body(Full::new(Bytes::from("logged in")))
                    .unwrap(),
            )
        } else {
            let cookie = req
                .headers()
                .get("cookie")
                .map(|v| v.to_str().unwrap_or("").to_owned())
                .unwrap_or_default();
            Ok(Response::new(Full::new(Bytes::from(cookie))))
        }
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let jar = aioduct::cookie::CookieJar::new();
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .cookie_jar(jar)
            .build_local()
            .unwrap();

        // Login: sets cookies
        let resp = client
            .get_local(&format!("http://{addr}/login"))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);
        let _ = resp.text().await.unwrap();

        // Verify cookies are sent on subsequent requests
        let resp = client
            .get_local(&format!("http://{addr}/dashboard"))
            .unwrap()
            .send()
            .await
            .unwrap();
        let body = resp.text().await.unwrap();
        assert!(
            body.contains("token=xyz789"),
            "cookie not forwarded: {body}"
        );
    });
}

// ── Digest auth retry test ─────────────────────────────────────────

#[test]
fn test_compio_digest_auth_retry() {
    use std::sync::Arc;
    use std::sync::atomic::{AtomicUsize, Ordering};

    let request_count = Arc::new(AtomicUsize::new(0));
    let rc = request_count.clone();

    let addr = start_server_with_tokio(move |req| {
        let rc = rc.clone();
        async move {
            let n = rc.fetch_add(1, Ordering::SeqCst);
            let auth_header = req
                .headers()
                .get("authorization")
                .and_then(|v| v.to_str().ok())
                .unwrap_or("")
                .to_string();

            if n == 0 || !auth_header.starts_with("Digest ") {
                // First request or no digest auth: challenge with 401
                Ok::<_, Infallible>(
                    Response::builder()
                        .status(401)
                        .header(
                            "www-authenticate",
                            "Digest realm=\"test@example.com\", nonce=\"abc123nonce\", qop=\"auth\", algorithm=MD5",
                        )
                        .body(Full::new(Bytes::from("unauthorized")))
                        .unwrap(),
                )
            } else {
                // Second request with digest credentials: verify and return 200
                assert!(
                    auth_header.contains("username=\"admin\""),
                    "digest auth should contain username"
                );
                assert!(
                    auth_header.contains("realm=\"test@example.com\""),
                    "digest auth should contain realm"
                );
                assert!(
                    auth_header.contains("nonce=\"abc123nonce\""),
                    "digest auth should contain nonce"
                );
                Ok::<_, Infallible>(
                    Response::builder()
                        .status(200)
                        .body(Full::new(Bytes::from("authenticated")))
                        .unwrap(),
                )
            }
        }
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .digest_auth("admin", "secret123")
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://{addr}/protected"))
            .unwrap()
            .send()
            .await
            .unwrap();

        assert_eq!(resp.status(), http::StatusCode::OK);
        assert_eq!(resp.text().await.unwrap(), "authenticated");
    });
}

#[test]
fn test_compio_digest_auth_retry_with_body() {
    use std::sync::Arc;
    use std::sync::atomic::{AtomicUsize, Ordering};

    let request_count = Arc::new(AtomicUsize::new(0));
    let rc = request_count.clone();

    let addr = start_server_with_tokio(move |req| {
        let rc = rc.clone();
        async move {
            use http_body_util::BodyExt;
            let n = rc.fetch_add(1, Ordering::SeqCst);
            let auth_header = req
                .headers()
                .get("authorization")
                .and_then(|v| v.to_str().ok())
                .unwrap_or("")
                .to_string();
            let body_bytes = req.collect().await.unwrap().to_bytes();

            if n == 0 || !auth_header.starts_with("Digest ") {
                Ok::<_, Infallible>(
                    Response::builder()
                        .status(401)
                        .header(
                            "www-authenticate",
                            "Digest realm=\"api\", nonce=\"xyz789\", qop=\"auth\"",
                        )
                        .body(Full::new(Bytes::from("need auth")))
                        .unwrap(),
                )
            } else {
                // Verify the body was replayed
                let body_str = String::from_utf8_lossy(&body_bytes);
                Ok::<_, Infallible>(
                    Response::builder()
                        .status(200)
                        .body(Full::new(Bytes::from(format!("ok:{}", body_str))))
                        .unwrap(),
                )
            }
        }
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .digest_auth("user", "pass")
            .build_local()
            .unwrap();
        let resp = client
            .post_local(&format!("http://{addr}/submit"))
            .unwrap()
            .body("my payload")
            .send()
            .await
            .unwrap();

        assert_eq!(resp.status(), http::StatusCode::OK);
        let body = resp.text().await.unwrap();
        assert_eq!(body, "ok:my payload");
    });
}

// ── Finalize response with read timeout and bandwidth limit ────────

#[test]
fn test_compio_finalize_response_with_read_timeout_and_bandwidth() {
    let addr = start_server_with_tokio(|_req| async {
        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from(
            "response with limits applied",
        ))))
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .read_timeout(Duration::from_secs(5))
            .max_download_speed(1024 * 1024)
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();

        assert_eq!(resp.status(), http::StatusCode::OK);
        assert_eq!(resp.text().await.unwrap(), "response with limits applied");
    });
}

#[test]
fn test_compio_read_timeout_with_slow_body() {
    // Server sends headers immediately but body arrives slowly
    let addr = {
        let (tx, rx) = std::sync::mpsc::channel();
        std::thread::spawn(move || {
            let listener = std::net::TcpListener::bind("127.0.0.1:0").unwrap();
            let addr = listener.local_addr().unwrap();
            tx.send(addr).unwrap();

            let (mut stream, _) = listener.accept().unwrap();
            use std::io::Write;
            read_raw_request_headers(&mut stream);
            let _ = stream.write_all(b"HTTP/1.1 200 OK\r\nTransfer-Encoding: chunked\r\n\r\n");
            let _ = stream.write_all(b"5\r\nhello\r\n");
            let _ = stream.flush();
            std::thread::sleep(Duration::from_millis(200));
            let _ = stream.write_all(b"6\r\n world\r\n0\r\n\r\n");
            let _ = stream.flush();
        });
        rx.recv().unwrap()
    };

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .read_timeout(Duration::from_millis(50))
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();

        assert_eq!(resp.status(), http::StatusCode::OK);
        // The read timeout should fire during body consumption
        let result = resp.text().await;
        // Read timeout may cause an error when trying to read the body
        // or it may succeed if the timeout wraps the whole body read.
        // Either outcome exercises the finalize_response_local path.
        let _ = result;
    });
}

// ── HSTS store from response test ──────────────────────────────────

#[test]
fn test_compio_per_request_read_timeout_overrides_default() {
    // Server sends headers + partial body, then stalls.
    let addr = {
        let (tx, rx) = std::sync::mpsc::channel();
        std::thread::spawn(move || {
            let listener = std::net::TcpListener::bind("127.0.0.1:0").unwrap();
            let addr = listener.local_addr().unwrap();
            tx.send(addr).unwrap();

            let (mut stream, _) = listener.accept().unwrap();
            use std::io::Write;
            read_raw_request_headers(&mut stream);
            let _ = stream.write_all(b"HTTP/1.1 200 OK\r\nContent-Length: 10\r\n\r\nhello");
            let _ = stream.flush();
            // Never send the remaining 5 bytes.
            std::thread::sleep(Duration::from_secs(30));
        });
        rx.recv().unwrap()
    };

    compio_runtime::Runtime::new().unwrap().block_on(async {
        // Generous client default; per-request override is the tight one.
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .read_timeout(Duration::from_secs(5))
            .build_local()
            .unwrap();
        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .read_timeout(Duration::from_millis(100))
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);

        let err = resp.text().await.unwrap_err();
        assert!(
            matches!(err, aioduct::Error::ReadTimeout),
            "per-request read_timeout should fire on stalled body, got: {err:?}"
        );
    });
}

#[test]
fn test_compio_hsts_store_from_response_header() {
    // This test verifies that when a response contains Strict-Transport-Security,
    // the HSTS store records it. Since the HSTS store_from_response is only called
    // when scheme is HTTPS, and we can't easily set up TLS in this test, we test
    // the HTTP path which should NOT store HSTS (only HTTPS responses store it).
    // This exercises the conditional check at lines 178-183.
    let addr = start_server_with_tokio(|_req| async {
        Ok::<_, Infallible>(
            Response::builder()
                .header(
                    "strict-transport-security",
                    "max-age=31536000; includeSubDomains",
                )
                .body(Full::new(Bytes::from("hsts response")))
                .unwrap(),
        )
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let hsts = aioduct::hsts::HstsStore::new();
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .hsts(hsts.clone())
            .build_local()
            .unwrap();

        let resp = client
            .get_local(&format!("http://{addr}/"))
            .unwrap()
            .send()
            .await
            .unwrap();
        assert_eq!(resp.status(), http::StatusCode::OK);
        let _ = resp.text().await.unwrap();

        // HSTS should NOT be stored for HTTP responses (only HTTPS)
        // This exercises the condition check `current_uri.scheme() == Some(&http::uri::Scheme::HTTPS)`
        assert!(
            !hsts.should_upgrade(&format!("127.0.0.1:{}", addr.port())),
            "HSTS should not be stored from HTTP responses"
        );
    });
}

// ── 304 revalidation in execute_local ─────────────────────────────────

#[test]
fn test_compio_304_not_modified_not_redirect() {
    let addr = start_server_with_tokio(|_req| async move {
        Ok::<_, Infallible>(
            Response::builder()
                .status(304)
                .header("etag", "\"test\"")
                .body(Full::new(Bytes::new()))
                .unwrap(),
        )
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::new();
        let resp = client
            .get_local(&format!("http://{addr}/resource"))
            .unwrap()
            .send()
            .await
            .unwrap();
        // 304 should not be followed as redirect
        assert_eq!(resp.status(), http::StatusCode::NOT_MODIFIED);
    });
}

// ── HSTS store from HTTPS response local ──────────────────────────────

#[test]
fn test_compio_https_only_rejects_http_execute_local_path() {
    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .https_only(true)
            .build_local()
            .unwrap();
        let result = client
            .get_local("http://example.com/")
            .unwrap()
            .send()
            .await;
        assert!(result.is_err(), "https_only should reject http://");
    });
}

#[test]
fn test_compio_h2_multiplexing_reuses_connection() {
    use hyper::server::conn::http2 as server_http2;
    use std::sync::Arc;
    use std::sync::atomic::{AtomicU32, Ordering};

    #[derive(Clone)]
    struct TokioExec;
    impl<F> hyper::rt::Executor<F> for TokioExec
    where
        F: std::future::Future + Send + 'static,
        F::Output: Send + 'static,
    {
        fn execute(&self, fut: F) {
            tokio::spawn(fut);
        }
    }

    let request_count = Arc::new(AtomicU32::new(0));
    let count_clone = request_count.clone();

    let addr = {
        let (tx, rx) = std::sync::mpsc::channel();
        let count = count_clone;
        std::thread::spawn(move || {
            let rt = tokio::runtime::Runtime::new().unwrap();
            rt.block_on(async {
                let listener = tokio::net::TcpListener::bind("127.0.0.1:0").await.unwrap();
                let addr = listener.local_addr().unwrap();
                tx.send(addr).unwrap();

                loop {
                    let (stream, _) = listener.accept().await.unwrap();
                    let io = aioduct::runtime::tokio_rt::TokioIo::new(stream);
                    let count = count.clone();
                    tokio::spawn(async move {
                        let _ = server_http2::Builder::new(TokioExec)
                            .serve_connection(
                                io,
                                service_fn(move |_req| {
                                    let count = count.clone();
                                    async move {
                                        count.fetch_add(1, Ordering::SeqCst);
                                        Ok::<_, Infallible>(Response::new(Full::new(Bytes::from(
                                            "h2 mux",
                                        ))))
                                    }
                                }),
                            )
                            .await;
                    });
                }
            });
        });
        rx.recv().unwrap()
    };

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .build_local()
            .unwrap();

        for i in 0..5 {
            let resp = client
                .get_local(&format!("http://{addr}/req{i}"))
                .unwrap()
                .h2c_prior_knowledge()
                .send()
                .await
                .unwrap();
            assert_eq!(resp.status(), http::StatusCode::OK);
            assert_eq!(resp.text().await.unwrap(), "h2 mux");
        }

        assert_eq!(
            request_count.load(Ordering::SeqCst),
            5,
            "all 5 H2 requests via compio should succeed with connection reuse"
        );
    });
}

/// H1 deferred check-in: connections aren't reused until the body is consumed.
/// Sequential requests with consumed bodies should reuse a single connection.
#[test]
fn h1_deferred_checkin_reuses_connection() {
    use std::sync::Arc;
    use std::sync::atomic::{AtomicUsize, Ordering};

    let accept_count = Arc::new(AtomicUsize::new(0));
    let accept_count2 = accept_count.clone();

    let addr = start_server_with_tokio(move |_req| {
        let cnt = accept_count2.clone();
        async move {
            cnt.fetch_add(1, Ordering::SeqCst);
            Ok(Response::new(Full::new(Bytes::from("ok"))))
        }
    });

    compio_runtime::Runtime::new().unwrap().block_on(async {
        let client = HttpEngineLocal::<CompioRuntime, TcpConnector>::builder()
            .pool_idle_timeout(Duration::from_secs(60))
            .build_local()
            .unwrap();
        let url = format!("http://{addr}/");

        for _ in 0..5 {
            let resp = client.get_local(&url).unwrap().send().await.unwrap();
            assert_eq!(resp.status(), http::StatusCode::OK);
            let _ = resp.text().await.unwrap();
            // Wait for deferred check-in to complete.
            std::thread::sleep(Duration::from_millis(50));
        }
    });

    let requests = accept_count.load(Ordering::SeqCst);
    assert_eq!(requests, 5, "all 5 requests should succeed");
}