qubit-http 0.5.2

General-purpose HTTP infrastructure for Rust with unified client semantics, secure logging, and built-in SSE decoding
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
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/

use std::time::Duration;

use qubit_config::Config;
use qubit_http::{
    HttpClientFactory,
    HttpClientOptions,
    HttpConfigErrorKind,
    HttpErrorKind,
    ProxyType,
};

#[test]
fn test_factory_create_uses_default_options() {
    let factory = HttpClientFactory::new();
    let client = factory
        .create_default()
        .expect("default options should create client");

    assert!(!client.options().ipv4_only);
    assert!(!client.options().proxy.enabled);
    assert!(!client.options().use_env_proxy);
    assert_eq!(
        client.options().timeouts.request_timeout,
        HttpClientOptions::default().timeouts.request_timeout
    );
}

#[test]
fn test_factory_create_preserves_options() {
    let factory = HttpClientFactory::new();
    let mut options = HttpClientOptions::default();
    options.timeouts.request_timeout = Some(Duration::from_secs(2));
    options.user_agent = Some("qubit-http-tests/1.0".to_string());
    options.max_redirects = Some(5);
    options.pool_idle_timeout = Some(Duration::from_secs(20));
    options.pool_max_idle_per_host = Some(24);
    options.use_env_proxy = true;
    let client = factory
        .create(options)
        .expect("explicit options should create client");
    assert_eq!(
        client.options().timeouts.request_timeout,
        Some(Duration::from_secs(2))
    );
    assert_eq!(
        client.options().user_agent.as_deref(),
        Some("qubit-http-tests/1.0")
    );
    assert_eq!(client.options().max_redirects, Some(5));
    assert_eq!(
        client.options().pool_idle_timeout,
        Some(Duration::from_secs(20))
    );
    assert_eq!(client.options().pool_max_idle_per_host, Some(24));
    assert!(client.options().use_env_proxy);
}

#[test]
fn test_factory_proxy_enabled_without_host_returns_error() {
    let factory = HttpClientFactory::new();
    let mut options = HttpClientOptions::default();
    options.proxy.enabled = true;
    options.proxy.port = Some(8080);

    let error = factory.create(options).unwrap_err();
    assert_eq!(error.kind, HttpErrorKind::ProxyConfig);
    assert!(error.message.contains("host is missing"));
}

#[test]
fn test_factory_proxy_enabled_without_port_returns_error() {
    let factory = HttpClientFactory::new();
    let mut options = HttpClientOptions::default();
    options.proxy.enabled = true;
    options.proxy.host = Some("127.0.0.1".to_string());

    let error = factory.create(options).unwrap_err();
    assert_eq!(error.kind, HttpErrorKind::ProxyConfig);
    assert!(error.message.contains("port is missing"));
}

#[test]
fn test_factory_proxy_password_without_username_returns_error() {
    let factory = HttpClientFactory::new();
    let mut options = HttpClientOptions::default();
    options.proxy.enabled = true;
    options.proxy.proxy_type = ProxyType::Http;
    options.proxy.host = Some("127.0.0.1".to_string());
    options.proxy.port = Some(8080);
    options.proxy.password = Some("secret".to_string());

    let error = factory.create(options).unwrap_err();
    assert_eq!(error.kind, HttpErrorKind::ProxyConfig);
    assert!(error.message.contains("username is missing"));
}

#[test]
fn test_factory_proxy_with_auth_is_valid() {
    let factory = HttpClientFactory::new();
    let mut options = HttpClientOptions::default();
    options.proxy.enabled = true;
    options.proxy.proxy_type = ProxyType::Http;
    options.proxy.host = Some("127.0.0.1".to_string());
    options.proxy.port = Some(8080);
    options.proxy.username = Some("user".to_string());
    options.proxy.password = Some("pass".to_string());

    let client = factory
        .create(options)
        .expect("proxy with auth should still create client");
    assert!(!client.options().ipv4_only);
}

#[test]
fn test_factory_create_from_config_minimal() {
    let config = Config::new();
    let http = config.prefix_view("http");
    let factory = HttpClientFactory::new();
    let client = factory
        .create_from_config(&http)
        .expect("minimal config should create client");
    assert!(!client.options().ipv4_only);
}

#[test]
fn test_factory_create_from_config_with_base_url() {
    let mut config = Config::new();
    config
        .set("http.base_url", "https://api.example.com".to_string())
        .expect("test config should accept base_url");

    let factory = HttpClientFactory::new();
    let http = config.prefix_view("http");
    let client = factory
        .create_from_config(&http)
        .expect("valid config should create client");
    assert!(client.options().base_url.is_some());
}

#[test]
fn test_factory_create_from_config_scoped_reader() {
    let mut config = Config::new();
    config
        .set("http.base_url", "https://api.example.com".to_string())
        .expect("test config should accept base_url");

    let factory = HttpClientFactory::new();
    let http = config.prefix_view("http");
    let client = factory
        .create_from_config(&http)
        .expect("prefix view as ConfigReader should work");
    assert!(client.options().base_url.is_some());
}

#[test]
fn test_factory_create_from_config_root_reader_keeps_error_path() {
    let mut config = Config::new();
    config
        .set("proxy.enabled", true)
        .expect("test config should set proxy.enabled");
    config
        .set("proxy.port", 8080u16)
        .expect("test config should set proxy.port");

    let factory = HttpClientFactory::new();
    let err = factory
        .create_from_config(&config)
        .expect_err("missing proxy host should fail for root reader");
    assert_eq!(err.kind, HttpConfigErrorKind::MissingField);
    assert_eq!(err.path, "proxy.host");
}

#[test]
fn test_factory_create_from_config_proxy_validation_error() {
    let mut config = Config::new();
    config
        .set("http.proxy.enabled", true)
        .expect("test config should set proxy.enabled");

    let factory = HttpClientFactory::new();
    let http = config.prefix_view("http");
    let err = factory.create_from_config(&http).unwrap_err();
    assert_eq!(err.kind, HttpConfigErrorKind::MissingField);
    assert_eq!(err.path, "http.proxy.host");
}

#[test]
fn test_factory_create_from_config_root_reader_is_unchanged_when_type_error() {
    let mut config = Config::new();
    config
        .set("timeouts.connect_timeout", true)
        .expect("test config should set invalid value for connect_timeout");

    let factory = HttpClientFactory::new();
    let err = factory
        .create_from_config(&config)
        .expect_err("invalid connect_timeout type should fail");
    assert_eq!(err.kind, HttpConfigErrorKind::TypeError);
    assert_eq!(err.path, "timeouts.connect_timeout");
}

#[test]
fn test_factory_create_from_config_full() {
    let mut config = Config::new();
    config
        .set("svc.base_url", "https://svc.example.com".to_string())
        .expect("test config should set base_url");
    config
        .set("svc.ipv4_only", false)
        .expect("test config should set ipv4_only");
    config
        .set("svc.timeouts.connect_timeout", Duration::from_secs(3))
        .expect("test config should set connect_timeout");
    config
        .set("svc.timeouts.read_timeout", Duration::from_secs(30))
        .expect("test config should set read_timeout");
    config
        .set("svc.logging.enabled", true)
        .expect("test config should set logging.enabled");
    config
        .set("svc.logging.body_size_limit", 4096usize)
        .expect("test config should set logging.body_size_limit");
    config
        .set("svc.user_agent", "qubit-http-tests/1.0".to_string())
        .expect("test config should set user_agent");
    config
        .set("svc.max_redirects", 4_usize)
        .expect("test config should set max_redirects");
    config
        .set("svc.pool_idle_timeout", Duration::from_secs(10))
        .expect("test config should set pool_idle_timeout");
    config
        .set("svc.pool_max_idle_per_host", 16_usize)
        .expect("test config should set pool_max_idle_per_host");

    let factory = HttpClientFactory::new();
    let svc = config.prefix_view("svc");
    let client = factory
        .create_from_config(&svc)
        .expect("full config should create client");
    assert_eq!(
        client.options().timeouts.connect_timeout,
        Duration::from_secs(3)
    );
    assert_eq!(
        client.options().timeouts.read_timeout,
        Duration::from_secs(30)
    );
    assert_eq!(client.options().logging.body_size_limit, 4096);
    assert_eq!(
        client.options().user_agent.as_deref(),
        Some("qubit-http-tests/1.0")
    );
    assert_eq!(client.options().max_redirects, Some(4));
    assert_eq!(
        client.options().pool_idle_timeout,
        Some(Duration::from_secs(10))
    );
    assert_eq!(client.options().pool_max_idle_per_host, Some(16));
}

#[test]
fn test_factory_create_rejects_zero_proxy_port() {
    let mut options = HttpClientOptions::default();
    options.proxy.enabled = true;
    options.proxy.proxy_type = ProxyType::Http;
    options.proxy.host = Some("127.0.0.1".to_string());
    options.proxy.port = Some(0);

    let error = HttpClientFactory::new()
        .create(options)
        .expect_err("zero proxy port should fail");

    assert_eq!(error.kind, HttpErrorKind::ProxyConfig);
    assert!(error.message.contains("greater than 0"));
}

#[test]
fn test_factory_create_rejects_blank_proxy_host() {
    let mut options = HttpClientOptions::default();
    options.proxy.enabled = true;
    options.proxy.proxy_type = ProxyType::Http;
    options.proxy.host = Some("   ".to_string());
    options.proxy.port = Some(8080);

    let error = HttpClientFactory::new()
        .create(options)
        .expect_err("blank proxy host should fail");

    assert_eq!(error.kind, HttpErrorKind::ProxyConfig);
    assert!(error.message.contains("cannot be empty"));
}

#[test]
fn test_factory_create_rejects_zero_connect_timeout() {
    let mut options = HttpClientOptions::default();
    options.timeouts.connect_timeout = Duration::ZERO;

    let error = HttpClientFactory::new()
        .create(options)
        .expect_err("zero connect timeout should fail");

    assert_eq!(error.kind, HttpErrorKind::Other);
    assert!(error.message.contains("timeouts.connect_timeout"));
}

#[test]
fn test_factory_create_accepts_proxy_without_auth_and_request_timeout() {
    let mut options = HttpClientOptions::default();
    options.timeouts.request_timeout = Some(Duration::from_secs(2));
    options.proxy.enabled = true;
    options.proxy.proxy_type = ProxyType::Http;
    options.proxy.host = Some("127.0.0.1".to_string());
    options.proxy.port = Some(8080);

    let client = HttpClientFactory::new()
        .create(options)
        .expect("valid proxy config should create client");

    assert_eq!(
        client.options().timeouts.request_timeout,
        Some(Duration::from_secs(2))
    );
}

#[test]
fn test_factory_create_rejects_invalid_proxy_url() {
    let mut options = HttpClientOptions::default();
    options.proxy.enabled = true;
    options.proxy.proxy_type = ProxyType::Http;
    options.proxy.host = Some("bad host".to_string());
    options.proxy.port = Some(8080);

    let error = HttpClientFactory::new()
        .create(options)
        .expect_err("invalid proxy host should fail");

    assert_eq!(error.kind, HttpErrorKind::ProxyConfig);
    assert!(error.message.contains("Invalid proxy URL"));
}

#[test]
fn test_factory_create_rejects_invalid_logging_options() {
    let mut options = HttpClientOptions::default();
    options.logging.body_size_limit = 0;

    let error = HttpClientFactory::new()
        .create(options)
        .expect_err("invalid logging options should fail");

    assert_eq!(error.kind, HttpErrorKind::Other);
    assert!(error.message.contains("logging.body_size_limit"));
}

#[test]
fn test_factory_create_rejects_invalid_retry_options() {
    let mut options = HttpClientOptions::default();
    options.retry.max_attempts = 0;

    let error = HttpClientFactory::new()
        .create(options)
        .expect_err("invalid retry options should fail");

    assert_eq!(error.kind, HttpErrorKind::Other);
    assert!(error.message.contains("retry.max_attempts"));
}

#[test]
fn test_factory_create_rejects_blank_user_agent() {
    let mut options = HttpClientOptions::default();
    options.user_agent = Some("   ".to_string());

    let error = HttpClientFactory::new()
        .create(options)
        .expect_err("blank user_agent should fail");

    assert_eq!(error.kind, HttpErrorKind::Other);
    assert!(error.message.contains("user_agent"));
}

#[test]
fn test_factory_create_from_config_type_error_is_prefixed() {
    let mut config = Config::new();
    config
        .set("svc.timeouts.connect_timeout", true)
        .expect("test config should set invalid type");

    let error = HttpClientFactory::new()
        .create_from_config(&config.prefix_view("svc"))
        .expect_err("type mismatch should fail");

    assert_eq!(error.kind, HttpConfigErrorKind::TypeError);
    assert_eq!(error.path, "svc.timeouts.connect_timeout");
}

#[test]
fn test_factory_create_from_config_maps_create_error_to_invalid_value() {
    let mut config = Config::new();
    config
        .set("svc.proxy.enabled", true)
        .expect("test config should set proxy.enabled");
    config
        .set("svc.proxy.host", "bad host".to_string())
        .expect("test config should set proxy.host");
    config
        .set("svc.proxy.port", 8080u16)
        .expect("test config should set proxy.port");

    let error = HttpClientFactory::new()
        .create_from_config(&config.prefix_view("svc"))
        .expect_err("invalid proxy URL should map to invalid value");

    assert_eq!(error.kind, HttpConfigErrorKind::InvalidValue);
    assert_eq!(error.path, "svc");
    assert!(error.message.contains("Invalid proxy URL"));
}