mirror of
https://github.com/rust-lang/mdBook
synced 2025-01-06 01:38:54 +00:00
34 lines
1.9 KiB
Rust
34 lines
1.9 KiB
Rust
use crate::dummy_book::DummyBook;
|
|
|
|
use assert_cmd::Command;
|
|
use predicates::boolean::PredicateBooleanExt;
|
|
|
|
#[test]
|
|
fn mdbook_cli_can_correctly_test_a_passing_book() {
|
|
let temp = DummyBook::new().with_passing_test(true).build().unwrap();
|
|
|
|
let mut cmd = Command::cargo_bin("mdbook").unwrap();
|
|
cmd.arg("test").current_dir(temp.path());
|
|
cmd.assert().success()
|
|
.stderr(predicates::str::is_match(r##"Testing file: "([^"]+)[\\/]README.md""##).unwrap())
|
|
.stderr(predicates::str::is_match(r##"Testing file: "([^"]+)[\\/]intro.md""##).unwrap())
|
|
.stderr(predicates::str::is_match(r##"Testing file: "([^"]+)[\\/]first[\\/]index.md""##).unwrap())
|
|
.stderr(predicates::str::is_match(r##"Testing file: "([^"]+)[\\/]first[\\/]nested.md""##).unwrap())
|
|
.stderr(predicates::str::is_match(r##"rustdoc returned an error:\n\n"##).unwrap().not())
|
|
.stderr(predicates::str::is_match(r##"Nested_Chapter::Rustdoc_include_works_with_anchors_too \(line \d+\) ... FAILED"##).unwrap().not());
|
|
}
|
|
|
|
#[test]
|
|
fn mdbook_cli_detects_book_with_failing_tests() {
|
|
let temp = DummyBook::new().with_passing_test(false).build().unwrap();
|
|
|
|
let mut cmd = Command::cargo_bin("mdbook").unwrap();
|
|
cmd.arg("test").current_dir(temp.path());
|
|
cmd.assert().failure()
|
|
.stderr(predicates::str::is_match(r##"Testing file: "([^"]+)[\\/]README.md""##).unwrap())
|
|
.stderr(predicates::str::is_match(r##"Testing file: "([^"]+)[\\/]intro.md""##).unwrap())
|
|
.stderr(predicates::str::is_match(r##"Testing file: "([^"]+)[\\/]first[\\/]index.md""##).unwrap())
|
|
.stderr(predicates::str::is_match(r##"Testing file: "([^"]+)[\\/]first[\\/]nested.md""##).unwrap())
|
|
.stderr(predicates::str::is_match(r##"rustdoc returned an error:\n\n"##).unwrap())
|
|
.stderr(predicates::str::is_match(r##"Nested_Chapter::Rustdoc_include_works_with_anchors_too \(line \d+\) ... FAILED"##).unwrap());
|
|
}
|