use super::pick;
use crate::actions::Request;
use crate::benchmark::Benchmark;
use crate::interpolator::INTERPOLATION_REGEX;
use crate::reader;
use rand::rng;
use rand::seq::SliceRandom;
use serde_yaml::Value;
use std::path::Path;
pub fn is_that_you(item: &Value) -> bool {
item.get("request").and_then(|v| v.as_mapping()).is_some() && (item.get("with_items_from_file").and_then(|v| v.as_str()).is_some() || item.get("with_items_from_file").and_then(|v| v.as_mapping()).is_some())
}
pub fn expand(parent_path: &str, item: &Value, benchmark: &mut Benchmark) {
let with_items_path = if let Some(with_items_path) = item.get("with_items_from_file").and_then(|v| v.as_str()) {
with_items_path
} else {
unreachable!();
};
if INTERPOLATION_REGEX.is_match(with_items_path) {
panic!("Interpolation not supported in 'with_items_from_file' property!");
}
let with_items_filepath = Path::new(parent_path).with_file_name(with_items_path);
let final_path = with_items_filepath.to_str().unwrap();
let mut with_items_file = reader::read_file_as_yml_array(final_path);
if let Some(true) = item.get("shuffle").and_then(|v| v.as_bool()) {
let mut rng = rng();
with_items_file.shuffle(&mut rng);
}
let pick = pick(item, &with_items_file);
for (index, with_item) in with_items_file.iter().take(pick).enumerate() {
let index = index as u32;
benchmark.push(Box::new(Request::new(item, Some(with_item.clone()), Some(index))));
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn expand_multi() {
let text = "---\nname: foobar\nrequest:\n url: /api/{{ item.id }}\nwith_items_from_file: ./fixtures/texts.txt";
let docs = crate::reader::read_file_as_yml_from_str(text);
let doc = &docs[0];
let mut benchmark: Benchmark = Benchmark::new();
expand("example/benchmark.yml", doc, &mut benchmark);
assert!(is_that_you(doc));
assert_eq!(benchmark.len(), 3);
}
#[test]
fn expand_multi_should_limit_requests_using_the_pick_option() {
let text = "---\nname: foobar\nrequest:\n url: /api/{{ item }}\npick: 2\nwith_items_from_file: ./fixtures/texts.txt";
let docs = crate::reader::read_file_as_yml_from_str(text);
let doc = &docs[0];
let mut benchmark: Benchmark = Benchmark::new();
expand("example/benchmark.yml", doc, &mut benchmark);
assert!(is_that_you(doc));
assert_eq!(benchmark.len(), 2);
}
#[test]
fn expand_multi_should_work_with_pick_and_shuffle() {
let text = "---\nname: foobar\nrequest:\n url: /api/{{ item }}\npick: 1\nshuffle: true\nwith_items_from_file: ./fixtures/texts.txt";
let docs = crate::reader::read_file_as_yml_from_str(text);
let doc = &docs[0];
let mut benchmark: Benchmark = Benchmark::new();
expand("example/benchmark.yml", doc, &mut benchmark);
assert!(is_that_you(doc));
assert_eq!(benchmark.len(), 1);
}
}