Made sure the rendered content actually contains the original text
This commit is contained in:
parent
e3f047a35d
commit
8b7c95e02f
|
@ -160,6 +160,28 @@ fn rendered_code_has_playpen_stuff() {
|
||||||
assert_contains_strings(book_js, &[".playpen"]);
|
assert_contains_strings(book_js, &[".playpen"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn chapter_content_appears_in_rendered_document() {
|
||||||
|
let content = vec![
|
||||||
|
("index.html", "Here's some interesting text"),
|
||||||
|
("second.html", "Second Chapter"),
|
||||||
|
("first/nested.html", "testable code"),
|
||||||
|
("first/index.html", "more text"),
|
||||||
|
("conclusion.html", "Conclusion"),
|
||||||
|
];
|
||||||
|
|
||||||
|
let temp = create_book(true);
|
||||||
|
let mut md = MDBook::new(temp.path());
|
||||||
|
md.build().unwrap();
|
||||||
|
|
||||||
|
let destination = temp.path().join("book");
|
||||||
|
|
||||||
|
for (filename, text) in content {
|
||||||
|
let path = destination.join(filename);
|
||||||
|
assert_contains_strings(path, &[text]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Create a dummy book in a temporary directory, using the contents of
|
/// Create a dummy book in a temporary directory, using the contents of
|
||||||
/// `SUMMARY_MD` as a guide.
|
/// `SUMMARY_MD` as a guide.
|
||||||
///
|
///
|
||||||
|
@ -208,6 +230,8 @@ fn create_book(passing_test: bool) -> TempDir {
|
||||||
temp
|
temp
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Read the contents of the provided file into memory and then iterate through
|
||||||
|
/// the list of strings asserting that the file contains all of them.
|
||||||
fn assert_contains_strings<P: AsRef<Path>>(filename: P, strings: &[&str]) {
|
fn assert_contains_strings<P: AsRef<Path>>(filename: P, strings: &[&str]) {
|
||||||
println!("Checking {}", filename.as_ref().display());
|
println!("Checking {}", filename.as_ref().display());
|
||||||
println!();
|
println!();
|
||||||
|
@ -226,4 +250,4 @@ fn assert_contains_strings<P: AsRef<Path>>(filename: P, strings: &[&str]) {
|
||||||
println!("Checking for {:?}", s);
|
println!("Checking for {:?}", s);
|
||||||
assert!(content.contains(s));
|
assert!(content.contains(s));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue