liburlx 0.2.2

A memory-safe URL transfer library — idiomatic Rust reimplementation of libcurl
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
//! End-to-end workflow tests.
//!
//! Tests multi-step scenarios: redirect chains with cookies,
//! auth challenges, conditional requests, connection reuse,
//! and error recovery.

#![allow(
    clippy::unwrap_used,
    clippy::expect_used,
    unused_results,
    clippy::significant_drop_tightening
)]

mod common;

use std::sync::atomic::{AtomicU32, Ordering};
use std::sync::{Arc, Mutex};

use http_body_util::Full;
use hyper::body::Bytes;
use hyper::Response;

use common::TestServer;

// --- Redirect chain with cookie propagation ---

#[tokio::test]
async fn redirect_sets_cookie_then_sends_on_follow() {
    let server = TestServer::start(|req| {
        let path = req.uri().path().to_string();
        match path.as_str() {
            "/login" => Response::builder()
                .status(302)
                .header("Location", "/dashboard")
                .header("Set-Cookie", "session=abc123; Path=/")
                .body(Full::new(Bytes::new()))
                .unwrap(),
            "/dashboard" => {
                let has_cookie = req
                    .headers()
                    .get("cookie")
                    .and_then(|v| v.to_str().ok())
                    .is_some_and(|c| c.contains("session=abc123"));
                let body = if has_cookie { "welcome" } else { "no cookie" };
                Response::new(Full::new(Bytes::from(body)))
            }
            _ => Response::builder().status(404).body(Full::new(Bytes::from("not found"))).unwrap(),
        }
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/login")).unwrap();
    easy.follow_redirects(true);
    easy.cookie_jar(true);

    let resp = easy.perform_async().await.unwrap();
    assert_eq!(resp.status(), 200);
    assert_eq!(resp.body_str().unwrap(), "welcome");
    assert_eq!(resp.effective_url(), server.url("/dashboard"));
}

// --- Multi-hop redirect chain ---

#[tokio::test]
async fn three_hop_redirect_chain() {
    let server = TestServer::start(|req| match req.uri().path() {
        "/a" => Response::builder()
            .status(301)
            .header("Location", "/b")
            .header("Content-Length", "0")
            .body(Full::new(Bytes::new()))
            .unwrap(),
        "/b" => Response::builder()
            .status(302)
            .header("Location", "/c")
            .header("Content-Length", "0")
            .body(Full::new(Bytes::new()))
            .unwrap(),
        "/c" => Response::new(Full::new(Bytes::from("final destination"))),
        _ => Response::builder().status(404).body(Full::new(Bytes::from("not found"))).unwrap(),
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/a")).unwrap();
    easy.follow_redirects(true);

    let resp = easy.perform_async().await.unwrap();
    assert_eq!(resp.status(), 200);
    assert_eq!(resp.body_str().unwrap(), "final destination");
    assert_eq!(resp.effective_url(), server.url("/c"));
}

// --- Auth challenge flow ---

#[tokio::test]
async fn basic_auth_sent_on_first_request() {
    let server = TestServer::start(|req| {
        let auth = req.headers().get("authorization").and_then(|v| v.to_str().ok()).unwrap_or("");
        if auth.starts_with("Basic ") {
            Response::new(Full::new(Bytes::from("authenticated")))
        } else {
            Response::builder()
                .status(401)
                .header("WWW-Authenticate", "Basic realm=\"test\"")
                .body(Full::new(Bytes::from("unauthorized")))
                .unwrap()
        }
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/secret")).unwrap();
    easy.basic_auth("user", "pass");

    let resp = easy.perform_async().await.unwrap();
    assert_eq!(resp.status(), 200);
    assert_eq!(resp.body_str().unwrap(), "authenticated");
}

// --- Sequential requests reuse connection ---

#[tokio::test]
async fn sequential_requests_track_independently() {
    let counter = Arc::new(AtomicU32::new(0));
    let counter_clone = counter.clone();

    let server = TestServer::start(move |_req| {
        let n = counter_clone.fetch_add(1, Ordering::SeqCst);
        Response::new(Full::new(Bytes::from(format!("request-{n}"))))
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/")).unwrap();

    let resp1 = easy.perform_async().await.unwrap();
    assert_eq!(resp1.body_str().unwrap(), "request-0");

    let resp2 = easy.perform_async().await.unwrap();
    assert_eq!(resp2.body_str().unwrap(), "request-1");

    let resp3 = easy.perform_async().await.unwrap();
    assert_eq!(resp3.body_str().unwrap(), "request-2");

    assert_eq!(counter.load(Ordering::SeqCst), 3);
}

// --- POST with redirect changes to GET (303) ---

#[tokio::test]
async fn post_303_redirect_becomes_get() {
    let methods = Arc::new(Mutex::new(Vec::new()));
    let methods_clone = methods.clone();

    let server = TestServer::start(move |req| {
        let method = req.method().to_string();
        let path = req.uri().path().to_string();
        methods_clone.lock().unwrap().push(format!("{method} {path}"));

        match path.as_str() {
            "/submit" => Response::builder()
                .status(303)
                .header("Location", "/result")
                .header("Content-Length", "0")
                .body(Full::new(Bytes::new()))
                .unwrap(),
            "/result" => Response::new(Full::new(Bytes::from("done"))),
            _ => Response::builder().status(404).body(Full::new(Bytes::from("not found"))).unwrap(),
        }
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/submit")).unwrap();
    easy.method("POST");
    easy.body(b"data=value");
    easy.follow_redirects(true);

    let resp = easy.perform_async().await.unwrap();
    assert_eq!(resp.status(), 200);
    assert_eq!(resp.body_str().unwrap(), "done");

    let recorded = methods.lock().unwrap();
    assert_eq!(recorded[0], "POST /submit");
    assert_eq!(recorded[1], "GET /result");
}

// --- POST with 307 preserves method ---

#[tokio::test]
async fn post_307_redirect_preserves_method() {
    let methods = Arc::new(Mutex::new(Vec::new()));
    let methods_clone = methods.clone();

    let server = TestServer::start(move |req| {
        let method = req.method().to_string();
        let path = req.uri().path().to_string();
        methods_clone.lock().unwrap().push(format!("{method} {path}"));

        match path.as_str() {
            "/api/v1" => Response::builder()
                .status(307)
                .header("Location", "/api/v2")
                .header("Content-Length", "0")
                .body(Full::new(Bytes::new()))
                .unwrap(),
            "/api/v2" => Response::new(Full::new(Bytes::from("v2 response"))),
            _ => Response::builder().status(404).body(Full::new(Bytes::from("not found"))).unwrap(),
        }
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/api/v1")).unwrap();
    easy.method("POST");
    easy.body(b"payload");
    easy.follow_redirects(true);

    let resp = easy.perform_async().await.unwrap();
    assert_eq!(resp.status(), 200);

    let recorded = methods.lock().unwrap();
    assert_eq!(recorded[0], "POST /api/v1");
    assert_eq!(recorded[1], "POST /api/v2");
}

// --- Multiple cookies accumulated across requests ---

#[tokio::test]
async fn cookies_accumulate_across_requests() {
    let server = TestServer::start(|req| {
        let path = req.uri().path().to_string();
        match path.as_str() {
            "/set-a" => Response::builder()
                .status(200)
                .header("Set-Cookie", "a=1; Path=/")
                .body(Full::new(Bytes::from("set a")))
                .unwrap(),
            "/set-b" => Response::builder()
                .status(200)
                .header("Set-Cookie", "b=2; Path=/")
                .body(Full::new(Bytes::from("set b")))
                .unwrap(),
            "/check" => {
                let cookies = req
                    .headers()
                    .get("cookie")
                    .and_then(|v| v.to_str().ok())
                    .unwrap_or("")
                    .to_string();
                Response::new(Full::new(Bytes::from(cookies)))
            }
            _ => Response::builder().status(404).body(Full::new(Bytes::from("not found"))).unwrap(),
        }
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.cookie_jar(true);

    easy.url(&server.url("/set-a")).unwrap();
    easy.perform_async().await.unwrap();

    easy.url(&server.url("/set-b")).unwrap();
    easy.perform_async().await.unwrap();

    easy.url(&server.url("/check")).unwrap();
    let resp = easy.perform_async().await.unwrap();
    let body = resp.body_str().unwrap();
    assert!(body.contains("a=1"), "expected a=1 in '{body}'");
    assert!(body.contains("b=2"), "expected b=2 in '{body}'");
}

// --- Concurrent transfers with Multi ---

#[tokio::test]
async fn multi_concurrent_all_succeed() {
    let server = TestServer::start(|req| {
        let path = req.uri().path().to_string();
        Response::new(Full::new(Bytes::from(format!("response-for{path}"))))
    })
    .await;

    let mut multi = liburlx::Multi::new();
    for i in 0..5 {
        let mut easy = liburlx::Easy::new();
        easy.url(&server.url(&format!("/{i}"))).unwrap();
        multi.add(easy);
    }

    let results = multi.perform().await;
    assert_eq!(results.len(), 5);

    for (i, result) in results.iter().enumerate() {
        let resp = result.as_ref().unwrap();
        assert_eq!(resp.status(), 200);
        assert_eq!(resp.body_str().unwrap(), format!("response-for/{i}"));
    }
}

// --- HEAD request returns headers but no body ---

#[tokio::test]
async fn head_request_no_body() {
    let server = TestServer::start(|_req| {
        Response::builder()
            .status(200)
            .header("Content-Length", "1000")
            .header("X-Custom", "present")
            .body(Full::new(Bytes::new()))
            .unwrap()
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/")).unwrap();
    easy.method("HEAD");

    let resp = easy.perform_async().await.unwrap();
    assert_eq!(resp.status(), 200);
    assert!(resp.body().is_empty());
    assert_eq!(resp.header("x-custom"), Some("present"));
}

// --- Custom headers sent correctly ---

#[tokio::test]
async fn custom_headers_received_by_server() {
    let server = TestServer::start(|req| {
        let ua = req
            .headers()
            .get("user-agent")
            .and_then(|v| v.to_str().ok())
            .unwrap_or("none")
            .to_string();
        let accept =
            req.headers().get("accept").and_then(|v| v.to_str().ok()).unwrap_or("none").to_string();
        Response::new(Full::new(Bytes::from(format!("ua={ua};accept={accept}"))))
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/")).unwrap();
    easy.header("User-Agent", "urlx-test/1.0");
    easy.header("Accept", "application/json");

    let resp = easy.perform_async().await.unwrap();
    let body = resp.body_str().unwrap();
    assert!(body.contains("ua=urlx-test/1.0"), "got: {body}");
    assert!(body.contains("accept=application/json"), "got: {body}");
}

// --- fail_on_error with redirect to error page ---

#[tokio::test]
async fn fail_on_error_after_redirect_to_404() {
    let server = TestServer::start(|req| match req.uri().path() {
        "/start" => Response::builder()
            .status(302)
            .header("Location", "/missing")
            .header("Content-Length", "0")
            .body(Full::new(Bytes::new()))
            .unwrap(),
        _ => Response::builder().status(404).body(Full::new(Bytes::from("not found"))).unwrap(),
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/start")).unwrap();
    easy.follow_redirects(true);
    easy.fail_on_error(true);

    let result = easy.perform_async().await;
    assert!(result.is_err(), "should fail on 404 after redirect");
}

// --- Large body transfer integrity ---

#[tokio::test]
async fn large_body_integrity() {
    let size = 100_000;
    let server = TestServer::start(move |_req| {
        let body = vec![b'A'; size];
        Response::new(Full::new(Bytes::from(body)))
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/")).unwrap();

    let resp = easy.perform_async().await.unwrap();
    assert_eq!(resp.body().len(), size);
    assert!(resp.body().iter().all(|&b| b == b'A'));
    assert_eq!(resp.size_download(), size);
}

// --- Transfer info populated ---

#[tokio::test]
async fn transfer_info_populated_after_request() {
    let server = TestServer::start(|_req| Response::new(Full::new(Bytes::from("data")))).await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/")).unwrap();

    let resp = easy.perform_async().await.unwrap();
    assert_eq!(resp.status(), 200);
    // Transfer info should have timing data
    let debug = format!("{resp:?}");
    assert!(debug.contains("time_total"), "transfer info missing: {debug}");
}

// --- Empty response body ---

#[tokio::test]
async fn empty_response_body() {
    let server = TestServer::start(|_req| {
        Response::builder()
            .status(200)
            .header("Content-Length", "0")
            .body(Full::new(Bytes::new()))
            .unwrap()
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/")).unwrap();

    let resp = easy.perform_async().await.unwrap();
    assert_eq!(resp.status(), 200);
    assert!(resp.body().is_empty());
    assert_eq!(resp.size_download(), 0);
}

// --- Multiple perform calls with different URLs ---

#[tokio::test]
async fn reuse_handle_different_urls() {
    let server = TestServer::start(|req| {
        let path = req.uri().path().to_string();
        Response::new(Full::new(Bytes::from(path)))
    })
    .await;

    let mut easy = liburlx::Easy::new();

    easy.url(&server.url("/first")).unwrap();
    let resp1 = easy.perform_async().await.unwrap();
    assert_eq!(resp1.body_str().unwrap(), "/first");

    easy.url(&server.url("/second")).unwrap();
    let resp2 = easy.perform_async().await.unwrap();
    assert_eq!(resp2.body_str().unwrap(), "/second");
}

// --- Bearer token auth ---

#[tokio::test]
async fn bearer_token_sent_in_header() {
    let server = TestServer::start(|req| {
        let auth = req
            .headers()
            .get("authorization")
            .and_then(|v| v.to_str().ok())
            .unwrap_or("")
            .to_string();
        Response::new(Full::new(Bytes::from(auth)))
    })
    .await;

    let mut easy = liburlx::Easy::new();
    easy.url(&server.url("/")).unwrap();
    easy.bearer_token("my-secret-token");

    let resp = easy.perform_async().await.unwrap();
    assert_eq!(resp.body_str().unwrap(), "Bearer my-secret-token");
}