2020-02-15 11:43:47 +00:00
|
|
|
use std::path::Path;
|
|
|
|
use std::error::Error;
|
|
|
|
|
2019-09-21 20:36:57 +00:00
|
|
|
use devise::ext::SpanDiagnosticExt;
|
|
|
|
use devise::syn::{self, Ident, LitStr};
|
|
|
|
use devise::proc_macro2::TokenStream;
|
2020-02-15 11:43:47 +00:00
|
|
|
|
2019-09-21 20:36:57 +00:00
|
|
|
pub fn _macro(input: proc_macro::TokenStream) -> devise::Result<TokenStream> {
|
|
|
|
let root_glob = syn::parse::<LitStr>(input.into())?;
|
2020-07-21 18:53:45 +00:00
|
|
|
let tests = entry_to_tests(&root_glob)
|
2019-09-21 20:36:57 +00:00
|
|
|
.map_err(|e| root_glob.span().error(format!("failed to read: {}", e)))?;
|
2020-02-15 11:43:47 +00:00
|
|
|
|
2020-07-21 18:53:45 +00:00
|
|
|
Ok(quote!(#(#tests)*))
|
2020-02-15 11:43:47 +00:00
|
|
|
}
|
|
|
|
|
2020-07-21 18:53:45 +00:00
|
|
|
fn entry_to_tests(root_glob: &LitStr) -> Result<Vec<TokenStream>, Box<dyn Error>> {
|
2020-02-15 11:43:47 +00:00
|
|
|
let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").expect("MANIFEST_DIR");
|
2020-06-15 01:56:45 +00:00
|
|
|
let full_glob = Path::new(&manifest_dir).join(&root_glob.value()).display().to_string();
|
2020-02-15 11:43:47 +00:00
|
|
|
|
2020-07-21 18:53:45 +00:00
|
|
|
let mut tests = vec![];
|
2020-06-15 01:56:45 +00:00
|
|
|
for path in glob::glob(&full_glob).map_err(Box::new)? {
|
|
|
|
let path = path.map_err(Box::new)?;
|
2020-02-15 11:43:47 +00:00
|
|
|
let name = path.file_name()
|
|
|
|
.and_then(|f| f.to_str())
|
|
|
|
.map(|name| name.trim_matches(|c| char::is_numeric(c) || c == '-')
|
2020-06-15 01:56:45 +00:00
|
|
|
.replace(|c| c == '-' || c == '.', "_"))
|
|
|
|
.ok_or_else(|| "invalid file name")?;
|
2020-02-15 11:43:47 +00:00
|
|
|
|
2020-06-15 01:56:45 +00:00
|
|
|
let ident = Ident::new(&name, root_glob.span());
|
2020-02-15 11:43:47 +00:00
|
|
|
let full_path = Path::new(&manifest_dir).join(&path).display().to_string();
|
2020-07-21 18:53:45 +00:00
|
|
|
tests.push(quote_spanned!(root_glob.span() => doc_comment::doctest!(#full_path, #ident);))
|
2020-02-15 11:43:47 +00:00
|
|
|
}
|
|
|
|
|
2020-07-21 18:53:45 +00:00
|
|
|
Ok(tests)
|
2020-02-15 11:43:47 +00:00
|
|
|
}
|