#[cfg(test)]
mod tests {
use crate::test_helpers::*;
#[test]
fn test_bif_declare() {
let mut template = match crate::Template::new() {
Ok(tpl) => tpl,
Err(error) => {
println!("Error creating Template: {}", error);
assert!(false);
return;
}
};
template.merge_schema_str(SCHEMA).unwrap();
template.set_src_str(
"<div>{:include; tests/snippets.ntpl :}{:allow; test-for-tests >> one :}</div>",
);
let result = template.render();
assert!(!template.has_error());
assert_eq!(result, "<div>one</div>");
}
#[test]
fn test_bif_declare_no_outside_include() {
let mut template = match crate::Template::new() {
Ok(tpl) => tpl,
Err(error) => {
println!("Error creating Template: {}", error);
assert!(false);
return;
}
};
template.merge_schema_str(SCHEMA).unwrap();
template.set_src_str("<div>{:declare; test-for-tests >> one two three :}</div>");
let result = template.render();
assert!(template.has_error());
assert_eq!(result, "<div></div>");
}
#[test]
fn test_bif_declare_invalid_flag() {
let mut template = match crate::Template::new() {
Ok(tpl) => tpl,
Err(error) => {
println!("Error creating Template: {}", error);
assert!(false);
return;
}
};
template.merge_schema_str(SCHEMA).unwrap();
template.set_src_str(
"<div>{:include; tests/snippets-declare-invalid-flag.ntpl :}{:allow; test-for-tests >> one :}</div>",
);
let result = template.render();
assert!(template.has_error());
assert_eq!(result, "<div></div>");
}
}