use crate::documents::{BuildXML, HistoryId, Run}; use crate::xml_builder::*; #[derive(Debug, Clone)] pub struct Insert { author: String, date: String, run: Run, } impl Default for Insert { fn default() -> Insert { Insert { author: "unnamed".to_owned(), date: "1970-01-01T00:00:00Z".to_owned(), run: Run::new(), } } } impl Insert { pub fn new() -> Insert { Default::default() } pub fn run(mut self, run: Run) -> Insert { self.run = run; self } } impl HistoryId for Insert {} impl BuildXML for Insert { fn build(&self) -> Vec { XMLBuilder::new() .open_insert(&self.generate(), &self.author, &self.date) .add_child(&self.run) .close() .build() } } #[cfg(test)] mod tests { use super::*; #[cfg(test)] use pretty_assertions::assert_eq; use std::str; #[test] fn test_ins_default() { let b = Insert::new().build(); assert_eq!( str::from_utf8(&b).unwrap(), r#""# ); } }