1 unstable release

0.1.0 Jan 4, 2022

#912 in HTTP server

Download history 1/week @ 2024-01-09 20/week @ 2024-01-16 1/week @ 2024-01-23 22/week @ 2024-01-30 15/week @ 2024-02-06 21/week @ 2024-02-13 282/week @ 2024-02-20 222/week @ 2024-02-27 170/week @ 2024-03-05 147/week @ 2024-03-12 290/week @ 2024-03-19 154/week @ 2024-03-26 171/week @ 2024-04-02 126/week @ 2024-04-09 207/week @ 2024-04-16

707 downloads per month
Used in fhttp-core

MIT license

32KB
818 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

~11–15MB
~286K SLoC