From 9e9cf49c503a9d7a47ec57457d0d5875f100b987 Mon Sep 17 00:00:00 2001 From: FrankHB Date: Wed, 7 Oct 2020 22:50:25 +0800 Subject: Added a test. Signed-off-by: FrankHB --- src/book/book.rs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'src/book') diff --git a/src/book/book.rs b/src/book/book.rs index 09b51888..35f66438 100644 --- a/src/book/book.rs +++ b/src/book/book.rs @@ -397,6 +397,29 @@ And here is some \ assert_eq!(got, should_be); } + #[test] + fn load_a_single_chapter_with_utf8_bom_from_disk() { + let temp_dir = TempFileBuilder::new().prefix("book").tempdir().unwrap(); + + let chapter_path = temp_dir.path().join("chapter_1.md"); + File::create(&chapter_path) + .unwrap() + .write_all(("\u{feff}".to_owned() + DUMMY_SRC).as_bytes()) + .unwrap(); + + let link = Link::new("Chapter 1", chapter_path); + + let should_be = Chapter::new( + "Chapter 1", + DUMMY_SRC.to_string(), + "chapter_1.md", + Vec::new(), + ); + + let got = load_chapter(&link, temp_dir.path(), Vec::new()).unwrap(); + assert_eq!(got, should_be); + } + #[test] fn cant_load_a_nonexistent_chapter() { let link = Link::new("Chapter 1", "/foo/bar/baz.md"); -- cgit v1.2.3