summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/files/scroll/DELETE_scroll_path.txt.fails (renamed from tests/files/scroll/DELETE_scroll_path.txt)0
-rw-r--r--tests/parse_es_requests.rs19
2 files changed, 19 insertions, 0 deletions
diff --git a/tests/files/scroll/DELETE_scroll_path.txt b/tests/files/scroll/DELETE_scroll_path.txt.fails
index 7910ed8..7910ed8 100644
--- a/tests/files/scroll/DELETE_scroll_path.txt
+++ b/tests/files/scroll/DELETE_scroll_path.txt.fails
diff --git a/tests/parse_es_requests.rs b/tests/parse_es_requests.rs
index bd38ce6..d453392 100644
--- a/tests/parse_es_requests.rs
+++ b/tests/parse_es_requests.rs
@@ -78,3 +78,22 @@ fn filter_search_requests() {
rt.block_on(filter_request(req, &config)).unwrap();
}
}
+
+#[test]
+fn filter_scroll_requests() {
+
+ let file_paths = fs::read_dir("tests/files/scroll").unwrap();
+ let mut config = ProxyConfig::default();
+ config.allow_all_indices = Some(true);
+ let mut rt = tokio::runtime::Runtime::new().unwrap();
+
+ for path in file_paths {
+ let path = path.unwrap().path();
+ if path.extension() != Some(OsStr::new("txt")) {
+ continue
+ }
+ println!(" filtering: {}", path.display());
+ let req = common::load_request(&path);
+ rt.block_on(filter_request(req, &config)).unwrap();
+ }
+}