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

#724 in Asynchronous

Download history 355/week @ 2024-10-22 564/week @ 2024-10-29 397/week @ 2024-11-05 226/week @ 2024-11-12 252/week @ 2024-11-19 147/week @ 2024-11-26 1273/week @ 2024-12-03 119/week @ 2024-12-10 475/week @ 2024-12-17 303/week @ 2024-12-24 228/week @ 2024-12-31 489/week @ 2025-01-07 275/week @ 2025-01-14 376/week @ 2025-01-21 296/week @ 2025-01-28 177/week @ 2025-02-04

1,301 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
~316K SLoC