2024-06-25 16:10:17 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test_examples_someFn {
|
|
|
|
#[tokio::test(flavor = "multi_thread")]
|
|
|
|
async fn test_mock_example_someFn0() {
|
|
|
|
let tokens = crate::token::lexer("someFn()").unwrap();
|
|
|
|
let parser = crate::parser::Parser::new(tokens);
|
|
|
|
let program = parser.ast().unwrap();
|
|
|
|
let ctx = crate::executor::ExecutorContext {
|
|
|
|
engine: std::sync::Arc::new(Box::new(
|
|
|
|
crate::engine::conn_mock::EngineConnection::new()
|
|
|
|
.await
|
|
|
|
.unwrap(),
|
|
|
|
)),
|
|
|
|
fs: std::sync::Arc::new(crate::fs::FileManager::new()),
|
|
|
|
stdlib: std::sync::Arc::new(crate::std::StdLib::new()),
|
|
|
|
settings: Default::default(),
|
|
|
|
is_mock: true,
|
|
|
|
};
|
2024-06-26 14:51:47 -07:00
|
|
|
ctx.run(&program, None).await.unwrap();
|
2024-06-25 16:10:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 5)]
|
|
|
|
async fn serial_test_example_someFn0() {
|
2024-07-31 09:54:46 -05:00
|
|
|
let code = "someFn()";
|
|
|
|
let result =
|
|
|
|
crate::test_server::execute_and_snapshot(code, crate::settings::types::UnitLength::Mm)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2024-06-25 16:10:17 -05:00
|
|
|
twenty_twenty::assert_image(
|
|
|
|
&format!("tests/outputs/{}.png", "serial_test_example_someFn0"),
|
2024-07-31 09:54:46 -05:00
|
|
|
&result,
|
2024-07-15 17:41:41 -05:00
|
|
|
0.99,
|
2024-06-25 16:10:17 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(non_camel_case_types, missing_docs)]
|
|
|
|
#[doc = "Std lib function: someFn\nDocs"]
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, schemars :: JsonSchema, ts_rs :: TS)]
|
|
|
|
#[ts(export)]
|
|
|
|
pub(crate) struct SomeFn {}
|
|
|
|
|
|
|
|
#[allow(non_upper_case_globals, missing_docs)]
|
|
|
|
#[doc = "Std lib function: someFn\nDocs"]
|
|
|
|
pub(crate) const SomeFn: SomeFn = SomeFn {};
|
|
|
|
fn boxed_someFn(
|
|
|
|
args: crate::std::Args,
|
|
|
|
) -> std::pin::Pin<
|
|
|
|
Box<
|
|
|
|
dyn std::future::Future<
|
|
|
|
Output = anyhow::Result<crate::executor::MemoryItem, crate::errors::KclError>,
|
|
|
|
> + Send,
|
|
|
|
>,
|
|
|
|
> {
|
|
|
|
Box::pin(someFn(args))
|
|
|
|
}
|
|
|
|
|
|
|
|
impl crate::docs::StdLibFn for SomeFn {
|
|
|
|
fn name(&self) -> String {
|
|
|
|
"someFn".to_string()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn summary(&self) -> String {
|
|
|
|
"Docs".to_string()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn description(&self) -> String {
|
|
|
|
"".to_string()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn tags(&self) -> Vec<String> {
|
|
|
|
vec![]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn args(&self) -> Vec<crate::docs::StdLibFnArg> {
|
|
|
|
let mut settings = schemars::gen::SchemaSettings::openapi3();
|
|
|
|
settings.inline_subschemas = true;
|
|
|
|
let mut generator = schemars::gen::SchemaGenerator::new(settings);
|
|
|
|
vec![crate::docs::StdLibFnArg {
|
|
|
|
name: "data".to_string(),
|
|
|
|
type_: "string".to_string(),
|
|
|
|
schema: str::json_schema(&mut generator),
|
|
|
|
required: true,
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn return_value(&self) -> Option<crate::docs::StdLibFnArg> {
|
|
|
|
let mut settings = schemars::gen::SchemaSettings::openapi3();
|
|
|
|
settings.inline_subschemas = true;
|
|
|
|
let mut generator = schemars::gen::SchemaGenerator::new(settings);
|
|
|
|
Some(crate::docs::StdLibFnArg {
|
|
|
|
name: "".to_string(),
|
|
|
|
type_: "i32".to_string(),
|
|
|
|
schema: <i32>::json_schema(&mut generator),
|
|
|
|
required: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn unpublished(&self) -> bool {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
|
|
|
fn deprecated(&self) -> bool {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
|
|
|
fn examples(&self) -> Vec<String> {
|
|
|
|
let code_blocks = vec!["someFn()"];
|
|
|
|
code_blocks
|
|
|
|
.iter()
|
|
|
|
.map(|cb| {
|
|
|
|
let tokens = crate::token::lexer(cb).unwrap();
|
|
|
|
let parser = crate::parser::Parser::new(tokens);
|
|
|
|
let program = parser.ast().unwrap();
|
|
|
|
let mut options: crate::ast::types::FormatOptions = Default::default();
|
|
|
|
options.insert_final_newline = false;
|
|
|
|
program.recast(&options, 0)
|
|
|
|
})
|
|
|
|
.collect::<Vec<String>>()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn std_lib_fn(&self) -> crate::std::StdFn {
|
|
|
|
boxed_someFn
|
|
|
|
}
|
|
|
|
|
|
|
|
fn clone_box(&self) -> Box<dyn crate::docs::StdLibFn> {
|
|
|
|
Box::new(self.clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc = r" Docs"]
|
|
|
|
#[doc = r" ```"]
|
|
|
|
#[doc = r" someFn()"]
|
|
|
|
#[doc = r" ```"]
|
|
|
|
fn someFn(data: &'a str) -> i32 {
|
|
|
|
3
|
|
|
|
}
|