mdbook/src/cmd/test.rs

69 lines
2.3 KiB
Rust
Raw Normal View History

use crate::get_book_dir;
use clap::{arg, App, Arg, ArgMatches};
2018-07-23 12:45:01 -05:00
use mdbook::errors::Result;
use mdbook::MDBook;
// Create clap subcommand arguments
2022-01-18 15:56:45 -06:00
pub fn make_subcommand<'help>() -> App<'help> {
App::new("test")
2018-08-02 15:48:22 -05:00
.about("Tests that a book's Rust code samples compile")
.arg(
Arg::new("dest-dir")
.short('d')
.long("dest-dir")
.value_name("dest-dir")
.help(
"Output directory for the book{n}\
Relative paths are interpreted relative to the book's root directory.{n}\
If omitted, mdBook uses build.build-dir from book.toml or defaults to `./book`.",
),
).arg(
Arg::new("chapter")
.short('c')
.long("chapter")
.value_name("chapter")
.help(
"Only test the specified chapter{n}\
Where the name of the chapter is defined in the SUMMARY.md file.{n}\
Use the special name \"?\" to the list of chapter names."
)
2018-08-02 15:48:22 -05:00
)
.arg(arg!([dir]
"Root directory for the book{n}\
(Defaults to the Current Directory when omitted)"
))
.arg(Arg::new("library-path")
2022-01-18 15:56:45 -06:00
.short('L')
2018-08-02 15:48:22 -05:00
.long("library-path")
.value_name("dir")
.takes_value(true)
2022-01-18 15:56:45 -06:00
.use_delimiter(true)
2018-08-02 15:48:22 -05:00
.require_delimiter(true)
.multiple_values(true)
.multiple_occurrences(true)
.forbid_empty_values(true)
2018-08-02 15:48:22 -05:00
.help("A comma-separated list of directories to add to {n}the crate search path when building tests"))
}
// test command implementation
pub fn execute(args: &ArgMatches) -> Result<()> {
let library_paths: Vec<&str> = args
.values_of("library-path")
.map(std::iter::Iterator::collect)
2018-07-23 12:45:01 -05:00
.unwrap_or_default();
let chapter: Option<&str> = args.value_of("chapter");
let book_dir = get_book_dir(args);
let mut book = MDBook::load(&book_dir)?;
2018-08-02 15:48:22 -05:00
if let Some(dest_dir) = args.value_of("dest-dir") {
book.config.build.build_dir = dest_dir.into();
}
match chapter {
Some(_) => book.test_chapter(library_paths, chapter),
None => book.test(library_paths),
}?;
Ok(())
}