use super::MJAttributesAll;
use crate::parse_attribute;
use crate::prelude::parse::{Error, Parsable, Parser};
use xmlparser::{StrSpan, Tokenizer};
#[derive(Debug, Default)]
struct MJAttributesAllParser(MJAttributesAll);
impl Parser for MJAttributesAllParser {
type Output = MJAttributesAll;
fn build(self) -> Result<Self::Output, Error> {
Ok(self.0)
}
parse_attribute!();
}
impl Parsable for MJAttributesAll {
fn parse(_tag: StrSpan, tokenizer: &mut Tokenizer) -> Result<Self, Error> {
MJAttributesAllParser::default().parse(tokenizer)?.build()
}
}
#[cfg(test)]
mod tests {
use crate::mjml::MJML;
#[test]
fn parse_complete() {
let template = r#"
<mjml>
<mj-head>
<mj-attributes>
<mj-all color="red" />
</mj-attributes>
</mj-head>
</mjml>
"#;
let elt = MJML::parse(template.to_string()).unwrap();
assert!(elt.head().is_some());
assert!(elt.body().is_none());
let head = elt.head().unwrap();
assert_eq!(head.children().len(), 1);
}
}