7 releases

0.6.0 Feb 21, 2024
0.5.1 Jan 14, 2024
0.5.0 Dec 31, 2023
0.1.3 Oct 13, 2023
0.1.1 Jul 4, 2023

#680 in Asynchronous

Download history 305/week @ 2024-09-22 718/week @ 2024-09-29 443/week @ 2024-10-06 447/week @ 2024-10-13 262/week @ 2024-10-20 648/week @ 2024-10-27 314/week @ 2024-11-03 150/week @ 2024-11-10 421/week @ 2024-11-17 106/week @ 2024-11-24 1295/week @ 2024-12-01 177/week @ 2024-12-08 462/week @ 2024-12-15 232/week @ 2024-12-22 320/week @ 2024-12-29 303/week @ 2025-01-05

1,359 downloads per month
Used in mini_exercism

MIT license

15KB
121 lines

wiremock_logical_matchers

CI codecov Security audit crates.io downloads docs.rs Contributor Covenant

Additional matchers for wiremock that implement logical operators (AND, OR, XOR, NOT).

Installing

Add wiremock_logical_matchers to your development dependencies:

[dev-dependencies]
wiremock = "0.6.0"
wiremock_logical_matchers = "0.6.0"

or by running:

cargo add wiremock_logical_matchers --dev

Getting started

use wiremock::{Mock, MockServer, ResponseTemplate};
use wiremock::matchers::{header, header_exists, path, query_param};
use wiremock_logical_matchers::{and, not, or, xor};

#[tokio::test]
async fn test_getting_started() {
    let mock_server = MockServer::start().await;

    Mock::given(path("/test"))
        .and(
            and(
                header_exists("x-for-testing-purposes"),
                query_param("page", "1")
            )
        ).and(
            or(
                header("authorization", "Bearer some_token"),
                query_param("override-security", "1")
            )
        ).and(
            xor(
                header("x-license", "MIT"),
                header("x-license-file", "LICENSE")
            )
        ).and(
            not(
                header_exists("x-necronomicon")
            )
        ).respond_with(ResponseTemplate::new(200))
        .mount(&mock_server)
        .await;

    // ...
}

See also

wiremock on crates.io

Dependencies

~12–23MB
~319K SLoC