2017-07-10 18:17:19 +08:00
|
|
|
extern crate mdbook;
|
|
|
|
extern crate tempdir;
|
|
|
|
|
2017-09-30 22:11:47 +08:00
|
|
|
use std::path::PathBuf;
|
2017-11-18 23:21:59 +08:00
|
|
|
use std::fs;
|
2017-07-10 18:17:19 +08:00
|
|
|
use mdbook::MDBook;
|
2017-11-18 20:41:04 +08:00
|
|
|
use mdbook::config::Config;
|
2017-09-30 22:11:47 +08:00
|
|
|
use tempdir::TempDir;
|
2017-07-10 18:17:19 +08:00
|
|
|
|
|
|
|
|
2017-08-02 22:29:28 +08:00
|
|
|
/// Run `mdbook init` in an empty directory and make sure the default files
|
|
|
|
/// are created.
|
2017-07-10 18:17:19 +08:00
|
|
|
#[test]
|
2017-08-02 22:29:28 +08:00
|
|
|
fn base_mdbook_init_should_create_default_content() {
|
2017-07-10 18:17:19 +08:00
|
|
|
let created_files = vec!["book", "src", "src/SUMMARY.md", "src/chapter_1.md"];
|
|
|
|
|
|
|
|
let temp = TempDir::new("mdbook").unwrap();
|
|
|
|
for file in &created_files {
|
|
|
|
assert!(!temp.path().join(file).exists());
|
|
|
|
}
|
|
|
|
|
2017-11-18 22:07:08 +08:00
|
|
|
MDBook::init(temp.path()).build().unwrap();
|
2017-07-10 18:17:19 +08:00
|
|
|
|
|
|
|
for file in &created_files {
|
2017-09-30 22:11:47 +08:00
|
|
|
let target = temp.path().join(file);
|
|
|
|
println!("{}", target.display());
|
|
|
|
assert!(target.exists(), "{} doesn't exist", file);
|
2017-07-10 18:17:19 +08:00
|
|
|
}
|
|
|
|
}
|
2017-07-10 18:23:51 +08:00
|
|
|
|
2017-08-02 22:29:28 +08:00
|
|
|
/// Set some custom arguments for where to place the source and destination
|
|
|
|
/// files, then call `mdbook init`.
|
2017-07-10 18:23:51 +08:00
|
|
|
#[test]
|
2017-08-02 22:29:28 +08:00
|
|
|
fn run_mdbook_init_with_custom_book_and_src_locations() {
|
2017-07-10 18:23:51 +08:00
|
|
|
let created_files = vec!["out", "in", "in/SUMMARY.md", "in/chapter_1.md"];
|
|
|
|
|
|
|
|
let temp = TempDir::new("mdbook").unwrap();
|
|
|
|
for file in &created_files {
|
2017-11-18 20:41:04 +08:00
|
|
|
assert!(
|
|
|
|
!temp.path().join(file).exists(),
|
|
|
|
"{} shouldn't exist yet!",
|
|
|
|
file
|
|
|
|
);
|
2017-07-10 18:23:51 +08:00
|
|
|
}
|
|
|
|
|
2017-11-18 20:41:04 +08:00
|
|
|
let mut cfg = Config::default();
|
|
|
|
cfg.book.src = PathBuf::from("in");
|
|
|
|
cfg.build.build_dir = PathBuf::from("out");
|
2017-07-10 18:23:51 +08:00
|
|
|
|
2017-11-18 22:16:35 +08:00
|
|
|
MDBook::init(temp.path()).with_config(cfg).build().unwrap();
|
2017-07-10 18:23:51 +08:00
|
|
|
|
|
|
|
for file in &created_files {
|
2017-09-30 22:11:47 +08:00
|
|
|
let target = temp.path().join(file);
|
2017-11-18 20:41:04 +08:00
|
|
|
assert!(
|
|
|
|
target.exists(),
|
|
|
|
"{} should have been created by `mdbook init`",
|
|
|
|
file
|
|
|
|
);
|
2017-07-10 18:23:51 +08:00
|
|
|
}
|
|
|
|
}
|
2017-12-09 17:46:39 +08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn book_toml_isnt_required() {
|
|
|
|
let temp = TempDir::new("mdbook").unwrap();
|
2017-12-10 20:13:46 +08:00
|
|
|
let mut md = MDBook::init(temp.path()).build().unwrap();
|
2017-12-09 17:46:39 +08:00
|
|
|
|
2017-11-18 23:21:59 +08:00
|
|
|
let _ = fs::remove_file(temp.path().join("book.toml"));
|
2017-12-09 17:46:39 +08:00
|
|
|
|
2017-12-10 20:13:46 +08:00
|
|
|
md.build().unwrap();
|
2017-12-09 17:46:39 +08:00
|
|
|
}
|