Grillon offers an elegant and natural way to approach end-to-end HTTP API testing in Rust.
Please note that the API is subject to a lot of changes until the
v1.0.0
.
This example enables the optional diff
feature and uses Tokio as asynchronous runtime.
Generally, testing libs are used in unit or integration tests. You can declare grillon
as a dev-dependency.
Add grillon
to Cargo.toml
toml
[dev-dependencies]
grillon = { version = "0.2.0", features = ["diff"] }
tokio = { version = "1", features = ["macros"] }
Then use grillon
:
```rust use grillon::{ header::{HeaderValue, CONTENT_TYPE}, json, Grillon, StatusCode, Result };
async fn endtoendtest() -> Result<()> { Grillon::new("http://jsonplaceholder.typicode.com")? .post("posts") .payload(json!({ "title": "foo", "body": "bar", "userId": 1 })) .assert() .await .statussuccess() .assertfn(|assert| { assert!(!assert.headers.isempty()); assert!(assert.status == StatusCode::CREATED); assert!(assert.json.is_some());
println!("Json response : {:#?}", assert.json);
})
.status(StatusCode::CREATED)
.headers_exist(vec![(
CONTENT_TYPE,
HeaderValue::from_static("application/json; charset=utf-8"),
)])
.body(json!({
"id": 101,
}));
Ok(())
} ```