driller 0.10.2

A clean HTTP load-test drill. Ansible-style YAML plans, Rust runtime, RPS and percentiles per run -- no fancy bits.
use async_trait::async_trait;
use serde_yaml::Value;

mod assert;
mod assign;
mod delay;
mod exec;
mod request;

pub use self::assert::Assert;
pub use self::assign::Assign;
pub use self::delay::Delay;
pub use self::exec::Exec;
pub use self::request::Request;

use crate::benchmark::{Context, Pool, Reports};
use crate::config::Config;

use std::fmt;

#[async_trait]
pub trait Runnable {
  async fn execute(&self, context: &mut Context, reports: &mut Reports, pool: &Pool, config: &Config);
}

#[derive(Clone)]
pub struct Report {
  pub name: String,
  pub duration: f64,
  pub status: u16,
}

impl fmt::Debug for Report {
  fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
    write!(f, "\n- name: {}\n  duration: {}\n", self.name, self.duration)
  }
}

impl fmt::Display for Report {
  fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
    write!(f, "\n- name: {}\n  duration: {}\n  status: {}\n", self.name, self.duration, self.status)
  }
}

pub fn extract_optional<'a>(item: &'a Value, attr: &'a str) -> Option<String> {
  if let Some(s) = item.get(attr).and_then(|v| v.as_str()) {
    Some(s.to_string())
  } else if item.get(attr).and_then(|v| v.as_mapping()).is_some() {
    panic!("`{attr}` needs to be a string. Try adding quotes");
  } else {
    None
  }
}

pub fn extract<'a>(item: &'a Value, attr: &'a str) -> String {
  if let Some(s) = item.get(attr).and_then(|v| v.as_i64()) {
    s.to_string()
  } else if let Some(s) = item.get(attr).and_then(|v| v.as_str()) {
    s.to_string()
  } else if item.get(attr).and_then(|v| v.as_mapping()).is_some() {
    panic!("`{attr}` is required needs to be a string. Try adding quotes");
  } else {
    panic!("Unknown node `{}` => {:?}", attr, item.get(attr));
  }
}