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

#820 in Asynchronous

Download history 347/week @ 2024-11-14 135/week @ 2024-11-21 1285/week @ 2024-11-28 177/week @ 2024-12-05 199/week @ 2024-12-12 346/week @ 2024-12-19 443/week @ 2024-12-26 257/week @ 2025-01-02 347/week @ 2025-01-09 601/week @ 2025-01-16 50/week @ 2025-01-23 272/week @ 2025-01-30 174/week @ 2025-02-06 211/week @ 2025-02-13 344/week @ 2025-02-20 445/week @ 2025-02-27

1,177 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

~11–23MB
~315K SLoC