99 lines
3.3 KiB
Rust
99 lines
3.3 KiB
Rust
![]() |
use anyhow::Result;
|
||
|
|
||
|
/// Executes a kcl program and takes a snapshot of the result.
|
||
|
/// This returns the bytes of the snapshot.
|
||
|
async fn execute_and_snapshot(code: &str) -> Result<image::DynamicImage> {
|
||
|
let user_agent = concat!(env!("CARGO_PKG_NAME"), ".rs/", env!("CARGO_PKG_VERSION"),);
|
||
|
let http_client = reqwest::Client::builder()
|
||
|
.user_agent(user_agent)
|
||
|
// For file conversions we need this to be long.
|
||
|
.timeout(std::time::Duration::from_secs(600))
|
||
|
.connect_timeout(std::time::Duration::from_secs(60));
|
||
|
let ws_client = reqwest::Client::builder()
|
||
|
.user_agent(user_agent)
|
||
|
// For file conversions we need this to be long.
|
||
|
.timeout(std::time::Duration::from_secs(600))
|
||
|
.connect_timeout(std::time::Duration::from_secs(60))
|
||
|
.tcp_keepalive(std::time::Duration::from_secs(600))
|
||
|
.http1_only();
|
||
|
|
||
|
let token = std::env::var("KITTYCAD_API_TOKEN").expect("KITTYCAD_API_TOKEN not set");
|
||
|
|
||
|
// Create the client.
|
||
|
let client = kittycad::Client::new_from_reqwest(token, http_client, ws_client);
|
||
|
|
||
|
let ws = client
|
||
|
.modeling()
|
||
|
.commands_ws(None, None, None, None, Some(false))
|
||
|
.await?;
|
||
|
|
||
|
// Create a temporary file to write the output to.
|
||
|
let output_file = std::env::temp_dir().join(format!("kcl_output_{}.png", uuid::Uuid::new_v4()));
|
||
|
|
||
|
let tokens = kcl_lib::tokeniser::lexer(code);
|
||
|
let parser = kcl_lib::parser::Parser::new(tokens);
|
||
|
let program = parser.ast()?;
|
||
|
let mut mem: kcl_lib::executor::ProgramMemory = Default::default();
|
||
|
let mut engine = kcl_lib::engine::EngineConnection::new(
|
||
|
ws,
|
||
|
std::env::temp_dir().display().to_string().as_str(),
|
||
|
output_file.display().to_string().as_str(),
|
||
|
)
|
||
|
.await?;
|
||
|
let _ = kcl_lib::executor::execute(program, &mut mem, kcl_lib::executor::BodyType::Root, &mut engine)?;
|
||
|
|
||
|
// Send a snapshot request to the engine.
|
||
|
engine.send_modeling_cmd(
|
||
|
uuid::Uuid::new_v4(),
|
||
|
kcl_lib::executor::SourceRange::default(),
|
||
|
kittycad::types::ModelingCmd::TakeSnapshot {
|
||
|
format: kittycad::types::ImageFormat::Png,
|
||
|
},
|
||
|
)?;
|
||
|
|
||
|
// Wait for the snapshot to be taken.
|
||
|
engine.wait_for_snapshot().await;
|
||
|
|
||
|
// Read the output file.
|
||
|
let actual = image::io::Reader::open(output_file).unwrap().decode().unwrap();
|
||
|
Ok(actual)
|
||
|
}
|
||
|
|
||
|
#[tokio::test(flavor = "multi_thread")]
|
||
|
async fn test_execute_with_function_sketch() {
|
||
|
let code = r#"const box = (h, l, w) => {
|
||
|
const myBox = startSketchAt([0,0])
|
||
|
|> line([0, l], %)
|
||
|
|> line([w, 0], %)
|
||
|
|> line([0, -l], %)
|
||
|
|> close(%)
|
||
|
|> extrude(h, %)
|
||
|
|
||
|
return myBox
|
||
|
}
|
||
|
|
||
|
const fnBox = box(3, 6, 10)
|
||
|
|
||
|
show(fnBox)"#;
|
||
|
|
||
|
let result = execute_and_snapshot(code).await.unwrap();
|
||
|
twenty_twenty::assert_image("tests/executor/outputs/function_sketch.png", &result, 1.0);
|
||
|
}
|
||
|
|
||
|
#[tokio::test(flavor = "multi_thread")]
|
||
|
async fn test_execute_with_angled_line() {
|
||
|
let code = r#"const part001 = startSketchAt([4.83, 12.56])
|
||
|
|> line([15.1, 2.48], %)
|
||
|
|> line({ to: [3.15, -9.85], tag: 'seg01' }, %)
|
||
|
|> line([-15.17, -4.1], %)
|
||
|
|> angledLine([segAng('seg01', %), 12.35], %)
|
||
|
|> line([-13.02, 10.03], %)
|
||
|
|> close(%)
|
||
|
|> extrude(4, %)
|
||
|
|
||
|
show(part001)"#;
|
||
|
|
||
|
let result = execute_and_snapshot(code).await.unwrap();
|
||
|
twenty_twenty::assert_image("tests/executor/outputs/angled_line.png", &result, 1.0);
|
||
|
}
|