Struct wiremock::matchers::BodyExactMatcher
source · pub struct BodyExactMatcher(_);
Expand description
Match exactly the body of a request.
Example (string):
use wiremock::{MockServer, Mock, ResponseTemplate};
use wiremock::matchers::body_string;
#[async_std::main]
async fn main() {
// Arrange
let mock_server = MockServer::start().await;
Mock::given(body_string("hello world!"))
.respond_with(ResponseTemplate::new(200))
.mount(&mock_server)
.await;
// Act
let status = surf::post(&mock_server.uri())
.body("hello world!")
.await
.unwrap()
.status();
// Assert
assert_eq!(status, 200);
}
Example (json):
use wiremock::{MockServer, Mock, ResponseTemplate};
use wiremock::matchers::body_json;
use serde_json::json;
#[async_std::main]
async fn main() {
// Arrange
let mock_server = MockServer::start().await;
let expected_body = json!({
"hello": "world!"
});
Mock::given(body_json(&expected_body))
.respond_with(ResponseTemplate::new(200))
.mount(&mock_server)
.await;
// Act
let status = surf::post(&mock_server.uri())
.body(expected_body)
.await
.unwrap()
.status();
// Assert
assert_eq!(status, 200);
}
Implementations§
source§impl BodyExactMatcher
impl BodyExactMatcher
sourcepub fn bytes<T: Into<Vec<u8>>>(body: T) -> Self
pub fn bytes<T: Into<Vec<u8>>>(body: T) -> Self
Specify the expected body as a vector of bytes.
sourcepub fn json<T: Serialize>(body: T) -> Self
pub fn json<T: Serialize>(body: T) -> Self
Specify something JSON-serializable as the expected body.
sourcepub fn json_string(body: impl AsRef<[u8]>) -> Self
pub fn json_string(body: impl AsRef<[u8]>) -> Self
Specify a JSON string as the expected body.
Trait Implementations§
source§impl Debug for BodyExactMatcher
impl Debug for BodyExactMatcher
Auto Trait Implementations§
impl RefUnwindSafe for BodyExactMatcher
impl Send for BodyExactMatcher
impl Sync for BodyExactMatcher
impl Unpin for BodyExactMatcher
impl UnwindSafe for BodyExactMatcher
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more