volo-http 0.5.5

HTTP framework implementation of volo.
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
//! Traits and types for extracting data from [`ServerContext`] and [`Request`]
//!
//! See [`FromContext`] and [`FromRequest`] for more details.

use std::{convert::Infallible, fmt, marker::PhantomData};

use bytes::Bytes;
use faststr::FastStr;
use futures_util::Future;
use http::{
    header::{self, HeaderMap, HeaderName},
    method::Method,
    request::Parts,
    status::StatusCode,
    uri::{Scheme, Uri},
};
use http_body::Body;
use http_body_util::BodyExt;
use volo::{context::Context, net::Address};

use super::IntoResponse;
use crate::{
    context::ServerContext,
    error::server::{ExtractBodyError, body_collection_error},
    request::{Request, RequestPartsExt},
    server::utils::client_ip::ClientIp,
    utils::macros::impl_deref_and_deref_mut,
};

mod private {
    #[derive(Debug, Clone, Copy)]
    pub enum ViaContext {}

    #[derive(Debug, Clone, Copy)]
    pub enum ViaRequest {}
}

/// Extract a type from context ([`ServerContext`] and [`Parts`])
///
/// This trait is used for handlers, which can extract something from [`ServerContext`] and
/// [`Request`].
///
/// [`FromContext`] only borrows [`ServerContext`] and [`Parts`]. If your extractor needs to
/// consume [`Parts`] or the whole [`Request`], please use [`FromRequest`] instead.
pub trait FromContext: Sized {
    /// If the extractor fails, it will return this `Rejection` type.
    ///
    /// The `Rejection` should implement [`IntoResponse`]. If extractor fails in handler, the
    /// rejection will be converted into a [`Response`](crate::response::Response) and
    /// returned.
    type Rejection: IntoResponse;

    /// Extract the type from context.
    fn from_context(
        cx: &mut ServerContext,
        parts: &mut Parts,
    ) -> impl Future<Output = Result<Self, Self::Rejection>> + Send;
}

/// Extract a type from [`Request`] with its [`ServerContext`]
///
/// This trait is used for handlers, which can extract something from [`ServerContext`] and
/// [`Request`].
///
/// [`FromRequest`] will consume [`Request`], so it can only be used once in a handler. If
/// your extractor does not need to consume [`Request`], please use [`FromContext`] instead.
pub trait FromRequest<B = crate::body::Body, M = private::ViaRequest>: Sized {
    /// If the extractor fails, it will return this `Rejection` type.
    ///
    /// The `Rejection` should implement [`IntoResponse`]. If extractor fails in handler, the
    /// rejection will be converted into a [`Response`](crate::response::Response) and
    /// returned.
    type Rejection: IntoResponse;

    /// Extract the type from request.
    fn from_request(
        cx: &mut ServerContext,
        parts: Parts,
        body: B,
    ) -> impl Future<Output = Result<Self, Self::Rejection>> + Send;
}

/// Extract a type from query in uri.
///
/// Note that the type must implement [`Deserialize`](serde::Deserialize).
#[cfg(feature = "query")]
#[derive(Debug, Default, Clone, Copy)]
pub struct Query<T>(pub T);

/// Extract a type from a urlencoded body.
///
/// Note that the type must implement [`Deserialize`](serde::Deserialize).
#[cfg(feature = "form")]
#[derive(Debug, Default, Clone, Copy)]
pub struct Form<T>(pub T);

/// A wrapper that can extract a type from a json body or convert a type to json response.
///
/// # Examples
///
/// Use [`Json`] as parameter:
///
/// ```
/// use serde::Deserialize;
/// use volo_http::server::{
///     extract::Json,
///     route::{Router, post},
/// };
///
/// #[derive(Debug, Deserialize)]
/// struct User {
///     username: String,
///     password: String,
/// }
///
/// async fn login(Json(user): Json<User>) {
///     println!("user: {user:?}");
/// }
///
/// let router: Router = Router::new().route("/api/v2/login", post(login));
/// ```
///
/// User [`Json`] as response:
///
/// ```
/// use serde::Serialize;
/// use volo_http::server::{
///     extract::Json,
///     route::{Router, get},
/// };
///
/// #[derive(Debug, Serialize)]
/// struct User {
///     username: String,
///     password: String,
/// }
///
/// async fn user_info() -> Json<User> {
///     let user = User {
///         username: String::from("admin"),
///         password: String::from("passw0rd"),
///     };
///     Json(user)
/// }
///
/// let router: Router = Router::new().route("/api/v2/info", get(user_info));
/// ```
#[cfg(feature = "json")]
#[derive(Debug, Default, Clone, Copy)]
pub struct Json<T>(pub T);

/// Extract a [`String`] or [`FastStr`] without checking.
///
/// This type can extract a [`String`] or [`FastStr`] like [`String::from_utf8_unchecked`] or
/// [`FastStr::from_vec_u8_unchecked`]. Note that extracting them is unsafe and users should assume
/// that the value is valid.
#[derive(Debug, Default, Clone)]
pub struct MaybeInvalid<T>(Vec<u8>, PhantomData<T>);

impl MaybeInvalid<String> {
    /// Assume the [`String`] is valid and extract it without checking.
    ///
    /// # Safety
    ///
    /// It is up to the caller to guarantee that the value really is valid. Using this when the
    /// content is invalid causes immediate undefined behavior.
    pub unsafe fn assume_valid(self) -> String {
        unsafe { String::from_utf8_unchecked(self.0) }
    }
}

impl MaybeInvalid<FastStr> {
    /// Assume the [`FastStr`] is valid and extract it without checking.
    ///
    /// # Safety
    ///
    /// It is up to the caller to guarantee that the value really is valid. Using this when the
    /// content is invalid causes immediate undefined behavior.
    pub unsafe fn assume_valid(self) -> FastStr {
        unsafe { FastStr::from_vec_u8_unchecked(self.0) }
    }
}

impl<T> FromContext for Option<T>
where
    T: FromContext,
{
    type Rejection = Infallible;

    async fn from_context(
        cx: &mut ServerContext,
        parts: &mut Parts,
    ) -> Result<Self, Self::Rejection> {
        Ok(T::from_context(cx, parts).await.ok())
    }
}

impl<T> FromContext for Result<T, T::Rejection>
where
    T: FromContext,
{
    type Rejection = Infallible;

    async fn from_context(
        cx: &mut ServerContext,
        parts: &mut Parts,
    ) -> Result<Self, Self::Rejection> {
        Ok(T::from_context(cx, parts).await)
    }
}

impl FromContext for Address {
    type Rejection = Infallible;

    async fn from_context(
        cx: &mut ServerContext,
        _parts: &mut Parts,
    ) -> Result<Address, Self::Rejection> {
        Ok(cx
            .rpc_info()
            .caller()
            .address()
            .expect("server context does not have caller address"))
    }
}

impl FromContext for Uri {
    type Rejection = Infallible;

    async fn from_context(
        _cx: &mut ServerContext,
        parts: &mut Parts,
    ) -> Result<Uri, Self::Rejection> {
        Ok(parts.uri.to_owned())
    }
}

/// Full uri including scheme, host, path and query.
#[derive(Debug)]
pub struct FullUri(Uri);

impl_deref_and_deref_mut!(FullUri, Uri, 0);

impl fmt::Display for FullUri {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}

impl FromContext for FullUri {
    type Rejection = http::Error;

    async fn from_context(
        cx: &mut ServerContext,
        parts: &mut Parts,
    ) -> Result<Self, Self::Rejection> {
        let scheme = if is_tls(cx) {
            Scheme::HTTPS
        } else {
            Scheme::HTTP
        };
        Uri::builder()
            .scheme(scheme)
            .authority(parts.host().map(ToOwned::to_owned).unwrap_or_default())
            .path_and_query(
                parts
                    .uri
                    .path_and_query()
                    .map(ToString::to_string)
                    .unwrap_or(String::from("/")),
            )
            .build()
            .map(FullUri)
    }
}

impl IntoResponse for http::Error {
    fn into_response(self) -> crate::response::Response {
        StatusCode::INTERNAL_SERVER_ERROR.into_response()
    }
}

impl FromContext for Method {
    type Rejection = Infallible;

    async fn from_context(
        _cx: &mut ServerContext,
        parts: &mut Parts,
    ) -> Result<Method, Self::Rejection> {
        Ok(parts.method.to_owned())
    }
}

impl FromContext for ClientIp {
    type Rejection = Infallible;

    async fn from_context(cx: &mut ServerContext, _: &mut Parts) -> Result<Self, Self::Rejection> {
        if let Some(client_ip) = cx.extensions().get::<ClientIp>() {
            Ok(client_ip.to_owned())
        } else {
            Ok(ClientIp(None))
        }
    }
}

#[cfg(feature = "query")]
impl<T> FromContext for Query<T>
where
    T: serde::de::DeserializeOwned,
{
    type Rejection = serde_urlencoded::de::Error;

    async fn from_context(
        _cx: &mut ServerContext,
        parts: &mut Parts,
    ) -> Result<Self, Self::Rejection> {
        let query = parts.uri.query().unwrap_or_default();
        let param = serde_urlencoded::from_str(query)?;
        Ok(Query(param))
    }
}

#[cfg(feature = "query")]
impl IntoResponse for serde_urlencoded::de::Error {
    fn into_response(self) -> crate::response::Response {
        StatusCode::BAD_REQUEST.into_response()
    }
}

impl<B, T> FromRequest<B, private::ViaContext> for T
where
    B: Send,
    T: FromContext + Sync,
{
    type Rejection = T::Rejection;

    async fn from_request(
        cx: &mut ServerContext,
        mut parts: Parts,
        _: B,
    ) -> Result<Self, Self::Rejection> {
        T::from_context(cx, &mut parts).await
    }
}

impl<B, T> FromRequest<B> for Option<T>
where
    B: Send,
    T: FromRequest<B, private::ViaRequest> + Sync,
{
    type Rejection = Infallible;

    async fn from_request(
        cx: &mut ServerContext,
        parts: Parts,
        body: B,
    ) -> Result<Self, Self::Rejection> {
        Ok(T::from_request(cx, parts, body).await.ok())
    }
}

impl<B, T> FromRequest<B> for Result<T, T::Rejection>
where
    B: Send,
    T: FromRequest<B, private::ViaRequest> + Sync,
{
    type Rejection = Infallible;

    async fn from_request(
        cx: &mut ServerContext,
        parts: Parts,
        body: B,
    ) -> Result<Self, Self::Rejection> {
        Ok(T::from_request(cx, parts, body).await)
    }
}

impl<B> FromRequest<B> for Request<B>
where
    B: Send,
{
    type Rejection = Infallible;

    async fn from_request(
        _cx: &mut ServerContext,
        parts: Parts,
        body: B,
    ) -> Result<Self, Self::Rejection> {
        Ok(Request::from_parts(parts, body))
    }
}

impl<B> FromRequest<B> for Vec<u8>
where
    B: Body + Send,
    B::Data: Send,
    B::Error: Send,
{
    type Rejection = ExtractBodyError;

    async fn from_request(
        cx: &mut ServerContext,
        parts: Parts,
        body: B,
    ) -> Result<Self, Self::Rejection> {
        Ok(Bytes::from_request(cx, parts, body).await?.into())
    }
}

impl<B> FromRequest<B> for Bytes
where
    B: Body + Send,
    B::Data: Send,
    B::Error: Send,
{
    type Rejection = ExtractBodyError;

    async fn from_request(
        _: &mut ServerContext,
        parts: Parts,
        body: B,
    ) -> Result<Self, Self::Rejection> {
        let bytes = body
            .collect()
            .await
            .map_err(|_| body_collection_error())?
            .to_bytes();

        if let Some(cap) = get_header_value(&parts.headers, header::CONTENT_LENGTH) {
            if let Ok(cap) = cap.parse::<usize>()
                && bytes.len() != cap
            {
                tracing::warn!(
                    "[Volo-HTTP] The length of body ({}) does not match the Content-Length ({cap})",
                    bytes.len(),
                );
            }
        }

        Ok(bytes)
    }
}

impl<B> FromRequest<B> for String
where
    B: Body + Send,
    B::Data: Send,
    B::Error: Send,
{
    type Rejection = ExtractBodyError;

    async fn from_request(
        cx: &mut ServerContext,
        parts: Parts,
        body: B,
    ) -> Result<Self, Self::Rejection> {
        let vec = Vec::<u8>::from_request(cx, parts, body).await?;

        // Check if the &[u8] is a valid string
        let _ = simdutf8::basic::from_utf8(&vec).map_err(ExtractBodyError::String)?;

        // SAFETY: The `Vec<u8>` is checked by `simdutf8` and it is a valid `String`
        Ok(unsafe { String::from_utf8_unchecked(vec) })
    }
}

impl<B> FromRequest<B> for FastStr
where
    B: Body + Send,
    B::Data: Send,
    B::Error: Send,
{
    type Rejection = ExtractBodyError;

    async fn from_request(
        cx: &mut ServerContext,
        parts: Parts,
        body: B,
    ) -> Result<Self, Self::Rejection> {
        let vec = Vec::<u8>::from_request(cx, parts, body).await?;

        // Check if the &[u8] is a valid string
        let _ = simdutf8::basic::from_utf8(&vec).map_err(ExtractBodyError::String)?;

        // SAFETY: The `Vec<u8>` is checked by `simdutf8` and it is a valid `String`
        Ok(unsafe { FastStr::from_vec_u8_unchecked(vec) })
    }
}

impl<B, T> FromRequest<B> for MaybeInvalid<T>
where
    B: Body + Send,
    B::Data: Send,
    B::Error: Send,
{
    type Rejection = ExtractBodyError;

    async fn from_request(
        cx: &mut ServerContext,
        parts: Parts,
        body: B,
    ) -> Result<Self, Self::Rejection> {
        let vec = Vec::<u8>::from_request(cx, parts, body).await?;

        Ok(MaybeInvalid(vec, PhantomData))
    }
}

#[cfg(feature = "form")]
impl<B, T> FromRequest<B> for Form<T>
where
    B: Body + Send,
    B::Data: Send,
    B::Error: Send,
    T: serde::de::DeserializeOwned,
{
    type Rejection = ExtractBodyError;

    async fn from_request(
        cx: &mut ServerContext,
        parts: Parts,
        body: B,
    ) -> Result<Self, Self::Rejection> {
        if !content_type_matches(&parts.headers, mime::APPLICATION, mime::WWW_FORM_URLENCODED) {
            return Err(crate::error::server::invalid_content_type());
        }

        let bytes = Bytes::from_request(cx, parts, body).await?;
        let form =
            serde_urlencoded::from_bytes::<T>(bytes.as_ref()).map_err(ExtractBodyError::Form)?;

        Ok(Form(form))
    }
}

#[cfg(feature = "json")]
impl<B, T> FromRequest<B> for Json<T>
where
    B: Body + Send,
    B::Data: Send,
    B::Error: Send,
    T: serde::de::DeserializeOwned,
{
    type Rejection = ExtractBodyError;

    async fn from_request(
        cx: &mut ServerContext,
        parts: Parts,
        body: B,
    ) -> Result<Self, Self::Rejection> {
        if !content_type_matches(&parts.headers, mime::APPLICATION, mime::JSON) {
            return Err(crate::error::server::invalid_content_type());
        }

        let bytes = Bytes::from_request(cx, parts, body).await?;
        let json = crate::utils::json::deserialize(&bytes).map_err(ExtractBodyError::Json)?;

        Ok(Json(json))
    }
}

#[cfg(not(feature = "__tls"))]
fn is_tls(_: &ServerContext) -> bool {
    false
}

#[cfg(feature = "__tls")]
fn is_tls(cx: &ServerContext) -> bool {
    cx.rpc_info().config().is_tls()
}

fn get_header_value(map: &HeaderMap, key: HeaderName) -> Option<&str> {
    map.get(key)?.to_str().ok()
}

#[cfg(any(feature = "form", feature = "json"))]
fn content_type_matches(
    headers: &HeaderMap,
    ty: mime::Name<'static>,
    subtype: mime::Name<'static>,
) -> bool {
    use std::str::FromStr;

    let Some(content_type) = headers.get(header::CONTENT_TYPE) else {
        return false;
    };
    let Ok(content_type) = content_type.to_str() else {
        return false;
    };
    let Ok(mime) = mime::Mime::from_str(content_type) else {
        return false;
    };

    // `text/xml` or `image/svg+xml`
    (mime.type_() == ty && mime.subtype() == subtype) || mime.suffix() == Some(subtype)
}

#[cfg(test)]
mod extract_tests {
    #![deny(unused)]

    use std::convert::Infallible;

    use http::request::Parts;

    use super::{FromContext, FromRequest};
    use crate::{body::Body, context::ServerContext, server::handler::Handler};

    struct SomethingFromCx;

    impl FromContext for SomethingFromCx {
        type Rejection = Infallible;
        async fn from_context(
            _: &mut ServerContext,
            _: &mut Parts,
        ) -> Result<Self, Self::Rejection> {
            unimplemented!()
        }
    }

    struct SomethingFromReq;

    impl FromRequest for SomethingFromReq {
        type Rejection = Infallible;
        async fn from_request(
            _: &mut ServerContext,
            _: Parts,
            _: Body,
        ) -> Result<Self, Self::Rejection> {
            unimplemented!()
        }
    }

    #[test]
    fn extractor() {
        fn assert_handler<H, T>(_: H)
        where
            H: Handler<T, Body, Infallible>,
        {
        }

        async fn only_cx(_: SomethingFromCx) {}
        async fn only_req(_: SomethingFromReq) {}
        async fn cx_and_req(_: SomethingFromCx, _: SomethingFromReq) {}
        async fn many_cx_and_req(
            _: SomethingFromCx,
            _: SomethingFromCx,
            _: SomethingFromCx,
            _: SomethingFromReq,
        ) {
        }
        async fn only_option_cx(_: Option<SomethingFromCx>) {}
        async fn only_option_req(_: Option<SomethingFromReq>) {}
        async fn only_result_cx(_: Result<SomethingFromCx, Infallible>) {}
        async fn only_result_req(_: Result<SomethingFromReq, Infallible>) {}
        async fn option_cx_req(_: Option<SomethingFromCx>, _: Option<SomethingFromReq>) {}
        async fn result_cx_req(
            _: Result<SomethingFromCx, Infallible>,
            _: Result<SomethingFromReq, Infallible>,
        ) {
        }

        assert_handler(only_cx);
        assert_handler(only_req);
        assert_handler(cx_and_req);
        assert_handler(many_cx_and_req);
        assert_handler(only_option_cx);
        assert_handler(only_option_req);
        assert_handler(only_result_cx);
        assert_handler(only_result_req);
        assert_handler(option_cx_req);
        assert_handler(result_cx_req);
    }

    #[cfg(any(feature = "form", feature = "json"))]
    fn simple_req(content_type: &'static str, body: &'static str) -> crate::request::Request {
        let mut req = crate::request::Request::new(Body::from(body));
        req.headers_mut().insert(
            http::header::CONTENT_TYPE,
            http::header::HeaderValue::from_static(content_type),
        );
        req
    }

    #[cfg(feature = "form")]
    #[tokio::test]
    async fn extract_form() {
        use crate::server::test_helpers;

        #[derive(Debug, PartialEq, Eq, serde::Deserialize)]
        struct TestForm {
            key1: String,
            key2: String,
            key3: String,
        }

        const VALID_FORM: &str = "key1=value1&key2=value2&key3=value3";
        const INVALID_FORM: &str = "if (key && value) { print(key, value) }";

        let test_form = serde_urlencoded::from_str(VALID_FORM).unwrap();

        // simple content-type
        {
            let req = simple_req("application/x-www-form-urlencoded", VALID_FORM);
            let (parts, body) = req.into_parts();
            assert_eq!(
                super::Form::<TestForm>::from_request(&mut test_helpers::empty_cx(), parts, body,)
                    .await
                    .unwrap()
                    .0,
                test_form,
            );
        }
        // content-type with charset
        {
            let req = simple_req(
                "application/x-www-form-urlencoded; charset=utf-8",
                VALID_FORM,
            );
            let (parts, body) = req.into_parts();
            assert_eq!(
                super::Form::<TestForm>::from_request(&mut test_helpers::empty_cx(), parts, body,)
                    .await
                    .unwrap()
                    .0,
                test_form,
            );
        }
        // wrong content type
        {
            let req = simple_req("text/javascript", VALID_FORM);
            let (parts, body) = req.into_parts();
            super::Form::<TestForm>::from_request(&mut test_helpers::empty_cx(), parts, body)
                .await
                .unwrap_err();
        }
        // invalid form
        {
            let req = simple_req("application/x-www-form-urlencoded", INVALID_FORM);
            let (parts, body) = req.into_parts();
            super::Form::<TestForm>::from_request(&mut test_helpers::empty_cx(), parts, body)
                .await
                .unwrap_err();
        }
    }

    #[cfg(feature = "json")]
    #[tokio::test]
    async fn extract_json() {
        use crate::server::test_helpers;

        #[derive(Debug, PartialEq, Eq, serde::Deserialize)]
        struct TestJson {
            key1: String,
            key2: String,
            key3: String,
        }

        const VALID_JSON: &str = r#"{"key1":"value1","key2":"value2", "key3": "value3"}"#;
        const INVALID_JSON: &str = "if (key && value) { print(key, value) }";

        let test_json = crate::utils::json::deserialize(VALID_JSON.as_bytes()).unwrap();

        // simple content-type
        {
            let req = simple_req("application/json", VALID_JSON);
            let (parts, body) = req.into_parts();
            assert_eq!(
                super::Json::<TestJson>::from_request(&mut test_helpers::empty_cx(), parts, body,)
                    .await
                    .unwrap()
                    .0,
                test_json,
            );
        }
        // content-type with charset
        {
            let req = simple_req("application/json; charset=utf-8", VALID_JSON);
            let (parts, body) = req.into_parts();
            assert_eq!(
                super::Json::<TestJson>::from_request(&mut test_helpers::empty_cx(), parts, body,)
                    .await
                    .unwrap()
                    .0,
                test_json,
            );
        }
        // wrong content type
        {
            let req = simple_req("text/javascript", VALID_JSON);
            let (parts, body) = req.into_parts();
            super::Json::<TestJson>::from_request(&mut test_helpers::empty_cx(), parts, body)
                .await
                .unwrap_err();
        }
        // invalid form
        {
            let req = simple_req("application/json", INVALID_JSON);
            let (parts, body) = req.into_parts();
            super::Json::<TestJson>::from_request(&mut test_helpers::empty_cx(), parts, body)
                .await
                .unwrap_err();
        }
    }
}