Add Not filter to FilterType

To invert the result of filters.
This commit is contained in:
finga 2021-11-17 14:06:07 +01:00
parent 4d39488c32
commit 9c423b8dc8
2 changed files with 19 additions and 2 deletions

View file

@ -679,7 +679,7 @@ mod tests {
let mut hooks = BTreeMap::new();
hooks.insert(
"test_hook".to_string(),
"test_hook0".to_string(),
Hook {
command:
"/usr/bin/echo {{ /repository/full_name }} --foo {{ /pull_request/base/ref }}"
@ -695,7 +695,7 @@ mod tests {
);
hooks.insert(
"test_hook".to_string(),
"test_hook2".to_string(),
Hook {
command: "/usr/bin/echo {{ /repository/full_name }} {{ /pull_request/base/ref }}"
.to_string(),
@ -709,6 +709,21 @@ mod tests {
},
);
hooks.insert(
"test_hook3".to_string(),
Hook {
command: "/usr/bin/echo {{ /repository/full_name }} {{ /pull_request/base/ref }}"
.to_string(),
signature: "X-Gitea-Signature".to_string(),
ip_filter: None,
secrets: vec!["valid".to_string()],
filter: FilterType::Not(Box::new(FilterType::JsonFilter(JsonFilter {
pointer: "/foobar".to_string(),
regex: "bar".to_string(),
}))),
},
);
let config = Config {
metrics: None,
hooks: hooks,