2022-01-07 22:09:52 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-08-28 09:03:50 -04:00
|
|
|
|
|
|
|
use super::Result;
|
2021-03-25 14:17:37 -04:00
|
|
|
use std::{collections::HashMap, path::Path, process::Command, time::Duration};
|
2020-08-28 09:03:50 -04:00
|
|
|
pub use test_util::{parse_wrk_output, WrkOutput as HttpBenchmarkResult};
|
|
|
|
|
|
|
|
// Some of the benchmarks in this file have been renamed. In case the history
|
|
|
|
// somehow gets messed up:
|
|
|
|
// "node_http" was once called "node"
|
|
|
|
// "deno_tcp" was once called "deno"
|
|
|
|
// "deno_http" was once called "deno_net_http"
|
|
|
|
|
|
|
|
const DURATION: &str = "20s";
|
|
|
|
|
2022-03-23 09:54:22 -04:00
|
|
|
pub fn benchmark(
|
2021-03-25 14:17:37 -04:00
|
|
|
target_path: &Path,
|
2020-08-28 09:03:50 -04:00
|
|
|
) -> Result<HashMap<String, HttpBenchmarkResult>> {
|
|
|
|
let deno_exe = test_util::deno_exe_path();
|
|
|
|
let deno_exe = deno_exe.to_str().unwrap();
|
|
|
|
|
|
|
|
let hyper_hello_exe = target_path.join("test_server");
|
|
|
|
let hyper_hello_exe = hyper_hello_exe.to_str().unwrap();
|
|
|
|
|
|
|
|
let core_http_json_ops_exe = target_path.join("examples/http_bench_json_ops");
|
|
|
|
let core_http_json_ops_exe = core_http_json_ops_exe.to_str().unwrap();
|
|
|
|
|
|
|
|
let mut res = HashMap::new();
|
2022-06-08 08:03:38 -04:00
|
|
|
let manifest_dir = Path::new(env!("CARGO_MANIFEST_DIR"));
|
|
|
|
let http_dir = manifest_dir.join("bench").join("http");
|
|
|
|
for entry in std::fs::read_dir(http_dir.clone())? {
|
|
|
|
let entry = entry?;
|
|
|
|
let pathbuf = entry.path();
|
|
|
|
let path = pathbuf.to_str().unwrap();
|
|
|
|
let name = entry.file_name().into_string().unwrap();
|
|
|
|
let file_stem = pathbuf.file_stem().unwrap().to_str().unwrap();
|
|
|
|
|
|
|
|
let lua_script = http_dir.join(format!("{}.lua", file_stem));
|
|
|
|
let mut maybe_lua = None;
|
|
|
|
if lua_script.exists() {
|
|
|
|
maybe_lua = Some(lua_script.to_str().unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
let port = get_port();
|
|
|
|
if name.starts_with("node") {
|
|
|
|
// node <path> <port>
|
|
|
|
res.insert(
|
|
|
|
name,
|
|
|
|
run(
|
|
|
|
&["node", path, &port.to_string()],
|
|
|
|
port,
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
maybe_lua,
|
|
|
|
)?,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// deno run -A --unstable <path> <addr>
|
|
|
|
res.insert(
|
|
|
|
name,
|
|
|
|
run(
|
|
|
|
&[
|
|
|
|
deno_exe,
|
|
|
|
"run",
|
|
|
|
"--allow-all",
|
|
|
|
"--unstable",
|
|
|
|
path,
|
|
|
|
&server_addr(port),
|
|
|
|
],
|
|
|
|
port,
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
maybe_lua,
|
|
|
|
)?,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2020-08-28 09:03:50 -04:00
|
|
|
|
2021-04-12 15:55:05 -04:00
|
|
|
// "core_http_json_ops" previously had a "bin op" counterpart called "core_http_bin_ops",
|
|
|
|
// which was previously also called "deno_core_http_bench", "deno_core_single"
|
2020-08-28 09:03:50 -04:00
|
|
|
res.insert(
|
|
|
|
"core_http_json_ops".to_string(),
|
|
|
|
core_http_json_ops(core_http_json_ops_exe)?,
|
|
|
|
);
|
|
|
|
res.insert("hyper".to_string(), hyper_http(hyper_hello_exe)?);
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
server_cmd: &[&str],
|
|
|
|
port: u16,
|
|
|
|
env: Option<Vec<(String, String)>>,
|
|
|
|
origin_cmd: Option<&[&str]>,
|
2022-06-08 08:03:38 -04:00
|
|
|
lua_script: Option<&str>,
|
2020-08-28 09:03:50 -04:00
|
|
|
) -> Result<HttpBenchmarkResult> {
|
|
|
|
// Wait for port 4544 to become available.
|
|
|
|
// TODO Need to use SO_REUSEPORT with tokio::net::TcpListener.
|
|
|
|
std::thread::sleep(Duration::from_secs(5));
|
|
|
|
|
|
|
|
let mut origin = None;
|
|
|
|
if let Some(cmd) = origin_cmd {
|
|
|
|
let mut com = Command::new(cmd[0]);
|
|
|
|
com.args(&cmd[1..]);
|
|
|
|
if let Some(env) = env.clone() {
|
|
|
|
com.envs(env);
|
|
|
|
}
|
|
|
|
origin = Some(com.spawn()?);
|
|
|
|
};
|
|
|
|
|
|
|
|
println!("{}", server_cmd.join(" "));
|
|
|
|
let mut server = {
|
|
|
|
let mut com = Command::new(server_cmd[0]);
|
|
|
|
com.args(&server_cmd[1..]);
|
|
|
|
if let Some(env) = env {
|
|
|
|
com.envs(env);
|
|
|
|
}
|
|
|
|
com.spawn()?
|
|
|
|
};
|
|
|
|
|
|
|
|
std::thread::sleep(Duration::from_secs(5)); // wait for server to wake up. TODO racy.
|
|
|
|
|
|
|
|
let wrk = test_util::prebuilt_tool_path("wrk");
|
|
|
|
assert!(wrk.is_file());
|
|
|
|
|
2022-06-08 08:03:38 -04:00
|
|
|
let addr = format!("http://127.0.0.1:{}/", port);
|
|
|
|
let mut wrk_cmd =
|
|
|
|
vec![wrk.to_str().unwrap(), "-d", DURATION, "--latency", &addr];
|
|
|
|
|
|
|
|
if let Some(lua_script) = lua_script {
|
|
|
|
wrk_cmd.push("-s");
|
|
|
|
wrk_cmd.push(lua_script);
|
|
|
|
}
|
|
|
|
|
2020-08-28 09:03:50 -04:00
|
|
|
println!("{}", wrk_cmd.join(" "));
|
2022-06-08 08:03:38 -04:00
|
|
|
let output = test_util::run_collect(&wrk_cmd, None, None, None, true).0;
|
2020-08-28 09:03:50 -04:00
|
|
|
|
2021-04-08 12:04:02 -04:00
|
|
|
std::thread::sleep(Duration::from_secs(1)); // wait to capture failure. TODO racy.
|
|
|
|
|
2020-08-28 09:03:50 -04:00
|
|
|
println!("{}", output);
|
|
|
|
assert!(
|
|
|
|
server.try_wait()?.map_or(true, |s| s.success()),
|
|
|
|
"server ended with error"
|
|
|
|
);
|
|
|
|
|
|
|
|
server.kill()?;
|
|
|
|
if let Some(mut origin) = origin {
|
|
|
|
origin.kill()?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(parse_wrk_output(&output))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_port() -> u16 {
|
|
|
|
static mut NEXT_PORT: u16 = 4544;
|
|
|
|
|
|
|
|
let port = unsafe { NEXT_PORT };
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
NEXT_PORT += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
port
|
|
|
|
}
|
|
|
|
|
|
|
|
fn server_addr(port: u16) -> String {
|
|
|
|
format!("0.0.0.0:{}", port)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn core_http_json_ops(exe: &str) -> Result<HttpBenchmarkResult> {
|
|
|
|
println!("http_benchmark testing CORE http_bench_json_ops");
|
2022-06-08 08:03:38 -04:00
|
|
|
run(&[exe], 4544, None, None, None)
|
2020-08-28 09:03:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn hyper_http(exe: &str) -> Result<HttpBenchmarkResult> {
|
|
|
|
let port = get_port();
|
|
|
|
println!("http_benchmark testing RUST hyper");
|
2022-06-08 08:03:38 -04:00
|
|
|
run(&[exe, &port.to_string()], port, None, None, None)
|
2020-08-28 09:03:50 -04:00
|
|
|
}
|