Crates.io | wiremock_logical_matchers |
lib.rs | wiremock_logical_matchers |
version | 0.6.0 |
source | src |
created_at | 2023-07-01 07:31:01.13685 |
updated_at | 2024-02-21 12:11:31.151965 |
description | Logical matchers for use with wiremock. |
homepage | https://github.com/clechasseur/wiremock_logical_matchers#readme |
repository | https://github.com/clechasseur/wiremock_logical_matchers |
max_upload_size | |
id | 905337 |
size | 23,367 |
Additional matchers for wiremock that implement logical operators (AND, OR, XOR, NOT).
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
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;
// ...
}