wiremock-multipart

library of matchers for wiremock dealing with multipart requests

2 releases (1 stable)

1.0.0 Aug 9, 2024
0.1.0 Jan 4, 2022

#190 in Testing

Download history 193/week @ 2024-06-13 140/week @ 2024-06-20 239/week @ 2024-06-27 91/week @ 2024-07-04 209/week @ 2024-07-11 131/week @ 2024-07-18 137/week @ 2024-07-25 144/week @ 2024-08-01 300/week @ 2024-08-08 160/week @ 2024-08-15 169/week @ 2024-08-22 161/week @ 2024-08-29 42/week @ 2024-09-05 51/week @ 2024-09-12 87/week @ 2024-09-19 140/week @ 2024-09-26

337 downloads per month
Used in fhttp-core

MIT license

31KB
802 lines

wiremock-multipart

This project provides matchers dealing with multipart requests for the awesome wiremock testing framework.

How to install

Add wiremock-multipart to your development dependencies:

[dev-dependencies]
# ...
wiremock-multipart = "0.1"

If you are using cargo-edit, run

cargo add wiremock-multipart --dev

Getting started

use wiremock::{MockServer, Mock, ResponseTemplate};
use wiremock::matchers::method;
use wiremock_multipart::prelude::*;

#[async_std::main]
async fn main() {
    // Start a background HTTP server on a random local port
    let mock_server = MockServer::start().await;

    // Arrange the behaviour of the MockServer adding a Mock
    Mock::given(method("POST"))
        .and(NumberOfParts(2))
        .respond_with(ResponseTemplate::new(200))
        // Mounting the mock on the mock server - it's now effective!
        .mount(&mock_server)
        .await;

    // if we now send a multipart/form-data request with two parts to it, the request
    // will match and return 200.
}

Dependencies

~12–22MB
~336K SLoC