| use rustc_ast as ast; |
| use rustc_data_structures::fx::{FxHashMap, FxHashSet}; |
| use rustc_data_structures::sync::Lrc; |
| use rustc_errors::{ColorConfig, ErrorGuaranteed, FatalError}; |
| use rustc_hir::def_id::{LocalDefId, CRATE_DEF_ID, LOCAL_CRATE}; |
| use rustc_hir::{self as hir, intravisit, CRATE_HIR_ID}; |
| use rustc_interface::interface; |
| use rustc_middle::hir::map::Map; |
| use rustc_middle::hir::nested_filter; |
| use rustc_middle::ty::TyCtxt; |
| use rustc_parse::maybe_new_parser_from_source_str; |
| use rustc_parse::parser::attr::InnerAttrPolicy; |
| use rustc_resolve::rustdoc::span_of_fragments; |
| use rustc_session::config::{self, CrateType, ErrorOutputType}; |
| use rustc_session::parse::ParseSess; |
| use rustc_session::{lint, EarlyErrorHandler, Session}; |
| use rustc_span::edition::Edition; |
| use rustc_span::source_map::SourceMap; |
| use rustc_span::symbol::sym; |
| use rustc_span::{BytePos, FileName, Pos, Span, DUMMY_SP}; |
| use rustc_target::spec::{Target, TargetTriple}; |
| use tempfile::Builder as TempFileBuilder; |
| |
| use std::env; |
| use std::io::{self, Write}; |
| use std::panic; |
| use std::path::PathBuf; |
| use std::process::{self, Command, Stdio}; |
| use std::str; |
| use std::sync::atomic::{AtomicUsize, Ordering}; |
| use std::sync::{Arc, Mutex}; |
| |
| use crate::clean::{types::AttributesExt, Attributes}; |
| use crate::config::Options as RustdocOptions; |
| use crate::html::markdown::{self, ErrorCodes, Ignore, LangString}; |
| use crate::lint::init_lints; |
| |
| /// Options that apply to all doctests in a crate or Markdown file (for `rustdoc foo.md`). |
| #[derive(Clone, Default)] |
| pub(crate) struct GlobalTestOptions { |
| /// Whether to disable the default `extern crate my_crate;` when creating doctests. |
| pub(crate) no_crate_inject: bool, |
| /// Additional crate-level attributes to add to doctests. |
| pub(crate) attrs: Vec<String>, |
| } |
| |
| pub(crate) fn run(options: RustdocOptions) -> Result<(), ErrorGuaranteed> { |
| let input = config::Input::File(options.input.clone()); |
| |
| let invalid_codeblock_attributes_name = crate::lint::INVALID_CODEBLOCK_ATTRIBUTES.name; |
| |
| // See core::create_config for what's going on here. |
| let allowed_lints = vec![ |
| invalid_codeblock_attributes_name.to_owned(), |
| lint::builtin::UNKNOWN_LINTS.name.to_owned(), |
| lint::builtin::RENAMED_AND_REMOVED_LINTS.name.to_owned(), |
| ]; |
| |
| let (lint_opts, lint_caps) = init_lints(allowed_lints, options.lint_opts.clone(), |lint| { |
| if lint.name == invalid_codeblock_attributes_name { |
| None |
| } else { |
| Some((lint.name_lower(), lint::Allow)) |
| } |
| }); |
| |
| debug!(?lint_opts); |
| |
| let crate_types = |
| if options.proc_macro_crate { vec![CrateType::ProcMacro] } else { vec![CrateType::Rlib] }; |
| |
| let sessopts = config::Options { |
| maybe_sysroot: options.maybe_sysroot.clone(), |
| search_paths: options.libs.clone(), |
| crate_types, |
| lint_opts, |
| lint_cap: Some(options.lint_cap.unwrap_or(lint::Forbid)), |
| cg: options.codegen_options.clone(), |
| externs: options.externs.clone(), |
| unstable_features: options.unstable_features, |
| actually_rustdoc: true, |
| edition: options.edition, |
| target_triple: options.target.clone(), |
| crate_name: options.crate_name.clone(), |
| ..config::Options::default() |
| }; |
| |
| let early_error_handler = EarlyErrorHandler::new(ErrorOutputType::default()); |
| |
| let mut cfgs = options.cfgs.clone(); |
| cfgs.push("doc".to_owned()); |
| cfgs.push("doctest".to_owned()); |
| let config = interface::Config { |
| opts: sessopts, |
| crate_cfg: interface::parse_cfgspecs(&early_error_handler, cfgs), |
| crate_check_cfg: interface::parse_check_cfg( |
| &early_error_handler, |
| options.check_cfgs.clone(), |
| ), |
| input, |
| output_file: None, |
| output_dir: None, |
| file_loader: None, |
| locale_resources: rustc_driver::DEFAULT_LOCALE_RESOURCES, |
| lint_caps, |
| parse_sess_created: None, |
| register_lints: Some(Box::new(crate::lint::register_lints)), |
| override_queries: None, |
| make_codegen_backend: None, |
| registry: rustc_driver::diagnostics_registry(), |
| ice_file: None, |
| expanded_args: options.expanded_args.clone(), |
| }; |
| |
| let test_args = options.test_args.clone(); |
| let nocapture = options.nocapture; |
| let externs = options.externs.clone(); |
| let json_unused_externs = options.json_unused_externs; |
| |
| let (tests, unused_extern_reports, compiling_test_count) = |
| interface::run_compiler(config, |compiler| { |
| compiler.enter(|queries| { |
| let collector = queries.global_ctxt()?.enter(|tcx| { |
| let crate_attrs = tcx.hir().attrs(CRATE_HIR_ID); |
| |
| let opts = scrape_test_config(crate_attrs); |
| let enable_per_target_ignores = options.enable_per_target_ignores; |
| let mut collector = Collector::new( |
| tcx.crate_name(LOCAL_CRATE).to_string(), |
| options, |
| false, |
| opts, |
| Some(compiler.session().parse_sess.clone_source_map()), |
| None, |
| enable_per_target_ignores, |
| ); |
| |
| let mut hir_collector = HirCollector { |
| sess: compiler.session(), |
| collector: &mut collector, |
| map: tcx.hir(), |
| codes: ErrorCodes::from( |
| compiler.session().opts.unstable_features.is_nightly_build(), |
| ), |
| tcx, |
| }; |
| hir_collector.visit_testable( |
| "".to_string(), |
| CRATE_DEF_ID, |
| tcx.hir().span(CRATE_HIR_ID), |
| |this| tcx.hir().walk_toplevel_module(this), |
| ); |
| |
| collector |
| }); |
| if compiler.session().diagnostic().has_errors_or_lint_errors().is_some() { |
| FatalError.raise(); |
| } |
| |
| let unused_extern_reports = collector.unused_extern_reports.clone(); |
| let compiling_test_count = collector.compiling_test_count.load(Ordering::SeqCst); |
| Ok((collector.tests, unused_extern_reports, compiling_test_count)) |
| }) |
| })?; |
| |
| run_tests(test_args, nocapture, tests); |
| |
| // Collect and warn about unused externs, but only if we've gotten |
| // reports for each doctest |
| if json_unused_externs.is_enabled() { |
| let unused_extern_reports: Vec<_> = |
| std::mem::take(&mut unused_extern_reports.lock().unwrap()); |
| if unused_extern_reports.len() == compiling_test_count { |
| let extern_names = externs.iter().map(|(name, _)| name).collect::<FxHashSet<&String>>(); |
| let mut unused_extern_names = unused_extern_reports |
| .iter() |
| .map(|uexts| uexts.unused_extern_names.iter().collect::<FxHashSet<&String>>()) |
| .fold(extern_names, |uextsa, uextsb| { |
| uextsa.intersection(&uextsb).copied().collect::<FxHashSet<&String>>() |
| }) |
| .iter() |
| .map(|v| (*v).clone()) |
| .collect::<Vec<String>>(); |
| unused_extern_names.sort(); |
| // Take the most severe lint level |
| let lint_level = unused_extern_reports |
| .iter() |
| .map(|uexts| uexts.lint_level.as_str()) |
| .max_by_key(|v| match *v { |
| "warn" => 1, |
| "deny" => 2, |
| "forbid" => 3, |
| // The allow lint level is not expected, |
| // as if allow is specified, no message |
| // is to be emitted. |
| v => unreachable!("Invalid lint level '{v}'"), |
| }) |
| .unwrap_or("warn") |
| .to_string(); |
| let uext = UnusedExterns { lint_level, unused_extern_names }; |
| let unused_extern_json = serde_json::to_string(&uext).unwrap(); |
| eprintln!("{unused_extern_json}"); |
| } |
| } |
| |
| Ok(()) |
| } |
| |
| pub(crate) fn run_tests( |
| mut test_args: Vec<String>, |
| nocapture: bool, |
| mut tests: Vec<test::TestDescAndFn>, |
| ) { |
| test_args.insert(0, "rustdoctest".to_string()); |
| if nocapture { |
| test_args.push("--nocapture".to_string()); |
| } |
| tests.sort_by(|a, b| a.desc.name.as_slice().cmp(&b.desc.name.as_slice())); |
| test::test_main(&test_args, tests, None); |
| } |
| |
| // Look for `#![doc(test(no_crate_inject))]`, used by crates in the std facade. |
| fn scrape_test_config(attrs: &[ast::Attribute]) -> GlobalTestOptions { |
| use rustc_ast_pretty::pprust; |
| |
| let mut opts = GlobalTestOptions { no_crate_inject: false, attrs: Vec::new() }; |
| |
| let test_attrs: Vec<_> = attrs |
| .iter() |
| .filter(|a| a.has_name(sym::doc)) |
| .flat_map(|a| a.meta_item_list().unwrap_or_default()) |
| .filter(|a| a.has_name(sym::test)) |
| .collect(); |
| let attrs = test_attrs.iter().flat_map(|a| a.meta_item_list().unwrap_or(&[])); |
| |
| for attr in attrs { |
| if attr.has_name(sym::no_crate_inject) { |
| opts.no_crate_inject = true; |
| } |
| if attr.has_name(sym::attr) |
| && let Some(l) = attr.meta_item_list() |
| { |
| for item in l { |
| opts.attrs.push(pprust::meta_list_item_to_string(item)); |
| } |
| } |
| } |
| |
| opts |
| } |
| |
| /// Documentation test failure modes. |
| enum TestFailure { |
| /// The test failed to compile. |
| CompileError, |
| /// The test is marked `compile_fail` but compiled successfully. |
| UnexpectedCompilePass, |
| /// The test failed to compile (as expected) but the compiler output did not contain all |
| /// expected error codes. |
| MissingErrorCodes(Vec<String>), |
| /// The test binary was unable to be executed. |
| ExecutionError(io::Error), |
| /// The test binary exited with a non-zero exit code. |
| /// |
| /// This typically means an assertion in the test failed or another form of panic occurred. |
| ExecutionFailure(process::Output), |
| /// The test is marked `should_panic` but the test binary executed successfully. |
| UnexpectedRunPass, |
| } |
| |
| enum DirState { |
| Temp(tempfile::TempDir), |
| Perm(PathBuf), |
| } |
| |
| impl DirState { |
| fn path(&self) -> &std::path::Path { |
| match self { |
| DirState::Temp(t) => t.path(), |
| DirState::Perm(p) => p.as_path(), |
| } |
| } |
| } |
| |
| // NOTE: Keep this in sync with the equivalent structs in rustc |
| // and cargo. |
| // We could unify this struct the one in rustc but they have different |
| // ownership semantics, so doing so would create wasteful allocations. |
| #[derive(serde::Serialize, serde::Deserialize)] |
| struct UnusedExterns { |
| /// Lint level of the unused_crate_dependencies lint |
| lint_level: String, |
| /// List of unused externs by their names. |
| unused_extern_names: Vec<String>, |
| } |
| |
| fn add_exe_suffix(input: String, target: &TargetTriple) -> String { |
| let exe_suffix = match target { |
| TargetTriple::TargetTriple(_) => Target::expect_builtin(target).options.exe_suffix, |
| TargetTriple::TargetJson { contents, .. } => { |
| Target::from_json(contents.parse().unwrap()).unwrap().0.options.exe_suffix |
| } |
| }; |
| input + &exe_suffix |
| } |
| |
| fn run_test( |
| test: &str, |
| crate_name: &str, |
| line: usize, |
| rustdoc_options: RustdocOptions, |
| mut lang_string: LangString, |
| no_run: bool, |
| runtool: Option<String>, |
| runtool_args: Vec<String>, |
| target: TargetTriple, |
| opts: &GlobalTestOptions, |
| edition: Edition, |
| outdir: DirState, |
| path: PathBuf, |
| test_id: &str, |
| report_unused_externs: impl Fn(UnusedExterns), |
| ) -> Result<(), TestFailure> { |
| let (test, line_offset, supports_color) = |
| make_test(test, Some(crate_name), lang_string.test_harness, opts, edition, Some(test_id)); |
| |
| // Make sure we emit well-formed executable names for our target. |
| let rust_out = add_exe_suffix("rust_out".to_owned(), &target); |
| let output_file = outdir.path().join(rust_out); |
| |
| let rustc_binary = rustdoc_options |
| .test_builder |
| .as_deref() |
| .unwrap_or_else(|| rustc_interface::util::rustc_path().expect("found rustc")); |
| let mut compiler = Command::new(&rustc_binary); |
| compiler.arg("--crate-type").arg("bin"); |
| for cfg in &rustdoc_options.cfgs { |
| compiler.arg("--cfg").arg(&cfg); |
| } |
| if !rustdoc_options.check_cfgs.is_empty() { |
| compiler.arg("-Z").arg("unstable-options"); |
| for check_cfg in &rustdoc_options.check_cfgs { |
| compiler.arg("--check-cfg").arg(&check_cfg); |
| } |
| } |
| if let Some(sysroot) = rustdoc_options.maybe_sysroot { |
| compiler.arg("--sysroot").arg(sysroot); |
| } |
| compiler.arg("--edition").arg(&edition.to_string()); |
| compiler.env("UNSTABLE_RUSTDOC_TEST_PATH", path); |
| compiler.env("UNSTABLE_RUSTDOC_TEST_LINE", format!("{}", line as isize - line_offset as isize)); |
| compiler.arg("-o").arg(&output_file); |
| if lang_string.test_harness { |
| compiler.arg("--test"); |
| } |
| if rustdoc_options.json_unused_externs.is_enabled() && !lang_string.compile_fail { |
| compiler.arg("--error-format=json"); |
| compiler.arg("--json").arg("unused-externs"); |
| compiler.arg("-Z").arg("unstable-options"); |
| compiler.arg("-W").arg("unused_crate_dependencies"); |
| } |
| for lib_str in &rustdoc_options.lib_strs { |
| compiler.arg("-L").arg(&lib_str); |
| } |
| for extern_str in &rustdoc_options.extern_strs { |
| compiler.arg("--extern").arg(&extern_str); |
| } |
| compiler.arg("-Ccodegen-units=1"); |
| for codegen_options_str in &rustdoc_options.codegen_options_strs { |
| compiler.arg("-C").arg(&codegen_options_str); |
| } |
| for unstable_option_str in &rustdoc_options.unstable_opts_strs { |
| compiler.arg("-Z").arg(&unstable_option_str); |
| } |
| if no_run && !lang_string.compile_fail && rustdoc_options.persist_doctests.is_none() { |
| compiler.arg("--emit=metadata"); |
| } |
| compiler.arg("--target").arg(match target { |
| TargetTriple::TargetTriple(s) => s, |
| TargetTriple::TargetJson { path_for_rustdoc, .. } => { |
| path_for_rustdoc.to_str().expect("target path must be valid unicode").to_string() |
| } |
| }); |
| if let ErrorOutputType::HumanReadable(kind) = rustdoc_options.error_format { |
| let (short, color_config) = kind.unzip(); |
| |
| if short { |
| compiler.arg("--error-format").arg("short"); |
| } |
| |
| match color_config { |
| ColorConfig::Never => { |
| compiler.arg("--color").arg("never"); |
| } |
| ColorConfig::Always => { |
| compiler.arg("--color").arg("always"); |
| } |
| ColorConfig::Auto => { |
| compiler.arg("--color").arg(if supports_color { "always" } else { "never" }); |
| } |
| } |
| } |
| |
| compiler.arg("-"); |
| compiler.stdin(Stdio::piped()); |
| compiler.stderr(Stdio::piped()); |
| |
| debug!("compiler invocation for doctest: {compiler:?}"); |
| |
| let mut child = compiler.spawn().expect("Failed to spawn rustc process"); |
| { |
| let stdin = child.stdin.as_mut().expect("Failed to open stdin"); |
| stdin.write_all(test.as_bytes()).expect("could write out test sources"); |
| } |
| let output = child.wait_with_output().expect("Failed to read stdout"); |
| |
| struct Bomb<'a>(&'a str); |
| impl Drop for Bomb<'_> { |
| fn drop(&mut self) { |
| eprint!("{}", self.0); |
| } |
| } |
| let mut out = str::from_utf8(&output.stderr) |
| .unwrap() |
| .lines() |
| .filter(|l| { |
| if let Ok(uext) = serde_json::from_str::<UnusedExterns>(l) { |
| report_unused_externs(uext); |
| false |
| } else { |
| true |
| } |
| }) |
| .intersperse_with(|| "\n") |
| .collect::<String>(); |
| |
| // Add a \n to the end to properly terminate the last line, |
| // but only if there was output to be printed |
| if !out.is_empty() { |
| out.push('\n'); |
| } |
| |
| let _bomb = Bomb(&out); |
| match (output.status.success(), lang_string.compile_fail) { |
| (true, true) => { |
| return Err(TestFailure::UnexpectedCompilePass); |
| } |
| (true, false) => {} |
| (false, true) => { |
| if !lang_string.error_codes.is_empty() { |
| // We used to check if the output contained "error[{}]: " but since we added the |
| // colored output, we can't anymore because of the color escape characters before |
| // the ":". |
| lang_string.error_codes.retain(|err| !out.contains(&format!("error[{err}]"))); |
| |
| if !lang_string.error_codes.is_empty() { |
| return Err(TestFailure::MissingErrorCodes(lang_string.error_codes)); |
| } |
| } |
| } |
| (false, false) => { |
| return Err(TestFailure::CompileError); |
| } |
| } |
| |
| if no_run { |
| return Ok(()); |
| } |
| |
| // Run the code! |
| let mut cmd; |
| |
| let output_file = make_maybe_absolute_path(output_file); |
| if let Some(tool) = runtool { |
| let tool = make_maybe_absolute_path(tool.into()); |
| cmd = Command::new(tool); |
| cmd.args(runtool_args); |
| cmd.arg(output_file); |
| } else { |
| cmd = Command::new(output_file); |
| } |
| if let Some(run_directory) = rustdoc_options.test_run_directory { |
| cmd.current_dir(run_directory); |
| } |
| |
| let result = if rustdoc_options.nocapture { |
| cmd.status().map(|status| process::Output { |
| status, |
| stdout: Vec::new(), |
| stderr: Vec::new(), |
| }) |
| } else { |
| cmd.output() |
| }; |
| match result { |
| Err(e) => return Err(TestFailure::ExecutionError(e)), |
| Ok(out) => { |
| if lang_string.should_panic && out.status.success() { |
| return Err(TestFailure::UnexpectedRunPass); |
| } else if !lang_string.should_panic && !out.status.success() { |
| return Err(TestFailure::ExecutionFailure(out)); |
| } |
| } |
| } |
| |
| Ok(()) |
| } |
| |
| /// Converts a path intended to use as a command to absolute if it is |
| /// relative, and not a single component. |
| /// |
| /// This is needed to deal with relative paths interacting with |
| /// `Command::current_dir` in a platform-specific way. |
| fn make_maybe_absolute_path(path: PathBuf) -> PathBuf { |
| if path.components().count() == 1 { |
| // Look up process via PATH. |
| path |
| } else { |
| std::env::current_dir().map(|c| c.join(&path)).unwrap_or_else(|_| path) |
| } |
| } |
| |
| /// Transforms a test into code that can be compiled into a Rust binary, and returns the number of |
| /// lines before the test code begins as well as if the output stream supports colors or not. |
| pub(crate) fn make_test( |
| s: &str, |
| crate_name: Option<&str>, |
| dont_insert_main: bool, |
| opts: &GlobalTestOptions, |
| edition: Edition, |
| test_id: Option<&str>, |
| ) -> (String, usize, bool) { |
| let (crate_attrs, everything_else, crates) = partition_source(s, edition); |
| let everything_else = everything_else.trim(); |
| let mut line_offset = 0; |
| let mut prog = String::new(); |
| let mut supports_color = false; |
| |
| if opts.attrs.is_empty() { |
| // If there aren't any attributes supplied by #![doc(test(attr(...)))], then allow some |
| // lints that are commonly triggered in doctests. The crate-level test attributes are |
| // commonly used to make tests fail in case they trigger warnings, so having this there in |
| // that case may cause some tests to pass when they shouldn't have. |
| prog.push_str("#![allow(unused)]\n"); |
| line_offset += 1; |
| } |
| |
| // Next, any attributes that came from the crate root via #![doc(test(attr(...)))]. |
| for attr in &opts.attrs { |
| prog.push_str(&format!("#![{attr}]\n")); |
| line_offset += 1; |
| } |
| |
| // Now push any outer attributes from the example, assuming they |
| // are intended to be crate attributes. |
| prog.push_str(&crate_attrs); |
| prog.push_str(&crates); |
| |
| // Uses librustc_ast to parse the doctest and find if there's a main fn and the extern |
| // crate already is included. |
| let result = rustc_driver::catch_fatal_errors(|| { |
| rustc_span::create_session_if_not_set_then(edition, |_| { |
| use rustc_errors::emitter::{Emitter, EmitterWriter}; |
| use rustc_errors::Handler; |
| use rustc_parse::parser::ForceCollect; |
| use rustc_span::source_map::FilePathMapping; |
| |
| let filename = FileName::anon_source_code(s); |
| let source = crates + everything_else; |
| |
| // Any errors in parsing should also appear when the doctest is compiled for real, so just |
| // send all the errors that librustc_ast emits directly into a `Sink` instead of stderr. |
| let sm = Lrc::new(SourceMap::new(FilePathMapping::empty())); |
| let fallback_bundle = rustc_errors::fallback_fluent_bundle( |
| rustc_driver::DEFAULT_LOCALE_RESOURCES.to_vec(), |
| false, |
| ); |
| supports_color = EmitterWriter::stderr(ColorConfig::Auto, fallback_bundle.clone()) |
| .diagnostic_width(Some(80)) |
| .supports_color(); |
| |
| let emitter = EmitterWriter::new(Box::new(io::sink()), fallback_bundle); |
| |
| // FIXME(misdreavus): pass `-Z treat-err-as-bug` to the doctest parser |
| let handler = Handler::with_emitter(Box::new(emitter)).disable_warnings(); |
| let sess = ParseSess::with_span_handler(handler, sm); |
| |
| let mut found_main = false; |
| let mut found_extern_crate = crate_name.is_none(); |
| let mut found_macro = false; |
| |
| let mut parser = match maybe_new_parser_from_source_str(&sess, filename, source) { |
| Ok(p) => p, |
| Err(errs) => { |
| drop(errs); |
| return (found_main, found_extern_crate, found_macro); |
| } |
| }; |
| |
| loop { |
| match parser.parse_item(ForceCollect::No) { |
| Ok(Some(item)) => { |
| if !found_main && |
| let ast::ItemKind::Fn(..) = item.kind && |
| item.ident.name == sym::main |
| { |
| found_main = true; |
| } |
| |
| if !found_extern_crate && |
| let ast::ItemKind::ExternCrate(original) = item.kind |
| { |
| // This code will never be reached if `crate_name` is none because |
| // `found_extern_crate` is initialized to `true` if it is none. |
| let crate_name = crate_name.unwrap(); |
| |
| match original { |
| Some(name) => found_extern_crate = name.as_str() == crate_name, |
| None => found_extern_crate = item.ident.as_str() == crate_name, |
| } |
| } |
| |
| if !found_macro && let ast::ItemKind::MacCall(..) = item.kind { |
| found_macro = true; |
| } |
| |
| if found_main && found_extern_crate { |
| break; |
| } |
| } |
| Ok(None) => break, |
| Err(e) => { |
| e.cancel(); |
| break; |
| } |
| } |
| |
| // The supplied slice is only used for diagnostics, |
| // which are swallowed here anyway. |
| parser.maybe_consume_incorrect_semicolon(&[]); |
| } |
| |
| // Reset errors so that they won't be reported as compiler bugs when dropping the |
| // handler. Any errors in the tests will be reported when the test file is compiled, |
| // Note that we still need to cancel the errors above otherwise `DiagnosticBuilder` |
| // will panic on drop. |
| sess.span_diagnostic.reset_err_count(); |
| |
| (found_main, found_extern_crate, found_macro) |
| }) |
| }); |
| let Ok((already_has_main, already_has_extern_crate, found_macro)) = result else { |
| // If the parser panicked due to a fatal error, pass the test code through unchanged. |
| // The error will be reported during compilation. |
| return (s.to_owned(), 0, false); |
| }; |
| |
| // If a doctest's `fn main` is being masked by a wrapper macro, the parsing loop above won't |
| // see it. In that case, run the old text-based scan to see if they at least have a main |
| // function written inside a macro invocation. See |
| // https://github.com/rust-lang/rust/issues/56898 |
| let already_has_main = if found_macro && !already_has_main { |
| s.lines() |
| .map(|line| { |
| let comment = line.find("//"); |
| if let Some(comment_begins) = comment { &line[0..comment_begins] } else { line } |
| }) |
| .any(|code| code.contains("fn main")) |
| } else { |
| already_has_main |
| }; |
| |
| // Don't inject `extern crate std` because it's already injected by the |
| // compiler. |
| if !already_has_extern_crate && !opts.no_crate_inject && crate_name != Some("std") { |
| if let Some(crate_name) = crate_name { |
| // Don't inject `extern crate` if the crate is never used. |
| // NOTE: this is terribly inaccurate because it doesn't actually |
| // parse the source, but only has false positives, not false |
| // negatives. |
| if s.contains(crate_name) { |
| // rustdoc implicitly inserts an `extern crate` item for the own crate |
| // which may be unused, so we need to allow the lint. |
| prog.push_str("#[allow(unused_extern_crates)]\n"); |
| |
| prog.push_str(&format!("extern crate r#{crate_name};\n")); |
| line_offset += 1; |
| } |
| } |
| } |
| |
| // FIXME: This code cannot yet handle no_std test cases yet |
| if dont_insert_main || already_has_main || prog.contains("![no_std]") { |
| prog.push_str(everything_else); |
| } else { |
| let returns_result = everything_else.trim_end().ends_with("(())"); |
| // Give each doctest main function a unique name. |
| // This is for example needed for the tooling around `-C instrument-coverage`. |
| let inner_fn_name = if let Some(test_id) = test_id { |
| format!("_doctest_main_{test_id}") |
| } else { |
| "_inner".into() |
| }; |
| let inner_attr = if test_id.is_some() { "#[allow(non_snake_case)] " } else { "" }; |
| let (main_pre, main_post) = if returns_result { |
| ( |
| format!( |
| "fn main() {{ {inner_attr}fn {inner_fn_name}() -> Result<(), impl core::fmt::Debug> {{\n", |
| ), |
| format!("\n}} {inner_fn_name}().unwrap() }}"), |
| ) |
| } else if test_id.is_some() { |
| ( |
| format!("fn main() {{ {inner_attr}fn {inner_fn_name}() {{\n",), |
| format!("\n}} {inner_fn_name}() }}"), |
| ) |
| } else { |
| ("fn main() {\n".into(), "\n}".into()) |
| }; |
| // Note on newlines: We insert a line/newline *before*, and *after* |
| // the doctest and adjust the `line_offset` accordingly. |
| // In the case of `-C instrument-coverage`, this means that the generated |
| // inner `main` function spans from the doctest opening codeblock to the |
| // closing one. For example |
| // /// ``` <- start of the inner main |
| // /// <- code under doctest |
| // /// ``` <- end of the inner main |
| line_offset += 1; |
| |
| prog.extend([&main_pre, everything_else, &main_post].iter().cloned()); |
| } |
| |
| debug!("final doctest:\n{prog}"); |
| |
| (prog, line_offset, supports_color) |
| } |
| |
| fn check_if_attr_is_complete(source: &str, edition: Edition) -> bool { |
| if source.is_empty() { |
| // Empty content so nothing to check in here... |
| return true; |
| } |
| rustc_driver::catch_fatal_errors(|| { |
| rustc_span::create_session_if_not_set_then(edition, |_| { |
| use rustc_errors::emitter::EmitterWriter; |
| use rustc_errors::Handler; |
| use rustc_span::source_map::FilePathMapping; |
| |
| let filename = FileName::anon_source_code(source); |
| // Any errors in parsing should also appear when the doctest is compiled for real, so just |
| // send all the errors that librustc_ast emits directly into a `Sink` instead of stderr. |
| let sm = Lrc::new(SourceMap::new(FilePathMapping::empty())); |
| let fallback_bundle = rustc_errors::fallback_fluent_bundle( |
| rustc_driver::DEFAULT_LOCALE_RESOURCES.to_vec(), |
| false, |
| ); |
| |
| let emitter = EmitterWriter::new(Box::new(io::sink()), fallback_bundle); |
| |
| let handler = Handler::with_emitter(Box::new(emitter)).disable_warnings(); |
| let sess = ParseSess::with_span_handler(handler, sm); |
| let mut parser = |
| match maybe_new_parser_from_source_str(&sess, filename, source.to_owned()) { |
| Ok(p) => p, |
| Err(_) => { |
| // If there is an unclosed delimiter, an error will be returned by the tokentrees. |
| return false; |
| } |
| }; |
| // If a parsing error happened, it's very likely that the attribute is incomplete. |
| if let Err(e) = parser.parse_attribute(InnerAttrPolicy::Permitted) { |
| e.cancel(); |
| return false; |
| } |
| true |
| }) |
| }) |
| .unwrap_or(false) |
| } |
| |
| fn partition_source(s: &str, edition: Edition) -> (String, String, String) { |
| #[derive(Copy, Clone, PartialEq)] |
| enum PartitionState { |
| Attrs, |
| Crates, |
| Other, |
| } |
| let mut state = PartitionState::Attrs; |
| let mut before = String::new(); |
| let mut crates = String::new(); |
| let mut after = String::new(); |
| |
| let mut mod_attr_pending = String::new(); |
| |
| for line in s.lines() { |
| let trimline = line.trim(); |
| |
| // FIXME(misdreavus): if a doc comment is placed on an extern crate statement, it will be |
| // shunted into "everything else" |
| match state { |
| PartitionState::Attrs => { |
| state = if trimline.starts_with("#![") { |
| if !check_if_attr_is_complete(line, edition) { |
| mod_attr_pending = line.to_owned(); |
| } else { |
| mod_attr_pending.clear(); |
| } |
| PartitionState::Attrs |
| } else if trimline.chars().all(|c| c.is_whitespace()) |
| || (trimline.starts_with("//") && !trimline.starts_with("///")) |
| { |
| PartitionState::Attrs |
| } else if trimline.starts_with("extern crate") |
| || trimline.starts_with("#[macro_use] extern crate") |
| { |
| PartitionState::Crates |
| } else { |
| // First we check if the previous attribute was "complete"... |
| if !mod_attr_pending.is_empty() { |
| // If not, then we append the new line into the pending attribute to check |
| // if this time it's complete... |
| mod_attr_pending.push_str(line); |
| if !trimline.is_empty() |
| && check_if_attr_is_complete(&mod_attr_pending, edition) |
| { |
| // If it's complete, then we can clear the pending content. |
| mod_attr_pending.clear(); |
| } |
| // In any case, this is considered as `PartitionState::Attrs` so it's |
| // prepended before rustdoc's inserts. |
| PartitionState::Attrs |
| } else { |
| PartitionState::Other |
| } |
| }; |
| } |
| PartitionState::Crates => { |
| state = if trimline.starts_with("extern crate") |
| || trimline.starts_with("#[macro_use] extern crate") |
| || trimline.chars().all(|c| c.is_whitespace()) |
| || (trimline.starts_with("//") && !trimline.starts_with("///")) |
| { |
| PartitionState::Crates |
| } else { |
| PartitionState::Other |
| }; |
| } |
| PartitionState::Other => {} |
| } |
| |
| match state { |
| PartitionState::Attrs => { |
| before.push_str(line); |
| before.push('\n'); |
| } |
| PartitionState::Crates => { |
| crates.push_str(line); |
| crates.push('\n'); |
| } |
| PartitionState::Other => { |
| after.push_str(line); |
| after.push('\n'); |
| } |
| } |
| } |
| |
| debug!("before:\n{before}"); |
| debug!("crates:\n{crates}"); |
| debug!("after:\n{after}"); |
| |
| (before, after, crates) |
| } |
| |
| pub(crate) trait Tester { |
| fn add_test(&mut self, test: String, config: LangString, line: usize); |
| fn get_line(&self) -> usize { |
| 0 |
| } |
| fn register_header(&mut self, _name: &str, _level: u32) {} |
| } |
| |
| pub(crate) struct Collector { |
| pub(crate) tests: Vec<test::TestDescAndFn>, |
| |
| // The name of the test displayed to the user, separated by `::`. |
| // |
| // In tests from Rust source, this is the path to the item |
| // e.g., `["std", "vec", "Vec", "push"]`. |
| // |
| // In tests from a markdown file, this is the titles of all headers (h1~h6) |
| // of the sections that contain the code block, e.g., if the markdown file is |
| // written as: |
| // |
| // ``````markdown |
| // # Title |
| // |
| // ## Subtitle |
| // |
| // ```rust |
| // assert!(true); |
| // ``` |
| // `````` |
| // |
| // the `names` vector of that test will be `["Title", "Subtitle"]`. |
| names: Vec<String>, |
| |
| rustdoc_options: RustdocOptions, |
| use_headers: bool, |
| enable_per_target_ignores: bool, |
| crate_name: String, |
| opts: GlobalTestOptions, |
| position: Span, |
| source_map: Option<Lrc<SourceMap>>, |
| filename: Option<PathBuf>, |
| visited_tests: FxHashMap<(String, usize), usize>, |
| unused_extern_reports: Arc<Mutex<Vec<UnusedExterns>>>, |
| compiling_test_count: AtomicUsize, |
| } |
| |
| impl Collector { |
| pub(crate) fn new( |
| crate_name: String, |
| rustdoc_options: RustdocOptions, |
| use_headers: bool, |
| opts: GlobalTestOptions, |
| source_map: Option<Lrc<SourceMap>>, |
| filename: Option<PathBuf>, |
| enable_per_target_ignores: bool, |
| ) -> Collector { |
| Collector { |
| tests: Vec::new(), |
| names: Vec::new(), |
| rustdoc_options, |
| use_headers, |
| enable_per_target_ignores, |
| crate_name, |
| opts, |
| position: DUMMY_SP, |
| source_map, |
| filename, |
| visited_tests: FxHashMap::default(), |
| unused_extern_reports: Default::default(), |
| compiling_test_count: AtomicUsize::new(0), |
| } |
| } |
| |
| fn generate_name(&self, line: usize, filename: &FileName) -> String { |
| let mut item_path = self.names.join("::"); |
| item_path.retain(|c| c != ' '); |
| if !item_path.is_empty() { |
| item_path.push(' '); |
| } |
| format!("{} - {item_path}(line {line})", filename.prefer_local()) |
| } |
| |
| pub(crate) fn set_position(&mut self, position: Span) { |
| self.position = position; |
| } |
| |
| fn get_filename(&self) -> FileName { |
| if let Some(ref source_map) = self.source_map { |
| let filename = source_map.span_to_filename(self.position); |
| if let FileName::Real(ref filename) = filename && |
| let Ok(cur_dir) = env::current_dir() && |
| let Some(local_path) = filename.local_path() && |
| let Ok(path) = local_path.strip_prefix(&cur_dir) |
| { |
| return path.to_owned().into(); |
| } |
| filename |
| } else if let Some(ref filename) = self.filename { |
| filename.clone().into() |
| } else { |
| FileName::Custom("input".to_owned()) |
| } |
| } |
| } |
| |
| impl Tester for Collector { |
| fn add_test(&mut self, test: String, config: LangString, line: usize) { |
| let filename = self.get_filename(); |
| let name = self.generate_name(line, &filename); |
| let crate_name = self.crate_name.clone(); |
| let opts = self.opts.clone(); |
| let edition = config.edition.unwrap_or(self.rustdoc_options.edition); |
| let rustdoc_options = self.rustdoc_options.clone(); |
| let runtool = self.rustdoc_options.runtool.clone(); |
| let runtool_args = self.rustdoc_options.runtool_args.clone(); |
| let target = self.rustdoc_options.target.clone(); |
| let target_str = target.to_string(); |
| let unused_externs = self.unused_extern_reports.clone(); |
| let no_run = config.no_run || rustdoc_options.no_run; |
| if !config.compile_fail { |
| self.compiling_test_count.fetch_add(1, Ordering::SeqCst); |
| } |
| |
| let path = match &filename { |
| FileName::Real(path) => { |
| if let Some(local_path) = path.local_path() { |
| local_path.to_path_buf() |
| } else { |
| // Somehow we got the filename from the metadata of another crate, should never happen |
| unreachable!("doctest from a different crate"); |
| } |
| } |
| _ => PathBuf::from(r"doctest.rs"), |
| }; |
| |
| // For example `module/file.rs` would become `module_file_rs` |
| let file = filename |
| .prefer_local() |
| .to_string_lossy() |
| .chars() |
| .map(|c| if c.is_ascii_alphanumeric() { c } else { '_' }) |
| .collect::<String>(); |
| let test_id = format!( |
| "{file}_{line}_{number}", |
| file = file, |
| line = line, |
| number = { |
| // Increases the current test number, if this file already |
| // exists or it creates a new entry with a test number of 0. |
| self.visited_tests.entry((file.clone(), line)).and_modify(|v| *v += 1).or_insert(0) |
| }, |
| ); |
| let outdir = if let Some(mut path) = rustdoc_options.persist_doctests.clone() { |
| path.push(&test_id); |
| |
| if let Err(err) = std::fs::create_dir_all(&path) { |
| eprintln!("Couldn't create directory for doctest executables: {err}"); |
| panic::resume_unwind(Box::new(())); |
| } |
| |
| DirState::Perm(path) |
| } else { |
| DirState::Temp( |
| TempFileBuilder::new() |
| .prefix("rustdoctest") |
| .tempdir() |
| .expect("rustdoc needs a tempdir"), |
| ) |
| }; |
| |
| debug!("creating test {name}: {test}"); |
| self.tests.push(test::TestDescAndFn { |
| desc: test::TestDesc { |
| name: test::DynTestName(name), |
| ignore: match config.ignore { |
| Ignore::All => true, |
| Ignore::None => false, |
| Ignore::Some(ref ignores) => ignores.iter().any(|s| target_str.contains(s)), |
| }, |
| ignore_message: None, |
| source_file: "", |
| start_line: 0, |
| start_col: 0, |
| end_line: 0, |
| end_col: 0, |
| // compiler failures are test failures |
| should_panic: test::ShouldPanic::No, |
| compile_fail: config.compile_fail, |
| no_run, |
| test_type: test::TestType::DocTest, |
| }, |
| testfn: test::DynTestFn(Box::new(move || { |
| let report_unused_externs = |uext| { |
| unused_externs.lock().unwrap().push(uext); |
| }; |
| let res = run_test( |
| &test, |
| &crate_name, |
| line, |
| rustdoc_options, |
| config, |
| no_run, |
| runtool, |
| runtool_args, |
| target, |
| &opts, |
| edition, |
| outdir, |
| path, |
| &test_id, |
| report_unused_externs, |
| ); |
| |
| if let Err(err) = res { |
| match err { |
| TestFailure::CompileError => { |
| eprint!("Couldn't compile the test."); |
| } |
| TestFailure::UnexpectedCompilePass => { |
| eprint!("Test compiled successfully, but it's marked `compile_fail`."); |
| } |
| TestFailure::UnexpectedRunPass => { |
| eprint!("Test executable succeeded, but it's marked `should_panic`."); |
| } |
| TestFailure::MissingErrorCodes(codes) => { |
| eprint!("Some expected error codes were not found: {codes:?}"); |
| } |
| TestFailure::ExecutionError(err) => { |
| eprint!("Couldn't run the test: {err}"); |
| if err.kind() == io::ErrorKind::PermissionDenied { |
| eprint!(" - maybe your tempdir is mounted with noexec?"); |
| } |
| } |
| TestFailure::ExecutionFailure(out) => { |
| eprintln!("Test executable failed ({reason}).", reason = out.status); |
| |
| // FIXME(#12309): An unfortunate side-effect of capturing the test |
| // executable's output is that the relative ordering between the test's |
| // stdout and stderr is lost. However, this is better than the |
| // alternative: if the test executable inherited the parent's I/O |
| // handles the output wouldn't be captured at all, even on success. |
| // |
| // The ordering could be preserved if the test process' stderr was |
| // redirected to stdout, but that functionality does not exist in the |
| // standard library, so it may not be portable enough. |
| let stdout = str::from_utf8(&out.stdout).unwrap_or_default(); |
| let stderr = str::from_utf8(&out.stderr).unwrap_or_default(); |
| |
| if !stdout.is_empty() || !stderr.is_empty() { |
| eprintln!(); |
| |
| if !stdout.is_empty() { |
| eprintln!("stdout:\n{stdout}"); |
| } |
| |
| if !stderr.is_empty() { |
| eprintln!("stderr:\n{stderr}"); |
| } |
| } |
| } |
| } |
| |
| panic::resume_unwind(Box::new(())); |
| } |
| Ok(()) |
| })), |
| }); |
| } |
| |
| fn get_line(&self) -> usize { |
| if let Some(ref source_map) = self.source_map { |
| let line = self.position.lo().to_usize(); |
| let line = source_map.lookup_char_pos(BytePos(line as u32)).line; |
| if line > 0 { line - 1 } else { line } |
| } else { |
| 0 |
| } |
| } |
| |
| fn register_header(&mut self, name: &str, level: u32) { |
| if self.use_headers { |
| // We use these headings as test names, so it's good if |
| // they're valid identifiers. |
| let name = name |
| .chars() |
| .enumerate() |
| .map(|(i, c)| { |
| if (i == 0 && rustc_lexer::is_id_start(c)) |
| || (i != 0 && rustc_lexer::is_id_continue(c)) |
| { |
| c |
| } else { |
| '_' |
| } |
| }) |
| .collect::<String>(); |
| |
| // Here we try to efficiently assemble the header titles into the |
| // test name in the form of `h1::h2::h3::h4::h5::h6`. |
| // |
| // Suppose that originally `self.names` contains `[h1, h2, h3]`... |
| let level = level as usize; |
| if level <= self.names.len() { |
| // ... Consider `level == 2`. All headers in the lower levels |
| // are irrelevant in this new level. So we should reset |
| // `self.names` to contain headers until <h2>, and replace that |
| // slot with the new name: `[h1, name]`. |
| self.names.truncate(level); |
| self.names[level - 1] = name; |
| } else { |
| // ... On the other hand, consider `level == 5`. This means we |
| // need to extend `self.names` to contain five headers. We fill |
| // in the missing level (<h4>) with `_`. Thus `self.names` will |
| // become `[h1, h2, h3, "_", name]`. |
| if level - 1 > self.names.len() { |
| self.names.resize(level - 1, "_".to_owned()); |
| } |
| self.names.push(name); |
| } |
| } |
| } |
| } |
| |
| struct HirCollector<'a, 'hir, 'tcx> { |
| sess: &'a Session, |
| collector: &'a mut Collector, |
| map: Map<'hir>, |
| codes: ErrorCodes, |
| tcx: TyCtxt<'tcx>, |
| } |
| |
| impl<'a, 'hir, 'tcx> HirCollector<'a, 'hir, 'tcx> { |
| fn visit_testable<F: FnOnce(&mut Self)>( |
| &mut self, |
| name: String, |
| def_id: LocalDefId, |
| sp: Span, |
| nested: F, |
| ) { |
| let ast_attrs = self.tcx.hir().attrs(self.tcx.hir().local_def_id_to_hir_id(def_id)); |
| if let Some(ref cfg) = ast_attrs.cfg(self.tcx, &FxHashSet::default()) { |
| if !cfg.matches(&self.sess.parse_sess, Some(self.tcx.features())) { |
| return; |
| } |
| } |
| |
| let has_name = !name.is_empty(); |
| if has_name { |
| self.collector.names.push(name); |
| } |
| |
| // The collapse-docs pass won't combine sugared/raw doc attributes, or included files with |
| // anything else, this will combine them for us. |
| let attrs = Attributes::from_ast(ast_attrs); |
| if let Some(doc) = attrs.opt_doc_value() { |
| // Use the outermost invocation, so that doctest names come from where the docs were written. |
| let span = ast_attrs |
| .iter() |
| .find(|attr| attr.doc_str().is_some()) |
| .map(|attr| attr.span.ctxt().outer_expn().expansion_cause().unwrap_or(attr.span)) |
| .unwrap_or(DUMMY_SP); |
| self.collector.set_position(span); |
| markdown::find_testable_code( |
| &doc, |
| self.collector, |
| self.codes, |
| self.collector.enable_per_target_ignores, |
| Some(&crate::html::markdown::ExtraInfo::new( |
| self.tcx, |
| def_id.to_def_id(), |
| span_of_fragments(&attrs.doc_strings).unwrap_or(sp), |
| )), |
| self.tcx.features().custom_code_classes_in_docs, |
| ); |
| } |
| |
| nested(self); |
| |
| if has_name { |
| self.collector.names.pop(); |
| } |
| } |
| } |
| |
| impl<'a, 'hir, 'tcx> intravisit::Visitor<'hir> for HirCollector<'a, 'hir, 'tcx> { |
| type NestedFilter = nested_filter::All; |
| |
| fn nested_visit_map(&mut self) -> Self::Map { |
| self.map |
| } |
| |
| fn visit_item(&mut self, item: &'hir hir::Item<'_>) { |
| let name = match &item.kind { |
| hir::ItemKind::Impl(impl_) => { |
| rustc_hir_pretty::id_to_string(&self.map, impl_.self_ty.hir_id) |
| } |
| _ => item.ident.to_string(), |
| }; |
| |
| self.visit_testable(name, item.owner_id.def_id, item.span, |this| { |
| intravisit::walk_item(this, item); |
| }); |
| } |
| |
| fn visit_trait_item(&mut self, item: &'hir hir::TraitItem<'_>) { |
| self.visit_testable(item.ident.to_string(), item.owner_id.def_id, item.span, |this| { |
| intravisit::walk_trait_item(this, item); |
| }); |
| } |
| |
| fn visit_impl_item(&mut self, item: &'hir hir::ImplItem<'_>) { |
| self.visit_testable(item.ident.to_string(), item.owner_id.def_id, item.span, |this| { |
| intravisit::walk_impl_item(this, item); |
| }); |
| } |
| |
| fn visit_foreign_item(&mut self, item: &'hir hir::ForeignItem<'_>) { |
| self.visit_testable(item.ident.to_string(), item.owner_id.def_id, item.span, |this| { |
| intravisit::walk_foreign_item(this, item); |
| }); |
| } |
| |
| fn visit_variant(&mut self, v: &'hir hir::Variant<'_>) { |
| self.visit_testable(v.ident.to_string(), v.def_id, v.span, |this| { |
| intravisit::walk_variant(this, v); |
| }); |
| } |
| |
| fn visit_field_def(&mut self, f: &'hir hir::FieldDef<'_>) { |
| self.visit_testable(f.ident.to_string(), f.def_id, f.span, |this| { |
| intravisit::walk_field_def(this, f); |
| }); |
| } |
| } |
| |
| #[cfg(test)] |
| mod tests; |