Struct wiremock::matchers::BodyPartialJsonMatcher
source · pub struct BodyPartialJsonMatcher(_);
Expand description
Match part JSON body of a request.
Example:
use wiremock::{MockServer, Mock, ResponseTemplate};
use wiremock::matchers::body_partial_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_partial_json(&expected_body))
.respond_with(ResponseTemplate::new(200))
.mount(&mock_server)
.await;
// Act
let body = json!({
"hello": "world!",
"foo": "bar"
});
let status = surf::post(&mock_server.uri())
.body(body)
.await
.unwrap()
.status();
// Assert
assert_eq!(status, 200);
}
Implementations§
Trait Implementations§
source§impl Debug for BodyPartialJsonMatcher
impl Debug for BodyPartialJsonMatcher
Auto Trait Implementations§
impl RefUnwindSafe for BodyPartialJsonMatcher
impl Send for BodyPartialJsonMatcher
impl Sync for BodyPartialJsonMatcher
impl Unpin for BodyPartialJsonMatcher
impl UnwindSafe for BodyPartialJsonMatcher
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