Struct wiremock::matchers::HeaderRegexMatcher
source · pub struct HeaderRegexMatcher(_, _);
Expand description
Match the value of a header using a regular expression. If the header is multi-valued, all values must satisfy the regular expression. If the header is missing, the mock will not match.
Example:
use wiremock::{MockServer, Mock, ResponseTemplate};
use wiremock::matchers::header_regex;
#[async_std::main]
async fn main() {
// Arrange
let mock_server = MockServer::start().await;
Mock::given(header_regex("custom", "header"))
.respond_with(ResponseTemplate::new(200))
.mount(&mock_server)
.await;
// Act
let status = surf::get(&mock_server.uri())
.header("custom", "headers are fun to match on with a regex")
.await
.unwrap()
.status();
// Assert
assert_eq!(status, 200);
}
Implementations§
source§impl HeaderRegexMatcher
impl HeaderRegexMatcher
pub fn new<K>(key: K, value: &str) -> Selfwhere K: TryInto<HeaderName>, <K as TryInto<HeaderName>>::Error: Debug,
Trait Implementations§
source§impl Debug for HeaderRegexMatcher
impl Debug for HeaderRegexMatcher
Auto Trait Implementations§
impl RefUnwindSafe for HeaderRegexMatcher
impl Send for HeaderRegexMatcher
impl Sync for HeaderRegexMatcher
impl Unpin for HeaderRegexMatcher
impl UnwindSafe for HeaderRegexMatcher
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more