[][src]Function actix_web::test::read_body_json

pub async fn read_body_json<T, B>(res: ServiceResponse<B>) -> T where
    B: MessageBody + Unpin,
    T: DeserializeOwned

Helper function that returns a deserialized response body of a ServiceResponse.

use actix_web::{App, test, web, HttpResponse, http::header};
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize)]
pub struct Person {
    id: String,
    name: String,
}

#[actix_rt::test]
async fn test_post_person() {
    let mut app = test::init_service(
        App::new().service(
            web::resource("/people")
                .route(web::post().to(|person: web::Json<Person>| async {
                    HttpResponse::Ok()
                        .json(person.into_inner())})
                    ))
    ).await;

    let payload = r#"{"id":"12345","name":"User name"}"#.as_bytes();

    let resp = test::TestRequest::post()
        .uri("/people")
        .header(header::CONTENT_TYPE, "application/json")
        .set_payload(payload)
        .send_request(&mut app)
        .await;

    assert!(resp.status().is_success());

    let result: Person = test::read_body_json(resp).await;
}