tabby/crates/tabby/tests/goldentests.rs

107 lines
2.6 KiB
Rust

use std::path::PathBuf;
use assert_json_diff::assert_json_include;
use lazy_static::lazy_static;
use serde::Deserialize;
use serde_json::json;
use tokio::{
process::Command,
time::{sleep, Duration},
};
lazy_static! {
static ref SERVER: bool = {
let mut cmd = Command::new(tabby_path());
cmd.arg("serve")
.arg("--model")
.arg("TabbyML/StarCoder-1B")
.arg("--port")
.arg("9090")
.arg("--device")
.arg("metal")
.kill_on_drop(true);
tokio::task::spawn(async move {
cmd.spawn()
.expect("Failed to start server")
.wait()
.await
.unwrap();
});
true
};
static ref CLIENT: reqwest::Client = reqwest::Client::new();
}
fn workspace_dir() -> PathBuf {
let output = std::process::Command::new(env!("CARGO"))
.arg("locate-project")
.arg("--workspace")
.arg("--message-format=plain")
.output()
.unwrap()
.stdout;
let cargo_path = std::path::Path::new(std::str::from_utf8(&output).unwrap().trim());
cargo_path.parent().unwrap().to_path_buf()
}
fn tabby_path() -> PathBuf {
workspace_dir().join("target/debug/tabby")
}
fn golden_path() -> PathBuf {
workspace_dir().join("crates/tabby/tests/golden.json")
}
async fn wait_for_server() {
lazy_static::initialize(&SERVER);
loop {
println!("Waiting for server to start...");
let is_ok = reqwest::get("http://localhost:9090/v1/health")
.await
.is_ok();
if is_ok {
break;
} else {
sleep(Duration::from_secs(5)).await;
}
}
}
async fn golden_test(body: serde_json::Value, expected: serde_json::Value) {
let mut body = body.clone();
body.as_object_mut().unwrap().insert(
"debug_options".to_owned(),
json!({
"disable_retrieval_augmented_code_completion": true
}),
);
let actual: serde_json::Value = CLIENT
.post("http://localhost:9090/v1/completions")
.json(&body)
.send()
.await
.unwrap()
.json()
.await
.unwrap();
assert_json_include!(actual: actual, expected: expected);
}
#[derive(Deserialize)]
struct TestCase {
request: serde_json::Value,
expected: serde_json::Value,
}
#[tokio::test]
async fn run_golden_tests() {
wait_for_server().await;
let cases: Vec<TestCase> = serdeconv::from_json_file(golden_path()).unwrap();
for case in cases {
golden_test(case.request, case.expected).await;
}
}