Wrote unit test for reserved print.md file name

This commit is contained in:
Sytse Reitsma 2019-04-13 14:08:44 +02:00
parent a66d44190e
commit 7f7ccaeb3a
1 changed files with 38 additions and 1 deletions

View File

@ -1,4 +1,4 @@
use book::{Book, BookItem};
use book::{Book, BookItem, Chapter};
use config::{Config, HtmlConfig, Playpen};
use errors::*;
use renderer::html_handlebars::helpers;
@ -669,4 +669,41 @@ mod tests {
assert_eq!(got, should_be);
}
}
#[test]
fn print_dot_md_is_reserved() {
let handlebars = HtmlHandlebars::new();
let item = BookItem::Chapter(Chapter::new(
"Goodbye World",
String::new(),
"print.md",
Vec::new(),
));
let ctx = RenderItemContext {
handlebars: &Handlebars::new(),
destination: PathBuf::new(),
data: serde_json::from_str("{}").unwrap(),
is_index: false,
html_config: HtmlConfig {
curly_quotes: true,
google_analytics: Some(String::from("123456")),
additional_css: vec![PathBuf::from("./foo/bar/baz.css")],
theme: Some(PathBuf::from("./themedir")),
default_theme: Some(String::from("rust")),
playpen: Playpen {
editable: true,
copy_js: true,
},
git_repository_url: Some(String::from("https://foo.com/")),
git_repository_icon: Some(String::from("fa-code-fork")),
..Default::default()
}
};
let mut content = String::new();
match handlebars.render_item(&item, ctx, &mut content) {
Ok(_) => assert!(false, "Expected a failure"),
Err(error)=> assert_eq!(error.to_string(), "print.md is reserved for internal use"),
};
}
}