pub struct TestRequestBuilder<'a, E> { /* private fields */ }
Available on crate feature test only.
Expand description

A request builder for testing.

Implementations

Sets the query string for this request.

Example
use poem::{handler, test::TestClient, web::Query, Route};
use serde::Deserialize;

#[derive(Deserialize)]
struct Params {
    key: String,
    value: i32,
}

#[handler]
fn index(Query(params): Query<Params>) -> String {
    format!("{}={}", params.key, params.value)
}

let app = Route::new().at("/", index);
let cli = TestClient::new(app);

let resp = cli
    .get("/")
    .query("key", &"a")
    .query("value", &10)
    .send()
    .await;
resp.assert_status_is_ok();
resp.assert_text("a=10").await;

Sets the header value for this request.

Inserts a typed header to this request.

Sets the content type for this request.

Sets the body for this request.

Sets the JSON body for this request with application/json content type.

Sets the XML body for this request with application/xml content type.

Sets the form data for this request with application/x-www-form-urlencoded content type.

Sets the multipart body for this request with multipart/form-data content type.

Sets the extension data for this request.

Example
use poem::{handler, test::TestClient, web::Data, Route};

#[handler]
fn index(Data(value): Data<&i32>) -> String {
    value.to_string()
}

let app = Route::new().at("/", index);
let cli = TestClient::new(app);

let resp = cli.get("/").data(100i32).send().await;
resp.assert_status_is_ok();
resp.assert_text("100").await;

Send this request to endpoint to get the response.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Attaches the current Context to this type, returning a WithContext wrapper. Read more
Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more