autumn-web 0.6.0

An opinionated, convention-over-configuration web framework for Rust
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
//! HTTP `Range` request support (RFC 7233) for in-memory and streamed bodies.
//!
//! This is the reusable core behind [`Download`](crate::download::Download)'s
//! ranged responses and the embedded static-asset path. It parses a single
//! `Range: bytes=…` header against a known total size and resolves it to a
//! byte interval, an "ignore the range" signal, or a "not satisfiable" signal —
//! then builds the matching `206 Partial Content` / `200 OK` / `416 Range Not
//! Satisfiable` response.
//!
//! # What it handles
//!
//! - `bytes=N-` — from byte `N` to the end.
//! - `bytes=N-M` — inclusive `[N, M]` (M clamped to `total-1`).
//! - `bytes=-N` — the final `N` bytes (a *suffix* range; `N` clamped to `total`).
//! - **Multi-range** (`bytes=0-50,100-150`): collapsed deterministically to the
//!   **first satisfiable** range and served as a single-range `206`. A true
//!   `multipart/byteranges` body is intentionally not emitted — the collapse
//!   guarantees a well-formed single-range response rather than a malformed
//!   multi-part one. See [`resolve`].
//! - **`If-Range`** (RFC 7233 §3.2): a strong entity-tag or an HTTP-date
//!   validator. When the client's validator is stale (or absent), the `Range`
//!   is ignored and the full `200` is served.
//!
//! Invalid or unparseable ranges are ignored (RFC 7233 §3.1: serve the whole
//! representation with `200`), never rejected.
//!
//! # Seekable video from a stored blob (AC #8)
//!
//! ```ignore
//! use autumn_web::download::Download;
//! use autumn_web::storage::SharedBlobStore;
//! use autumn_web::{secured, AutumnError};
//! use http::HeaderMap;
//!
//! // A browser `<video>` element issues `Range` requests to seek. Returning
//! // the download through `into_response_ranged` makes the stream seekable:
//! // the store is asked for only the requested byte slice.
//! #[secured(policy = "media.watch")]
//! async fn watch(
//!     store: SharedBlobStore,
//!     key: String,
//!     headers: HeaderMap,
//! ) -> Result<axum::response::Response, AutumnError> {
//!     Ok(Download::from_blob(&store, key)
//!         .await?
//!         .content_type("video/mp4")
//!         .inline()
//!         .into_response_ranged(&headers)
//!         .await)
//! }
//! ```

use axum::body::Body;
use axum::response::Response;
use bytes::Bytes;
use http::header::{ACCEPT_RANGES, CONTENT_LENGTH, CONTENT_RANGE, IF_RANGE, RANGE};
use http::{HeaderMap, HeaderValue, StatusCode};

use crate::etag::ETag;

/// The resolved outcome of a `Range` request against a known total size.
///
/// `start` and `end` are **inclusive** byte offsets, matching the HTTP
/// `Content-Range` convention.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RangeResolution {
    /// Serve the whole representation with `200 OK`. Produced when there is no
    /// (valid) `Range` header, the range unit is not `bytes`, the range cannot
    /// be parsed, or an `If-Range` validator did not match.
    Full,
    /// Serve the inclusive byte interval `[start, end]` with `206 Partial
    /// Content`.
    Partial {
        /// First byte offset (inclusive).
        start: u64,
        /// Last byte offset (inclusive).
        end: u64,
        /// Total size of the full representation.
        total: u64,
    },
    /// The requested range cannot be satisfied (start past EOF, empty suffix,
    /// or an empty representation). Serve `416 Range Not Satisfiable` with
    /// `Content-Range: bytes */total`.
    Unsatisfiable {
        /// Total size of the full representation.
        total: u64,
    },
}

/// The current validators for an `If-Range` conditional range request.
///
/// Carries the resource's current **strong** [`ETag`] and/or its
/// `Last-Modified` HTTP-date string. When a request includes `If-Range`, the
/// range is honoured only if the client's validator still matches; otherwise
/// the full representation is returned (see [`resolve`]).
#[derive(Debug, Clone, Copy, Default)]
pub struct Validator<'a> {
    /// The resource's current strong entity-tag, if any.
    etag: Option<&'a ETag>,
    /// The resource's current `Last-Modified` value as an HTTP-date string.
    last_modified: Option<&'a str>,
}

impl<'a> Validator<'a> {
    /// An empty validator (matches nothing — any `If-Range` falls back to `200`).
    #[must_use]
    pub const fn new() -> Self {
        Self {
            etag: None,
            last_modified: None,
        }
    }

    /// Attach the resource's current strong [`ETag`].
    #[must_use]
    pub const fn with_etag(mut self, etag: &'a ETag) -> Self {
        self.etag = Some(etag);
        self
    }

    /// Attach the resource's current `Last-Modified` HTTP-date string.
    #[must_use]
    pub const fn with_last_modified(mut self, last_modified: &'a str) -> Self {
        self.last_modified = Some(last_modified);
        self
    }
}

/// Resolve a request's `Range` header against a `total` byte size.
///
/// Returns a [`RangeResolution`]:
///
/// - No `Range` header, a non-`bytes` unit, or an unparseable value → [`Full`]
///   (RFC 7233 §3.1: ignore an invalid range, serve `200`).
/// - An `If-Range` header whose validator is stale or unmatched → [`Full`].
/// - A satisfiable range → [`Partial`], carrying the inclusive `[start, end]`.
/// - A syntactically valid but unsatisfiable range (start ≥ `total`, a zero
///   suffix, or `total == 0`) → [`Unsatisfiable`].
///
/// # Multi-range collapse
///
/// A multi-range request (`bytes=0-50,100-150`) is collapsed to the **first
/// satisfiable** sub-range and served as a single-range `206`. This is
/// deterministic and always well-formed; a `multipart/byteranges` body is
/// deliberately not produced.
///
/// [`Full`]: RangeResolution::Full
/// [`Partial`]: RangeResolution::Partial
/// [`Unsatisfiable`]: RangeResolution::Unsatisfiable
#[must_use]
pub fn resolve(
    req_headers: &HeaderMap,
    total: u64,
    validator: Option<Validator<'_>>,
) -> RangeResolution {
    let Some(range_value) = req_headers.get(RANGE) else {
        return RangeResolution::Full;
    };
    let Ok(range_str) = range_value.to_str() else {
        return RangeResolution::Full;
    };

    // RFC 7233 §3.2: an unmatched (or absent-validator) `If-Range` means the
    // client's cached copy is stale, so the `Range` MUST be ignored and the
    // full representation returned.
    if let Some(if_range) = req_headers.get(IF_RANGE).and_then(|v| v.to_str().ok())
        && !if_range_matches(if_range, validator.as_ref())
    {
        return RangeResolution::Full;
    }

    parse_range(range_str, total)
}

/// Outcome of parsing a single byte-range spec.
enum SpecOutcome {
    /// Syntactically invalid — ignore this spec (RFC 7233 §3.1).
    Invalid,
    /// A satisfiable inclusive interval.
    Satisfiable { start: u64, end: u64 },
    /// Syntactically valid but not satisfiable against the total size.
    Unsatisfiable,
}

/// Parse a `bytes=…` header value, applying the single-range collapse.
fn parse_range(range_str: &str, total: u64) -> RangeResolution {
    let Some(rest) = range_str.trim().strip_prefix("bytes=") else {
        // Non-`bytes` unit or malformed prefix → ignore, serve full.
        return RangeResolution::Full;
    };

    let mut saw_unsatisfiable = false;

    for spec in rest.split(',') {
        let spec = spec.trim();
        if spec.is_empty() {
            continue;
        }
        match parse_single_spec(spec, total) {
            SpecOutcome::Invalid => {}
            SpecOutcome::Satisfiable { start, end } => {
                // First satisfiable range wins (single-range collapse).
                return RangeResolution::Partial { start, end, total };
            }
            SpecOutcome::Unsatisfiable => {
                saw_unsatisfiable = true;
            }
        }
    }

    if saw_unsatisfiable {
        RangeResolution::Unsatisfiable { total }
    } else {
        // No syntactically valid range at all → ignore, serve full.
        RangeResolution::Full
    }
}

/// Parse one byte-range spec (`N-`, `N-M`, or `-N`) against `total`.
fn parse_single_spec(spec: &str, total: u64) -> SpecOutcome {
    // Suffix form: `-N` → the final N bytes.
    if let Some(suffix) = spec.strip_prefix('-') {
        let Ok(n) = suffix.trim().parse::<u64>() else {
            return SpecOutcome::Invalid;
        };
        if n == 0 || total == 0 {
            // A zero-length suffix (or empty representation) is unsatisfiable.
            return SpecOutcome::Unsatisfiable;
        }
        // Clamp N ≤ total → start at 0.
        let start = total.saturating_sub(n);
        return SpecOutcome::Satisfiable {
            start,
            end: total - 1,
        };
    }

    let Some((start_s, end_s)) = spec.split_once('-') else {
        return SpecOutcome::Invalid;
    };
    let Ok(start) = start_s.trim().parse::<u64>() else {
        return SpecOutcome::Invalid;
    };

    // `N-` → from N to the end.
    if end_s.trim().is_empty() {
        if total == 0 || start >= total {
            return SpecOutcome::Unsatisfiable;
        }
        return SpecOutcome::Satisfiable {
            start,
            end: total - 1,
        };
    }

    // `N-M` → inclusive [N, min(M, total-1)].
    let Ok(end) = end_s.trim().parse::<u64>() else {
        return SpecOutcome::Invalid;
    };
    if start > end {
        // Backwards range (`5-2`) is invalid — ignore this spec.
        return SpecOutcome::Invalid;
    }
    if total == 0 || start >= total {
        return SpecOutcome::Unsatisfiable;
    }
    SpecOutcome::Satisfiable {
        start,
        end: end.min(total - 1),
    }
}

/// Whether a client `If-Range` validator still matches the current resource.
///
/// `If-Range` may be a strong entity-tag or an HTTP-date. A weak entity-tag can
/// never match (RFC 7233 §3.2 forbids weak validators here). A missing
/// validator never matches.
fn if_range_matches(if_range: &str, validator: Option<&Validator<'_>>) -> bool {
    let Some(validator) = validator else {
        return false;
    };
    let trimmed = if_range.trim();

    // Entity-tag form starts with a quote or the weak prefix.
    if trimmed.starts_with('"') || trimmed.starts_with("W/") {
        // Weak validators are not usable for `If-Range`.
        if trimmed.starts_with("W/") {
            return false;
        }
        let Some(etag) = validator.etag else {
            return false;
        };
        if etag.is_weak() {
            return false;
        }
        trimmed.trim_matches('"') == etag.tag()
    } else {
        // HTTP-date form: must equal the current `Last-Modified` exactly.
        // Clients echo the value verbatim, so a byte comparison is correct and
        // avoids a second date-parsing dependency.
        validator
            .last_modified
            .is_some_and(|lm| lm.trim() == trimmed)
    }
}

// ── Response builders ───────────────────────────────────────────────────────

/// Slice the inclusive byte interval `[start, end]` out of `full`.
///
/// `start`/`end` are `u64` offsets that were validated against the total size;
/// this clamps defensively (and via `try_from`, not `as`, so it never truncates
/// on a 32-bit target) so a bad caller can never panic on slice bounds.
fn slice_inclusive(full: &Bytes, start: u64, end: u64) -> Bytes {
    if full.is_empty() {
        return Bytes::new();
    }
    let last = full.len() - 1;
    let lo = usize::try_from(start).unwrap_or(usize::MAX).min(last);
    let hi = usize::try_from(end).unwrap_or(usize::MAX).min(last);
    if lo > hi {
        return Bytes::new();
    }
    full.slice(lo..=hi)
}

/// Build the in-memory response for a resolved range over `full` bytes.
///
/// - [`Full`](RangeResolution::Full) → `200 OK`, the whole body,
///   `Accept-Ranges: bytes`, `Content-Length` = `full.len()`.
/// - [`Partial`](RangeResolution::Partial) → `206 Partial Content`, the sliced
///   body, `Accept-Ranges: bytes`, `Content-Range: bytes start-end/total`,
///   `Content-Length` = slice length.
/// - [`Unsatisfiable`](RangeResolution::Unsatisfiable) → `416 Range Not
///   Satisfiable`, empty body, `Content-Range: bytes */total`.
///
/// The caller layers `Content-Type` / `Content-Disposition` on top.
#[must_use]
pub fn partial_bytes_response(resolution: &RangeResolution, full: Bytes) -> Response<Body> {
    match *resolution {
        RangeResolution::Full => {
            let len = full.len();
            let mut response = Response::new(Body::from(full));
            set_accept_ranges(response.headers_mut());
            response
                .headers_mut()
                .insert(CONTENT_LENGTH, HeaderValue::from(len));
            response
        }
        RangeResolution::Partial { start, end, total } => {
            let slice = slice_inclusive(&full, start, end);
            let len = slice.len();
            let mut response = Response::new(Body::from(slice));
            *response.status_mut() = StatusCode::PARTIAL_CONTENT;
            let headers = response.headers_mut();
            set_accept_ranges(headers);
            if let Ok(v) = HeaderValue::from_str(&content_range_value(start, end, total)) {
                headers.insert(CONTENT_RANGE, v);
            }
            headers.insert(CONTENT_LENGTH, HeaderValue::from(len));
            response
        }
        RangeResolution::Unsatisfiable { total } => {
            let mut response = Response::new(Body::empty());
            *response.status_mut() = StatusCode::RANGE_NOT_SATISFIABLE;
            let headers = response.headers_mut();
            set_accept_ranges(headers);
            if let Ok(v) = HeaderValue::from_str(&unsatisfied_content_range(total)) {
                headers.insert(CONTENT_RANGE, v);
            }
            headers.insert(CONTENT_LENGTH, HeaderValue::from(0));
            response
        }
    }
}

/// Format a `Content-Range: bytes start-end/total` value (`start`/`end`
/// inclusive).
#[must_use]
pub fn content_range_value(start: u64, end: u64, total: u64) -> String {
    format!("bytes {start}-{end}/{total}")
}

/// Format an unsatisfied `Content-Range: bytes */total` value for a `416`.
#[must_use]
pub fn unsatisfied_content_range(total: u64) -> String {
    format!("bytes */{total}")
}

/// Set `Accept-Ranges: bytes` on a header map, advertising range support.
pub fn set_accept_ranges(headers: &mut HeaderMap) {
    headers.insert(ACCEPT_RANGES, HeaderValue::from_static("bytes"));
}

#[cfg(test)]
mod tests {
    use super::*;

    fn headers_with_range(value: &str) -> HeaderMap {
        let mut h = HeaderMap::new();
        h.insert(RANGE, HeaderValue::from_str(value).unwrap());
        h
    }

    // ── parser table ────────────────────────────────────────────────────────

    #[test]
    fn no_range_header_is_full() {
        assert_eq!(resolve(&HeaderMap::new(), 10, None), RangeResolution::Full);
    }

    #[test]
    fn simple_closed_range() {
        assert_eq!(
            resolve(&headers_with_range("bytes=0-3"), 10, None),
            RangeResolution::Partial {
                start: 0,
                end: 3,
                total: 10
            }
        );
    }

    #[test]
    fn open_ended_range_extends_to_eof() {
        assert_eq!(
            resolve(&headers_with_range("bytes=5-"), 10, None),
            RangeResolution::Partial {
                start: 5,
                end: 9,
                total: 10
            }
        );
    }

    #[test]
    fn suffix_range_takes_last_n_bytes() {
        assert_eq!(
            resolve(&headers_with_range("bytes=-4"), 10, None),
            RangeResolution::Partial {
                start: 6,
                end: 9,
                total: 10
            }
        );
    }

    #[test]
    fn suffix_range_clamps_when_larger_than_total() {
        assert_eq!(
            resolve(&headers_with_range("bytes=-100"), 10, None),
            RangeResolution::Partial {
                start: 0,
                end: 9,
                total: 10
            }
        );
    }

    #[test]
    fn closed_end_is_clamped_to_last_byte() {
        assert_eq!(
            resolve(&headers_with_range("bytes=2-999"), 10, None),
            RangeResolution::Partial {
                start: 2,
                end: 9,
                total: 10
            }
        );
    }

    #[test]
    fn multi_range_collapses_to_first_satisfiable() {
        assert_eq!(
            resolve(&headers_with_range("bytes=0-3,5-7"), 10, None),
            RangeResolution::Partial {
                start: 0,
                end: 3,
                total: 10
            }
        );
    }

    #[test]
    fn multi_range_skips_leading_unsatisfiable() {
        // First spec is past EOF; the collapse picks the next satisfiable one.
        assert_eq!(
            resolve(&headers_with_range("bytes=100-200,2-4"), 10, None),
            RangeResolution::Partial {
                start: 2,
                end: 4,
                total: 10
            }
        );
    }

    #[test]
    fn start_beyond_eof_is_unsatisfiable() {
        assert_eq!(
            resolve(&headers_with_range("bytes=100-"), 10, None),
            RangeResolution::Unsatisfiable { total: 10 }
        );
    }

    #[test]
    fn non_numeric_range_is_full() {
        assert_eq!(
            resolve(&headers_with_range("bytes=abc"), 10, None),
            RangeResolution::Full
        );
    }

    #[test]
    fn backwards_range_is_full() {
        assert_eq!(
            resolve(&headers_with_range("bytes=5-2"), 10, None),
            RangeResolution::Full
        );
    }

    #[test]
    fn non_bytes_unit_is_full() {
        assert_eq!(
            resolve(&headers_with_range("items=0-3"), 10, None),
            RangeResolution::Full
        );
    }

    #[test]
    fn zero_total_range_is_unsatisfiable() {
        assert_eq!(
            resolve(&headers_with_range("bytes=0-3"), 0, None),
            RangeResolution::Unsatisfiable { total: 0 }
        );
    }

    #[test]
    fn zero_suffix_is_unsatisfiable() {
        assert_eq!(
            resolve(&headers_with_range("bytes=-0"), 10, None),
            RangeResolution::Unsatisfiable { total: 10 }
        );
    }

    // ── If-Range ──────────────────────────────────────────────────────────────

    #[test]
    fn if_range_matching_etag_honours_range() {
        let etag = ETag::strong("v1");
        let mut h = headers_with_range("bytes=0-3");
        h.insert(IF_RANGE, etag.header_value());
        let validator = Validator::new().with_etag(&etag);
        assert_eq!(
            resolve(&h, 10, Some(validator)),
            RangeResolution::Partial {
                start: 0,
                end: 3,
                total: 10
            }
        );
    }

    #[test]
    fn if_range_stale_etag_falls_back_to_full() {
        let current = ETag::strong("v2");
        let mut h = headers_with_range("bytes=0-3");
        h.insert(IF_RANGE, HeaderValue::from_static("\"v1\""));
        let validator = Validator::new().with_etag(&current);
        assert_eq!(resolve(&h, 10, Some(validator)), RangeResolution::Full);
    }

    #[test]
    fn if_range_weak_etag_never_matches() {
        let weak = ETag::weak("v1");
        let mut h = headers_with_range("bytes=0-3");
        h.insert(IF_RANGE, HeaderValue::from_static("W/\"v1\""));
        let validator = Validator::new().with_etag(&weak);
        assert_eq!(resolve(&h, 10, Some(validator)), RangeResolution::Full);
    }

    #[test]
    fn if_range_matching_last_modified_honours_range() {
        let lm = "Wed, 21 Oct 2015 07:28:00 GMT";
        let mut h = headers_with_range("bytes=0-3");
        h.insert(
            IF_RANGE,
            HeaderValue::from_static("Wed, 21 Oct 2015 07:28:00 GMT"),
        );
        let validator = Validator::new().with_last_modified(lm);
        assert_eq!(
            resolve(&h, 10, Some(validator)),
            RangeResolution::Partial {
                start: 0,
                end: 3,
                total: 10
            }
        );
    }

    #[test]
    fn if_range_stale_last_modified_falls_back_to_full() {
        let lm = "Wed, 21 Oct 2015 07:28:00 GMT";
        let mut h = headers_with_range("bytes=0-3");
        h.insert(
            IF_RANGE,
            HeaderValue::from_static("Tue, 20 Oct 2015 00:00:00 GMT"),
        );
        let validator = Validator::new().with_last_modified(lm);
        assert_eq!(resolve(&h, 10, Some(validator)), RangeResolution::Full);
    }

    #[test]
    fn if_range_without_validator_falls_back_to_full() {
        let mut h = headers_with_range("bytes=0-3");
        h.insert(IF_RANGE, HeaderValue::from_static("\"v1\""));
        assert_eq!(resolve(&h, 10, None), RangeResolution::Full);
    }

    // ── response builders ─────────────────────────────────────────────────────

    #[tokio::test]
    async fn partial_response_slices_body_and_sets_headers() {
        use http_body_util::BodyExt as _;

        let full = Bytes::from_static(b"0123456789");
        let resolution = RangeResolution::Partial {
            start: 2,
            end: 5,
            total: 10,
        };
        let resp = partial_bytes_response(&resolution, full);
        assert_eq!(resp.status(), StatusCode::PARTIAL_CONTENT);
        assert_eq!(resp.headers().get(CONTENT_RANGE).unwrap(), "bytes 2-5/10");
        assert_eq!(resp.headers().get(CONTENT_LENGTH).unwrap(), "4");
        assert_eq!(resp.headers().get(ACCEPT_RANGES).unwrap(), "bytes");
        let body = resp.into_body().collect().await.unwrap().to_bytes();
        assert_eq!(&body[..], b"2345");
    }

    #[tokio::test]
    async fn full_response_sets_accept_ranges_and_length() {
        let full = Bytes::from_static(b"0123456789");
        let resp = partial_bytes_response(&RangeResolution::Full, full);
        assert_eq!(resp.status(), StatusCode::OK);
        assert_eq!(resp.headers().get(ACCEPT_RANGES).unwrap(), "bytes");
        assert_eq!(resp.headers().get(CONTENT_LENGTH).unwrap(), "10");
    }

    #[tokio::test]
    async fn unsatisfiable_response_is_416_with_star_content_range() {
        let full = Bytes::from_static(b"0123456789");
        let resp = partial_bytes_response(&RangeResolution::Unsatisfiable { total: 10 }, full);
        assert_eq!(resp.status(), StatusCode::RANGE_NOT_SATISFIABLE);
        assert_eq!(resp.headers().get(CONTENT_RANGE).unwrap(), "bytes */10");
    }

    #[test]
    fn content_range_helpers_format_correctly() {
        assert_eq!(content_range_value(0, 3, 10), "bytes 0-3/10");
        assert_eq!(unsatisfied_content_range(10), "bytes */10");
    }
}