Made sure preprocessors get their renderer's name
This commit is contained in:
parent
a0702037bd
commit
995efc22d5
|
@ -0,0 +1,80 @@
|
||||||
|
extern crate mdbook;
|
||||||
|
|
||||||
|
mod dummy_book;
|
||||||
|
|
||||||
|
use dummy_book::DummyBook;
|
||||||
|
use mdbook::book::Book;
|
||||||
|
use mdbook::config::Config;
|
||||||
|
use mdbook::errors::*;
|
||||||
|
use mdbook::preprocess::{Preprocessor, PreprocessorContext};
|
||||||
|
use mdbook::renderer::{RenderContext, Renderer};
|
||||||
|
use mdbook::MDBook;
|
||||||
|
use std::sync::{Arc, Mutex};
|
||||||
|
|
||||||
|
struct Spy(Arc<Mutex<Inner>>);
|
||||||
|
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
struct Inner {
|
||||||
|
run_count: usize,
|
||||||
|
rendered_with: Vec<String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Preprocessor for Spy {
|
||||||
|
fn name(&self) -> &str {
|
||||||
|
"dummy"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run(&self, ctx: &PreprocessorContext, book: Book) -> Result<Book> {
|
||||||
|
let mut inner = self.0.lock().unwrap();
|
||||||
|
inner.run_count += 1;
|
||||||
|
inner.rendered_with.push(ctx.renderer.clone());
|
||||||
|
Ok(book)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Renderer for Spy {
|
||||||
|
fn name(&self) -> &str {
|
||||||
|
"dummy"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn render(&self, _ctx: &RenderContext) -> Result<()> {
|
||||||
|
let mut inner = self.0.lock().unwrap();
|
||||||
|
inner.run_count += 1;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn mdbook_runs_preprocessors() {
|
||||||
|
let spy: Arc<Mutex<Inner>> = Default::default();
|
||||||
|
|
||||||
|
let temp = DummyBook::new().build().unwrap();
|
||||||
|
let cfg = Config::default();
|
||||||
|
|
||||||
|
let mut book = MDBook::load_with_config(temp.path(), cfg).unwrap();
|
||||||
|
book.with_preprecessor(Spy(Arc::clone(&spy)));
|
||||||
|
book.build().unwrap();
|
||||||
|
|
||||||
|
let inner = spy.lock().unwrap();
|
||||||
|
assert_eq!(inner.run_count, 1);
|
||||||
|
assert_eq!(inner.rendered_with.len(), 1);
|
||||||
|
assert_eq!(
|
||||||
|
"html", inner.rendered_with[0],
|
||||||
|
"We should have been run with the default HTML renderer"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn mdbook_runs_renderers() {
|
||||||
|
let spy: Arc<Mutex<Inner>> = Default::default();
|
||||||
|
|
||||||
|
let temp = DummyBook::new().build().unwrap();
|
||||||
|
let cfg = Config::default();
|
||||||
|
|
||||||
|
let mut book = MDBook::load_with_config(temp.path(), cfg).unwrap();
|
||||||
|
book.with_renderer(Spy(Arc::clone(&spy)));
|
||||||
|
book.build().unwrap();
|
||||||
|
|
||||||
|
let inner = spy.lock().unwrap();
|
||||||
|
assert_eq!(inner.run_count, 1);
|
||||||
|
}
|
|
@ -4,14 +4,8 @@ mod dummy_book;
|
||||||
|
|
||||||
use dummy_book::DummyBook;
|
use dummy_book::DummyBook;
|
||||||
|
|
||||||
use mdbook::book::Book;
|
|
||||||
use mdbook::config::Config;
|
|
||||||
use mdbook::errors::*;
|
|
||||||
use mdbook::preprocess::{Preprocessor, PreprocessorContext};
|
|
||||||
use mdbook::MDBook;
|
use mdbook::MDBook;
|
||||||
|
|
||||||
use std::sync::{Arc, Mutex};
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn mdbook_can_correctly_test_a_passing_book() {
|
fn mdbook_can_correctly_test_a_passing_book() {
|
||||||
let temp = DummyBook::new().with_passing_test(true).build().unwrap();
|
let temp = DummyBook::new().with_passing_test(true).build().unwrap();
|
||||||
|
@ -27,30 +21,3 @@ fn mdbook_detects_book_with_failing_tests() {
|
||||||
|
|
||||||
assert!(md.test(vec![]).is_err());
|
assert!(md.test(vec![]).is_err());
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn mdbook_runs_preprocessors() {
|
|
||||||
let has_run: Arc<Mutex<bool>> = Arc::new(Mutex::new(false));
|
|
||||||
|
|
||||||
struct DummyPreprocessor(Arc<Mutex<bool>>);
|
|
||||||
|
|
||||||
impl Preprocessor for DummyPreprocessor {
|
|
||||||
fn name(&self) -> &str {
|
|
||||||
"dummy"
|
|
||||||
}
|
|
||||||
|
|
||||||
fn run(&self, _ctx: &PreprocessorContext, book: Book) -> Result<Book> {
|
|
||||||
*self.0.lock().unwrap() = true;
|
|
||||||
Ok(book)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let temp = DummyBook::new().build().unwrap();
|
|
||||||
let cfg = Config::default();
|
|
||||||
|
|
||||||
let mut book = MDBook::load_with_config(temp.path(), cfg).unwrap();
|
|
||||||
book.with_preprecessor(DummyPreprocessor(Arc::clone(&has_run)));
|
|
||||||
book.build().unwrap();
|
|
||||||
|
|
||||||
assert!(*has_run.lock().unwrap())
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue