A standard trait for doing fluent assertions over many http client response. Currently, supports actix-web, rocket, reqwest, hyper, axum, awc (Actix Web Client), surf, ureq and isahc.
Add it to your Cargo.toml
```toml asserhttp = { version = "0.6.1", features = ["reqwest"] }
```
Then use it in your tests, for example on actix-web,
```rust use actixweb::{App, HttpResponse, test::{callservice, init_service, TestRequest}, web}; use asserhttp::*;
async fn sampletest() { let app = App::new().route("/", web::get().to(|| async { HttpResponse::Ok().body(json!({"a": "b"})) })); callservice(&mut initservice(app).await, TestRequest::get().torequest()).await .expectstatusok() .expectcontenttypejson() .expectbodyjsoneq(json!({"a": "b"})); } ```
or on reqwest
```rust use reqwest; use asserhttp::*;
async fn mytest() { reqwest::get("http://localhost").await .expectstatusok() .expectcontenttypejson() .expectbodyjson_eq(json!({"name": "jdoe"})); } ```
You don't like the asserhttp methods name ? That's fine, you can define yours. Define you own trait and use asserhttp methods to define your own !
As simple as this:
```rust asserhttp::asserhttp_customize!(MyHttpDsl);
pub trait MyHttpDsl
Asserting gRPC is also supported with a tonic client. Simply turn on the tonic
feature and use it like this:
```rust use asserhttp::grpc::*;
async fn main() { // success client.callsvc(tonic::Request::new(Payload)).await.expectstatusok().expectbody(Payload); // error client.callsvc(tonic::Request::new(Payload)).await.expectstatus_error(Code::NotFound); } ```