use std::borrow::{Borrow, Cow};
use std::collections::{BTreeMap, VecDeque};
use std::fmt;
use std::rc::Rc;
use serde_json::value::Value as Json;
use crate::block::BlockContext;
use crate::context::Context;
use crate::error::RenderError;
use crate::helpers::HelperDef;
use crate::json::path::Path;
use crate::json::value::{JsonRender, PathAndJson, ScopedJson};
use crate::output::{Output, StringOutput};
use crate::registry::Registry;
use crate::support;
use crate::support::str::newline_matcher;
use crate::template::TemplateElement::{
DecoratorBlock, DecoratorExpression, Expression, HelperBlock, HtmlExpression, PartialBlock,
PartialExpression, RawString,
};
use crate::template::{
BlockParam, DecoratorTemplate, HelperTemplate, Parameter, Template, TemplateElement,
TemplateMapping,
};
use crate::{partial, RenderErrorReason};
const HELPER_MISSING: &str = "helperMissing";
const BLOCK_HELPER_MISSING: &str = "blockHelperMissing";
#[derive(Clone)]
pub struct RenderContext<'reg: 'rc, 'rc> {
dev_mode_templates: Option<&'rc BTreeMap<String, Cow<'rc, Template>>>,
blocks: VecDeque<BlockContext<'rc>>,
modified_context: Option<Rc<Context>>,
partials: BTreeMap<String, &'rc Template>,
partial_block_stack: VecDeque<&'rc Template>,
partial_block_depth: isize,
local_helpers: BTreeMap<String, Rc<dyn HelperDef + Send + Sync + 'rc>>,
current_template: Option<&'rc String>,
root_template: Option<&'reg String>,
disable_escape: bool,
trailing_newline: bool,
content_produced: bool,
indent_before_write: bool,
indent_string: Option<Cow<'rc, str>>,
}
impl<'reg: 'rc, 'rc> RenderContext<'reg, 'rc> {
pub fn new(root_template: Option<&'reg String>) -> RenderContext<'reg, 'rc> {
let mut blocks = VecDeque::with_capacity(5);
blocks.push_front(BlockContext::new());
let modified_context = None;
RenderContext {
partials: BTreeMap::new(),
partial_block_stack: VecDeque::new(),
partial_block_depth: 0,
local_helpers: BTreeMap::new(),
current_template: None,
root_template,
disable_escape: false,
trailing_newline: false,
content_produced: false,
indent_before_write: false,
indent_string: None,
blocks,
modified_context,
dev_mode_templates: None,
}
}
pub fn push_block(&mut self, block: BlockContext<'rc>) {
self.blocks.push_front(block);
}
pub fn pop_block(&mut self) {
self.blocks.pop_front();
}
pub(crate) fn clear_blocks(&mut self) {
self.blocks.clear();
}
pub fn block(&self) -> Option<&BlockContext<'rc>> {
self.blocks.front()
}
pub fn block_mut(&mut self) -> Option<&mut BlockContext<'rc>> {
self.blocks.front_mut()
}
pub fn context(&self) -> Option<Rc<Context>> {
self.modified_context.clone()
}
pub fn set_context(&mut self, ctx: Context) {
self.modified_context = Some(Rc::new(ctx));
}
pub fn evaluate(
&self,
context: &'rc Context,
relative_path: &str,
) -> Result<ScopedJson<'rc>, RenderError> {
let path = Path::parse(relative_path)?;
self.evaluate2(context, &path)
}
pub(crate) fn evaluate2(
&self,
context: &'rc Context,
path: &Path,
) -> Result<ScopedJson<'rc>, RenderError> {
match path {
Path::Local((level, name, _)) => Ok(self
.get_local_var(*level, name)
.map_or_else(|| ScopedJson::Missing, |v| ScopedJson::Derived(v.clone()))),
Path::Relative((segs, _)) => context.navigate(segs, &self.blocks),
}
}
pub fn get_partial(&self, name: &str) -> Option<&'rc Template> {
if name == partial::PARTIAL_BLOCK {
return self
.partial_block_stack
.get(self.partial_block_depth as usize)
.copied();
}
self.partials.get(name).copied()
}
pub fn set_partial(&mut self, name: String, partial: &'rc Template) {
self.partials.insert(name, partial);
}
pub(crate) fn push_partial_block(&mut self, partial: &'rc Template) {
self.partial_block_stack.push_front(partial);
}
pub(crate) fn pop_partial_block(&mut self) {
self.partial_block_stack.pop_front();
}
pub(crate) fn inc_partial_block_depth(&mut self) {
self.partial_block_depth += 1;
}
pub(crate) fn dec_partial_block_depth(&mut self) {
let depth = &mut self.partial_block_depth;
if *depth > 0 {
*depth -= 1;
}
}
pub(crate) fn set_indent_string(&mut self, indent: Option<Cow<'rc, str>>) {
self.indent_string = indent;
}
#[inline]
pub(crate) fn get_indent_string(&self) -> Option<&Cow<'rc, str>> {
self.indent_string.as_ref()
}
pub(crate) fn get_dev_mode_template(&self, name: &str) -> Option<&'rc Template> {
self.dev_mode_templates
.and_then(|dmt| dmt.get(name).map(|t| &**t))
}
pub(crate) fn set_dev_mode_templates(
&mut self,
t: Option<&'rc BTreeMap<String, Cow<'rc, Template>>>,
) {
self.dev_mode_templates = t;
}
pub fn remove_partial(&mut self, name: &str) {
self.partials.remove(name);
}
fn get_local_var(&self, level: usize, name: &str) -> Option<&Json> {
self.blocks
.get(level)
.and_then(|blk| blk.get_local_var(name))
}
pub fn is_current_template(&self, p: &str) -> bool {
self.current_template.is_some_and(|s| s == p)
}
pub fn register_local_helper(
&mut self,
name: &str,
def: Box<dyn HelperDef + Send + Sync + 'rc>,
) {
self.local_helpers.insert(name.to_string(), def.into());
}
pub fn unregister_local_helper(&mut self, name: &str) {
self.local_helpers.remove(name);
}
pub fn get_local_helper(&self, name: &str) -> Option<Rc<dyn HelperDef + Send + Sync + 'rc>> {
self.local_helpers.get(name).cloned()
}
#[inline]
fn has_local_helper(&self, name: &str) -> bool {
self.local_helpers.contains_key(name)
}
pub fn get_current_template_name(&self) -> Option<&'rc String> {
self.current_template
}
pub fn set_current_template_name(&mut self, name: Option<&'rc String>) {
self.current_template = name;
}
pub fn get_root_template_name(&self) -> Option<&'reg String> {
self.root_template
}
pub fn is_disable_escape(&self) -> bool {
self.disable_escape
}
pub fn set_disable_escape(&mut self, disable: bool) {
self.disable_escape = disable;
}
#[inline]
pub fn set_trailing_newline(&mut self, trailing_newline: bool) {
self.trailing_newline = trailing_newline;
}
#[inline]
pub fn get_trailine_newline(&self) -> bool {
self.trailing_newline
}
#[inline]
pub fn set_content_produced(&mut self, content_produced: bool) {
self.content_produced = content_produced;
}
#[inline]
pub fn get_content_produced(&self) -> bool {
self.content_produced
}
#[inline]
pub fn set_indent_before_write(&mut self, indent_before_write: bool) {
self.indent_before_write = indent_before_write;
}
#[inline]
pub fn get_indent_before_write(&self) -> bool {
self.indent_before_write
}
}
impl fmt::Debug for RenderContext<'_, '_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
f.debug_struct("RenderContextInner")
.field("dev_mode_templates", &self.dev_mode_templates)
.field("blocks", &self.blocks)
.field("modified_context", &self.modified_context)
.field("partials", &self.partials)
.field("partial_block_stack", &self.partial_block_stack)
.field("partial_block_depth", &self.partial_block_depth)
.field("root_template", &self.root_template)
.field("current_template", &self.current_template)
.field("disable_escape", &self.disable_escape)
.finish()
}
}
#[derive(Debug, Clone)]
pub struct Helper<'rc> {
name: Cow<'rc, str>,
params: Vec<PathAndJson<'rc>>,
hash: BTreeMap<&'rc str, PathAndJson<'rc>>,
template: Option<&'rc Template>,
inverse: Option<&'rc Template>,
block_param: Option<&'rc BlockParam>,
block: bool,
}
impl<'reg: 'rc, 'rc> Helper<'rc> {
fn try_from_template(
ht: &'rc HelperTemplate,
registry: &'reg Registry<'reg>,
context: &'rc Context,
render_context: &mut RenderContext<'reg, 'rc>,
) -> Result<Helper<'rc>, RenderError> {
let name = ht.name.expand_as_name(registry, context, render_context)?;
let mut pv = Vec::with_capacity(ht.params.len());
for p in &ht.params {
let r = p.expand(registry, context, render_context)?;
pv.push(r);
}
let mut hm = BTreeMap::new();
for (k, p) in &ht.hash {
let r = p.expand(registry, context, render_context)?;
hm.insert(k.as_ref(), r);
}
Ok(Helper {
name,
params: pv,
hash: hm,
template: ht.template.as_ref(),
inverse: ht.inverse.as_ref(),
block_param: ht.block_param.as_ref(),
block: ht.block,
})
}
pub fn name(&self) -> &str {
&self.name
}
pub fn params(&self) -> &Vec<PathAndJson<'rc>> {
&self.params
}
pub fn param(&self, idx: usize) -> Option<&PathAndJson<'rc>> {
self.params.get(idx)
}
pub fn hash(&self) -> &BTreeMap<&'rc str, PathAndJson<'rc>> {
&self.hash
}
pub fn hash_get(&self, key: &str) -> Option<&PathAndJson<'rc>> {
self.hash.get(key)
}
pub fn template(&self) -> Option<&'rc Template> {
self.template
}
pub fn inverse(&self) -> Option<&'rc Template> {
self.inverse
}
pub fn is_block(&self) -> bool {
self.block
}
pub fn has_block_param(&self) -> bool {
self.block_param.is_some()
}
pub fn block_param(&self) -> Option<&'rc str> {
if let Some(&BlockParam::Single(Parameter::Name(ref s))) = self.block_param {
Some(s)
} else {
None
}
}
pub fn block_param_pair(&self) -> Option<(&'rc str, &'rc str)> {
if let Some(&BlockParam::Pair((Parameter::Name(ref s1), Parameter::Name(ref s2)))) =
self.block_param
{
Some((s1, s2))
} else {
None
}
}
}
#[derive(Debug)]
pub struct Decorator<'rc> {
name: Cow<'rc, str>,
params: Vec<PathAndJson<'rc>>,
hash: BTreeMap<&'rc str, PathAndJson<'rc>>,
template: Option<&'rc Template>,
indent: Option<Cow<'rc, str>>,
}
impl<'reg: 'rc, 'rc> Decorator<'rc> {
fn try_from_template(
dt: &'rc DecoratorTemplate,
registry: &'reg Registry<'reg>,
context: &'rc Context,
render_context: &mut RenderContext<'reg, 'rc>,
) -> Result<Decorator<'rc>, RenderError> {
let name = dt.name.expand_as_name(registry, context, render_context)?;
let mut pv = Vec::with_capacity(dt.params.len());
for p in &dt.params {
let r = p.expand(registry, context, render_context)?;
pv.push(r);
}
let mut hm = BTreeMap::new();
for (k, p) in &dt.hash {
let r = p.expand(registry, context, render_context)?;
hm.insert(k.as_ref(), r);
}
let indent = match (render_context.get_indent_string(), dt.indent.as_ref()) {
(None, None) => None,
(Some(s), None) => Some(s.clone()),
(None, Some(s)) => Some(Cow::Borrowed(&**s)),
(Some(s1), Some(s2)) => {
let mut res = s1.to_string();
res.push_str(s2);
Some(Cow::from(res))
}
};
Ok(Decorator {
name,
params: pv,
hash: hm,
template: dt.template.as_ref(),
indent,
})
}
pub fn name(&self) -> &str {
self.name.as_ref()
}
pub fn params(&self) -> &Vec<PathAndJson<'rc>> {
&self.params
}
pub fn param(&self, idx: usize) -> Option<&PathAndJson<'rc>> {
self.params.get(idx)
}
pub fn hash(&self) -> &BTreeMap<&'rc str, PathAndJson<'rc>> {
&self.hash
}
pub fn hash_get(&self, key: &str) -> Option<&PathAndJson<'rc>> {
self.hash.get(key)
}
pub fn template(&self) -> Option<&'rc Template> {
self.template
}
pub fn indent(&self) -> Option<&Cow<'rc, str>> {
self.indent.as_ref()
}
}
pub trait Renderable {
fn render<'reg: 'rc, 'rc>(
&'rc self,
registry: &'reg Registry<'reg>,
context: &'rc Context,
rc: &mut RenderContext<'reg, 'rc>,
out: &mut dyn Output,
) -> Result<(), RenderError>;
fn renders<'reg: 'rc, 'rc>(
&'rc self,
registry: &'reg Registry<'reg>,
ctx: &'rc Context,
rc: &mut RenderContext<'reg, 'rc>,
) -> Result<String, RenderError> {
let mut so = StringOutput::new();
self.render(registry, ctx, rc, &mut so)?;
so.into_string()
.map_err(|e| RenderErrorReason::from(e).into())
}
}
pub trait Evaluable {
fn eval<'reg: 'rc, 'rc>(
&'rc self,
registry: &'reg Registry<'reg>,
context: &'rc Context,
rc: &mut RenderContext<'reg, 'rc>,
) -> Result<(), RenderError>;
}
#[inline]
fn call_helper_for_value<'reg: 'rc, 'rc>(
hd: &dyn HelperDef,
ht: &Helper<'rc>,
r: &'reg Registry<'reg>,
ctx: &'rc Context,
rc: &mut RenderContext<'reg, 'rc>,
) -> Result<PathAndJson<'rc>, RenderError> {
match hd.call_inner(ht, r, ctx, rc) {
Ok(result) => Ok(PathAndJson::new(None, result)),
Err(e) => {
if e.is_unimplemented() {
let mut so = StringOutput::new();
let disable_escape = rc.is_disable_escape();
rc.set_disable_escape(true);
hd.call(ht, r, ctx, rc, &mut so)?;
rc.set_disable_escape(disable_escape);
let string = so.into_string().map_err(RenderError::from)?;
Ok(PathAndJson::new(
None,
ScopedJson::Derived(Json::String(string)),
))
} else {
Err(e)
}
}
}
}
impl Parameter {
pub fn expand_as_name<'reg: 'rc, 'rc>(
&'rc self,
registry: &'reg Registry<'reg>,
ctx: &'rc Context,
rc: &mut RenderContext<'reg, 'rc>,
) -> Result<Cow<'rc, str>, RenderError> {
match self {
Parameter::Name(ref name) => Ok(Cow::Borrowed(name)),
Parameter::Path(ref p) => Ok(Cow::Borrowed(p.raw())),
Parameter::Subexpression(_) => self
.expand(registry, ctx, rc)
.map(|v| v.value().render())
.map(Cow::Owned),
Parameter::Literal(ref j) => Ok(Cow::Owned(j.render())),
}
}
pub fn expand<'reg: 'rc, 'rc>(
&'rc self,
registry: &'reg Registry<'reg>,
ctx: &'rc Context,
rc: &mut RenderContext<'reg, 'rc>,
) -> Result<PathAndJson<'rc>, RenderError> {
match self {
Parameter::Name(ref name) => {
Ok(PathAndJson::new(Some(name.to_owned()), ScopedJson::Missing))
}
Parameter::Path(ref path) => {
if let Some(rc_context) = rc.context() {
let result = rc.evaluate2(rc_context.borrow(), path)?;
Ok(PathAndJson::new(
Some(path.raw().to_owned()),
ScopedJson::Derived(result.as_json().clone()),
))
} else {
let result = rc.evaluate2(ctx, path)?;
Ok(PathAndJson::new(Some(path.raw().to_owned()), result))
}
}
Parameter::Literal(ref j) => Ok(PathAndJson::new(None, ScopedJson::Constant(j))),
Parameter::Subexpression(ref t) => match *t.as_element() {
Expression(ref ht) => {
let name = ht.name.expand_as_name(registry, ctx, rc)?;
let h = Helper::try_from_template(ht, registry, ctx, rc)?;
if let Some(ref d) = rc.get_local_helper(&name) {
call_helper_for_value(d.as_ref(), &h, registry, ctx, rc)
} else {
let mut helper = registry.get_or_load_helper(&name)?;
if helper.is_none() {
helper = registry.get_or_load_helper(if ht.block {
BLOCK_HELPER_MISSING
} else {
HELPER_MISSING
})?;
}
helper
.ok_or_else(|| {
RenderErrorReason::HelperNotFound(name.to_string()).into()
})
.and_then(|d| call_helper_for_value(d.as_ref(), &h, registry, ctx, rc))
}
}
_ => unreachable!(),
},
}
}
}
impl Renderable for Template {
fn render<'reg: 'rc, 'rc>(
&'rc self,
registry: &'reg Registry<'reg>,
ctx: &'rc Context,
rc: &mut RenderContext<'reg, 'rc>,
out: &mut dyn Output,
) -> Result<(), RenderError> {
rc.set_current_template_name(self.name.as_ref());
let iter = self.elements.iter();
for (idx, t) in iter.enumerate() {
t.render(registry, ctx, rc, out).map_err(|mut e| {
if e.line_no.is_none() {
if let Some(&TemplateMapping(line, col)) = self.mapping.get(idx) {
e.line_no = Some(line);
e.column_no = Some(col);
}
}
if e.template_name.is_none() {
e.template_name.clone_from(&self.name);
}
e
})?;
}
Ok(())
}
}
impl Evaluable for Template {
fn eval<'reg: 'rc, 'rc>(
&'rc self,
registry: &'reg Registry<'reg>,
ctx: &'rc Context,
rc: &mut RenderContext<'reg, 'rc>,
) -> Result<(), RenderError> {
let iter = self.elements.iter();
for (idx, t) in iter.enumerate() {
t.eval(registry, ctx, rc).map_err(|mut e| {
if e.line_no.is_none() {
if let Some(&TemplateMapping(line, col)) = self.mapping.get(idx) {
e.line_no = Some(line);
e.column_no = Some(col);
}
}
e.template_name.clone_from(&self.name);
e
})?;
}
Ok(())
}
}
fn helper_exists<'reg: 'rc, 'rc>(
name: &str,
reg: &Registry<'reg>,
rc: &RenderContext<'reg, 'rc>,
) -> bool {
rc.has_local_helper(name) || reg.has_helper(name)
}
#[inline]
fn render_helper<'reg: 'rc, 'rc>(
ht: &'rc HelperTemplate,
registry: &'reg Registry<'reg>,
ctx: &'rc Context,
rc: &mut RenderContext<'reg, 'rc>,
out: &mut dyn Output,
) -> Result<(), RenderError> {
let h = Helper::try_from_template(ht, registry, ctx, rc)?;
debug!(
"Rendering helper: {:?}, params: {:?}, hash: {:?}",
h.name(),
h.params(),
h.hash()
);
let mut call_indent_aware = |helper_def: &dyn HelperDef, rc: &mut RenderContext<'reg, 'rc>| {
let indent_directive_before = rc.get_indent_before_write();
let content_produced_before = rc.get_content_produced();
rc.set_content_produced(false);
rc.set_indent_before_write(
indent_directive_before || (ht.indent_before_write && rc.get_trailine_newline()),
);
helper_def.call(&h, registry, ctx, rc, out)?;
if rc.get_content_produced() {
rc.set_indent_before_write(rc.get_trailine_newline());
} else {
rc.set_content_produced(content_produced_before);
rc.set_indent_before_write(indent_directive_before);
}
Ok(())
};
if let Some(ref d) = rc.get_local_helper(h.name()) {
call_indent_aware(&**d, rc)
} else {
let mut helper = registry.get_or_load_helper(h.name())?;
if helper.is_none() {
helper = registry.get_or_load_helper(if ht.block {
BLOCK_HELPER_MISSING
} else {
HELPER_MISSING
})?;
}
helper
.ok_or_else(|| RenderErrorReason::HelperNotFound(h.name().to_owned()).into())
.and_then(|d| call_indent_aware(&*d, rc))
}
}
pub(crate) fn do_escape(r: &Registry<'_>, rc: &RenderContext<'_, '_>, content: String) -> String {
if !rc.is_disable_escape() {
r.get_escape_fn()(&content)
} else {
content
}
}
#[inline]
pub fn indent_aware_write(
v: &str,
rc: &mut RenderContext<'_, '_>,
out: &mut dyn Output,
) -> Result<(), RenderError> {
if v.is_empty() {
return Ok(());
}
rc.set_content_produced(true);
if !v.starts_with(newline_matcher) && rc.get_indent_before_write() {
if let Some(indent) = rc.get_indent_string() {
out.write(indent)?;
}
}
if let Some(indent) = rc.get_indent_string() {
support::str::write_indented(v, indent, out)?;
} else {
out.write(v.as_ref())?;
}
let trailing_newline = v.ends_with(newline_matcher);
rc.set_trailing_newline(trailing_newline);
rc.set_indent_before_write(trailing_newline);
Ok(())
}
impl Renderable for TemplateElement {
fn render<'reg: 'rc, 'rc>(
&'rc self,
registry: &'reg Registry<'reg>,
ctx: &'rc Context,
rc: &mut RenderContext<'reg, 'rc>,
out: &mut dyn Output,
) -> Result<(), RenderError> {
match self {
RawString(ref v) => indent_aware_write(v.as_ref(), rc, out),
Expression(ref ht) | HtmlExpression(ref ht) => {
let is_html_expression = matches!(self, HtmlExpression(_));
if is_html_expression {
rc.set_disable_escape(true);
}
let result = if ht.is_name_only() {
let helper_name = ht.name.expand_as_name(registry, ctx, rc)?;
if helper_exists(&helper_name, registry, rc) {
render_helper(ht, registry, ctx, rc, out)
} else {
debug!("Rendering value: {:?}", ht.name);
let context_json = ht.name.expand(registry, ctx, rc)?;
if context_json.is_value_missing() {
if registry.strict_mode() {
Err(RenderError::strict_error(context_json.relative_path()))
} else {
if let Some(hook) = registry.get_or_load_helper(HELPER_MISSING)? {
let h = Helper::try_from_template(ht, registry, ctx, rc)?;
hook.call(&h, registry, ctx, rc, out)
} else {
Ok(())
}
}
} else {
let rendered = context_json.value().render();
let output = do_escape(registry, rc, rendered);
indent_aware_write(output.as_ref(), rc, out)
}
}
} else {
render_helper(ht, registry, ctx, rc, out)
};
if is_html_expression {
rc.set_disable_escape(false);
}
result
}
HelperBlock(ref ht) => render_helper(ht, registry, ctx, rc, out),
DecoratorExpression(_) | DecoratorBlock(_) => self.eval(registry, ctx, rc),
PartialExpression(ref dt) | PartialBlock(ref dt) => {
let di = Decorator::try_from_template(dt, registry, ctx, rc)?;
let indent_directive_before = rc.get_indent_before_write();
let content_produced_before = rc.get_content_produced();
rc.set_indent_before_write(
dt.indent_before_write && (rc.get_trailine_newline() || dt.indent.is_some()),
);
rc.set_content_produced(false);
partial::expand_partial(&di, registry, ctx, rc, out)?;
if rc.get_content_produced() {
rc.set_indent_before_write(rc.get_trailine_newline());
} else {
rc.set_content_produced(content_produced_before);
rc.set_indent_before_write(indent_directive_before);
}
Ok(())
}
_ => Ok(()),
}
}
}
impl Evaluable for TemplateElement {
fn eval<'reg: 'rc, 'rc>(
&'rc self,
registry: &'reg Registry<'reg>,
ctx: &'rc Context,
rc: &mut RenderContext<'reg, 'rc>,
) -> Result<(), RenderError> {
match *self {
DecoratorExpression(ref dt) | DecoratorBlock(ref dt) => {
let di = Decorator::try_from_template(dt, registry, ctx, rc)?;
match registry.get_decorator(di.name()) {
Some(d) => d.call(&di, registry, ctx, rc),
None => Err(RenderErrorReason::DecoratorNotFound(di.name().to_owned()).into()),
}
}
_ => Ok(()),
}
}
}
#[cfg(test)]
mod test {
use std::collections::BTreeMap;
use super::{Helper, RenderContext, Renderable};
use crate::block::BlockContext;
use crate::context::Context;
use crate::error::RenderError;
use crate::json::path::Path;
use crate::json::value::JsonRender;
use crate::output::{Output, StringOutput};
use crate::registry::Registry;
use crate::template::TemplateElement::*;
use crate::template::{HelperTemplate, Template, TemplateElement};
#[test]
fn test_raw_string() {
let r = Registry::new();
let raw_string = RawString("<h1>hello world</h1>".to_string());
let mut out = StringOutput::new();
let ctx = Context::null();
{
let mut rc = RenderContext::new(None);
raw_string.render(&r, &ctx, &mut rc, &mut out).ok().unwrap();
}
assert_eq!(
out.into_string().unwrap(),
"<h1>hello world</h1>".to_string()
);
}
#[test]
fn test_expression() {
let r = Registry::new();
let element = Expression(Box::new(HelperTemplate::with_path(Path::with_named_paths(
&["hello"],
))));
let mut out = StringOutput::new();
let mut m: BTreeMap<String, String> = BTreeMap::new();
let value = "<p></p>".to_string();
m.insert("hello".to_string(), value);
let ctx = Context::wraps(&m).unwrap();
{
let mut rc = RenderContext::new(None);
element.render(&r, &ctx, &mut rc, &mut out).ok().unwrap();
}
assert_eq!(
out.into_string().unwrap(),
"<p></p>".to_string()
);
}
#[test]
fn test_html_expression() {
let r = Registry::new();
let element = HtmlExpression(Box::new(HelperTemplate::with_path(Path::with_named_paths(
&["hello"],
))));
let mut out = StringOutput::new();
let mut m: BTreeMap<String, String> = BTreeMap::new();
let value = "world";
m.insert("hello".to_string(), value.to_string());
let ctx = Context::wraps(&m).unwrap();
{
let mut rc = RenderContext::new(None);
element.render(&r, &ctx, &mut rc, &mut out).ok().unwrap();
}
assert_eq!(out.into_string().unwrap(), value.to_string());
}
#[test]
fn test_template() {
let r = Registry::new();
let mut out = StringOutput::new();
let mut m: BTreeMap<String, String> = BTreeMap::new();
let value = "world".to_string();
m.insert("hello".to_string(), value);
let ctx = Context::wraps(&m).unwrap();
let elements: Vec<TemplateElement> = vec![
RawString("<h1>".to_string()),
Expression(Box::new(HelperTemplate::with_path(Path::with_named_paths(
&["hello"],
)))),
RawString("</h1>".to_string()),
Comment(String::new()),
];
let template = Template {
elements,
name: None,
mapping: Vec::new(),
};
{
let mut rc = RenderContext::new(None);
template.render(&r, &ctx, &mut rc, &mut out).ok().unwrap();
}
assert_eq!(out.into_string().unwrap(), "<h1>world</h1>".to_string());
}
#[test]
fn test_render_context_promotion_and_demotion() {
use crate::json::value::to_json;
let mut render_context = RenderContext::new(None);
let mut block = BlockContext::new();
block.set_local_var("index", to_json(0));
render_context.push_block(block);
render_context.push_block(BlockContext::new());
assert_eq!(
render_context.get_local_var(1, "index").unwrap(),
&to_json(0)
);
render_context.pop_block();
assert_eq!(
render_context.get_local_var(0, "index").unwrap(),
&to_json(0)
);
}
#[test]
fn test_render_subexpression_issue_115() {
use crate::support::str::StringWriter;
let mut r = Registry::new();
r.register_helper(
"format",
Box::new(
|h: &Helper<'_>,
_: &Registry<'_>,
_: &Context,
_: &mut RenderContext<'_, '_>,
out: &mut dyn Output|
-> Result<(), RenderError> {
out.write(&h.param(0).unwrap().value().render())
.map_err(RenderError::from)
},
),
);
let mut sw = StringWriter::new();
let mut m: BTreeMap<String, String> = BTreeMap::new();
m.insert("a".to_string(), "123".to_string());
{
if let Err(e) = r.render_template_to_write("{{format (format a)}}", &m, &mut sw) {
panic!("{}", e);
}
}
assert_eq!(sw.into_string(), "123".to_string());
}
#[test]
fn test_render_error_line_no() {
let mut r = Registry::new();
let m: BTreeMap<String, String> = BTreeMap::new();
let name = "invalid_template";
assert!(r
.register_template_string(name, "<h1>\n{{#if true}}\n {{#each}}{{/each}}\n{{/if}}")
.is_ok());
if let Err(e) = r.render(name, &m) {
assert_eq!(e.line_no.unwrap(), 3);
assert_eq!(e.column_no.unwrap(), 3);
assert_eq!(e.template_name, Some(name.to_owned()));
} else {
panic!("Error expected");
}
}
#[test]
fn test_partial_failback_render() {
let mut r = Registry::new();
assert!(r
.register_template_string("parent", "<html>{{> layout}}</html>")
.is_ok());
assert!(r
.register_template_string(
"child",
"{{#*inline \"layout\"}}content{{/inline}}{{#> parent}}{{> seg}}{{/parent}}",
)
.is_ok());
assert!(r.register_template_string("seg", "1234").is_ok());
let r = r.render("child", &true).expect("should work");
assert_eq!(r, "<html>content</html>");
}
#[test]
fn test_key_with_slash() {
let mut r = Registry::new();
assert!(r
.register_template_string("t", "{{#each this}}{{@key}}: {{this}}\n{{/each}}")
.is_ok());
let r = r.render("t", &json!({"/foo": "bar"})).unwrap();
assert_eq!(r, "/foo: bar\n");
}
#[test]
fn test_comment() {
let r = Registry::new();
assert_eq!(
r.render_template("Hello {{this}} {{! test me }}", &0)
.unwrap(),
"Hello 0 "
);
}
#[test]
fn test_zero_args_heler() {
let mut r = Registry::new();
r.register_helper(
"name",
Box::new(
|_: &Helper<'_>,
_: &Registry<'_>,
_: &Context,
_: &mut RenderContext<'_, '_>,
out: &mut dyn Output|
-> Result<(), RenderError> {
out.write("N/A").map_err(Into::into)
},
),
);
r.register_template_string("t0", "Output name: {{name}}")
.unwrap();
r.register_template_string("t1", "Output name: {{first_name}}")
.unwrap();
r.register_template_string("t2", "Output name: {{./name}}")
.unwrap();
assert_eq!(
r.render("t0", &json!({"name": "Alex"})).unwrap(),
"Output name: N/A"
);
assert_eq!(
r.render("t2", &json!({"name": "Alex"})).unwrap(),
"Output name: Alex"
);
assert_eq!(
r.render("t1", &json!({"name": "Alex"})).unwrap(),
"Output name: "
);
r.set_strict_mode(true);
assert!(r.render("t1", &json!({"name": "Alex"})).is_err());
r.set_strict_mode(false);
r.register_helper(
"helperMissing",
Box::new(
|h: &Helper<'_>,
_: &Registry<'_>,
_: &Context,
_: &mut RenderContext<'_, '_>,
out: &mut dyn Output|
-> Result<(), RenderError> {
let name = h.name();
write!(out, "{name} not resolved")?;
Ok(())
},
),
);
assert_eq!(
r.render("t1", &json!({"name": "Alex"})).unwrap(),
"Output name: first_name not resolved"
);
}
#[test]
fn test_identifiers_starting_with_numbers() {
let mut r = Registry::new();
assert!(r
.register_template_string("r1", "{{#if 0a}}true{{/if}}")
.is_ok());
let r1 = r.render("r1", &json!({"0a": true})).unwrap();
assert_eq!(r1, "true");
assert!(r.register_template_string("r2", "{{eq 1a 1}}").is_ok());
let r2 = r.render("r2", &json!({"1a": 2, "a": 1})).unwrap();
assert_eq!(r2, "false");
assert!(r
.register_template_string("r3", "0: {{0}} {{#if (eq 0 true)}}resolved from context{{/if}}\n1a: {{1a}} {{#if (eq 1a true)}}resolved from context{{/if}}\n2_2: {{2_2}} {{#if (eq 2_2 true)}}resolved from context{{/if}}") .is_ok());
let r3 = r
.render("r3", &json!({"0": true, "1a": true, "2_2": true}))
.unwrap();
assert_eq!(
r3,
"0: true \n1a: true resolved from context\n2_2: true resolved from context"
);
assert!(r.register_template_string("r4", "{{eq 1}}").is_ok());
assert!(r.register_template_string("r5", "{{eq a1}}").is_ok());
assert!(r.register_template_string("r6", "{{eq 1a}}").is_ok());
assert!(r.render("r4", &()).is_err());
assert!(r.render("r5", &()).is_err());
assert!(r.render("r6", &()).is_err());
}
}