3 releases (stable)

1.0.1 Jan 10, 2025
1.0.0 Aug 9, 2024
0.1.0 Jan 4, 2022

#184 in Testing

Download history 43/week @ 2024-10-25 40/week @ 2024-11-01 55/week @ 2024-11-08 35/week @ 2024-11-15 36/week @ 2024-11-22 17/week @ 2024-11-29 144/week @ 2024-12-06 114/week @ 2024-12-13 51/week @ 2024-12-20 13/week @ 2024-12-27 149/week @ 2025-01-03 300/week @ 2025-01-10 118/week @ 2025-01-17 303/week @ 2025-01-24 166/week @ 2025-01-31 148/week @ 2025-02-07

771 downloads per month
Used in fhttp-core

MIT license

31KB
804 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

~13–24MB
~340K SLoC