]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/doctest.rs
Rollup merge of #103176 - nnethercote:fix-TyKind-is_simple_path, r=spastorino
[rust.git] / src / librustdoc / doctest.rs
1 use rustc_ast as ast;
2 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
3 use rustc_data_structures::sync::Lrc;
4 use rustc_errors::{ColorConfig, ErrorGuaranteed, FatalError};
5 use rustc_hir as hir;
6 use rustc_hir::def_id::LOCAL_CRATE;
7 use rustc_hir::intravisit;
8 use rustc_hir::{HirId, CRATE_HIR_ID};
9 use rustc_interface::interface;
10 use rustc_middle::hir::map::Map;
11 use rustc_middle::hir::nested_filter;
12 use rustc_middle::ty::TyCtxt;
13 use rustc_parse::maybe_new_parser_from_source_str;
14 use rustc_parse::parser::attr::InnerAttrPolicy;
15 use rustc_session::config::{self, CrateType, ErrorOutputType};
16 use rustc_session::parse::ParseSess;
17 use rustc_session::{lint, Session};
18 use rustc_span::edition::Edition;
19 use rustc_span::source_map::SourceMap;
20 use rustc_span::symbol::sym;
21 use rustc_span::{BytePos, FileName, Pos, Span, DUMMY_SP};
22 use rustc_target::spec::TargetTriple;
23 use tempfile::Builder as TempFileBuilder;
24
25 use std::env;
26 use std::io::{self, Write};
27 use std::panic;
28 use std::path::PathBuf;
29 use std::process::{self, Command, Stdio};
30 use std::str;
31 use std::sync::atomic::{AtomicUsize, Ordering};
32 use std::sync::{Arc, Mutex};
33
34 use crate::clean::{types::AttributesExt, Attributes};
35 use crate::config::Options as RustdocOptions;
36 use crate::html::markdown::{self, ErrorCodes, Ignore, LangString};
37 use crate::lint::init_lints;
38 use crate::passes::span_of_attrs;
39
40 /// Options that apply to all doctests in a crate or Markdown file (for `rustdoc foo.md`).
41 #[derive(Clone, Default)]
42 pub(crate) struct GlobalTestOptions {
43     /// Whether to disable the default `extern crate my_crate;` when creating doctests.
44     pub(crate) no_crate_inject: bool,
45     /// Additional crate-level attributes to add to doctests.
46     pub(crate) attrs: Vec<String>,
47 }
48
49 pub(crate) fn run(options: RustdocOptions) -> Result<(), ErrorGuaranteed> {
50     let input = config::Input::File(options.input.clone());
51
52     let invalid_codeblock_attributes_name = crate::lint::INVALID_CODEBLOCK_ATTRIBUTES.name;
53
54     // See core::create_config for what's going on here.
55     let allowed_lints = vec![
56         invalid_codeblock_attributes_name.to_owned(),
57         lint::builtin::UNKNOWN_LINTS.name.to_owned(),
58         lint::builtin::RENAMED_AND_REMOVED_LINTS.name.to_owned(),
59     ];
60
61     let (lint_opts, lint_caps) = init_lints(allowed_lints, options.lint_opts.clone(), |lint| {
62         if lint.name == invalid_codeblock_attributes_name {
63             None
64         } else {
65             Some((lint.name_lower(), lint::Allow))
66         }
67     });
68
69     debug!(?lint_opts);
70
71     let crate_types =
72         if options.proc_macro_crate { vec![CrateType::ProcMacro] } else { vec![CrateType::Rlib] };
73
74     let sessopts = config::Options {
75         maybe_sysroot: options.maybe_sysroot.clone(),
76         search_paths: options.libs.clone(),
77         crate_types,
78         lint_opts,
79         lint_cap: Some(options.lint_cap.unwrap_or(lint::Forbid)),
80         cg: options.codegen_options.clone(),
81         externs: options.externs.clone(),
82         unstable_features: options.unstable_features,
83         actually_rustdoc: true,
84         edition: options.edition,
85         target_triple: options.target.clone(),
86         crate_name: options.crate_name.clone(),
87         ..config::Options::default()
88     };
89
90     let mut cfgs = options.cfgs.clone();
91     cfgs.push("doc".to_owned());
92     cfgs.push("doctest".to_owned());
93     let config = interface::Config {
94         opts: sessopts,
95         crate_cfg: interface::parse_cfgspecs(cfgs),
96         crate_check_cfg: interface::parse_check_cfg(options.check_cfgs.clone()),
97         input,
98         input_path: None,
99         output_file: None,
100         output_dir: None,
101         file_loader: None,
102         lint_caps,
103         parse_sess_created: None,
104         register_lints: Some(Box::new(crate::lint::register_lints)),
105         override_queries: None,
106         make_codegen_backend: None,
107         registry: rustc_driver::diagnostics_registry(),
108     };
109
110     let test_args = options.test_args.clone();
111     let nocapture = options.nocapture;
112     let externs = options.externs.clone();
113     let json_unused_externs = options.json_unused_externs;
114
115     let (tests, unused_extern_reports, compiling_test_count) =
116         interface::run_compiler(config, |compiler| {
117             compiler.enter(|queries| {
118                 let mut global_ctxt = queries.global_ctxt()?.take();
119
120                 let collector = global_ctxt.enter(|tcx| {
121                     let crate_attrs = tcx.hir().attrs(CRATE_HIR_ID);
122
123                     let opts = scrape_test_config(crate_attrs);
124                     let enable_per_target_ignores = options.enable_per_target_ignores;
125                     let mut collector = Collector::new(
126                         tcx.crate_name(LOCAL_CRATE).to_string(),
127                         options,
128                         false,
129                         opts,
130                         Some(compiler.session().parse_sess.clone_source_map()),
131                         None,
132                         enable_per_target_ignores,
133                     );
134
135                     let mut hir_collector = HirCollector {
136                         sess: compiler.session(),
137                         collector: &mut collector,
138                         map: tcx.hir(),
139                         codes: ErrorCodes::from(
140                             compiler.session().opts.unstable_features.is_nightly_build(),
141                         ),
142                         tcx,
143                     };
144                     hir_collector.visit_testable(
145                         "".to_string(),
146                         CRATE_HIR_ID,
147                         tcx.hir().span(CRATE_HIR_ID),
148                         |this| tcx.hir().walk_toplevel_module(this),
149                     );
150
151                     collector
152                 });
153                 if compiler.session().diagnostic().has_errors_or_lint_errors().is_some() {
154                     FatalError.raise();
155                 }
156
157                 let unused_extern_reports = collector.unused_extern_reports.clone();
158                 let compiling_test_count = collector.compiling_test_count.load(Ordering::SeqCst);
159                 let ret: Result<_, ErrorGuaranteed> =
160                     Ok((collector.tests, unused_extern_reports, compiling_test_count));
161                 ret
162             })
163         })?;
164
165     run_tests(test_args, nocapture, tests);
166
167     // Collect and warn about unused externs, but only if we've gotten
168     // reports for each doctest
169     if json_unused_externs.is_enabled() {
170         let unused_extern_reports: Vec<_> =
171             std::mem::take(&mut unused_extern_reports.lock().unwrap());
172         if unused_extern_reports.len() == compiling_test_count {
173             let extern_names = externs.iter().map(|(name, _)| name).collect::<FxHashSet<&String>>();
174             let mut unused_extern_names = unused_extern_reports
175                 .iter()
176                 .map(|uexts| uexts.unused_extern_names.iter().collect::<FxHashSet<&String>>())
177                 .fold(extern_names, |uextsa, uextsb| {
178                     uextsa.intersection(&uextsb).copied().collect::<FxHashSet<&String>>()
179                 })
180                 .iter()
181                 .map(|v| (*v).clone())
182                 .collect::<Vec<String>>();
183             unused_extern_names.sort();
184             // Take the most severe lint level
185             let lint_level = unused_extern_reports
186                 .iter()
187                 .map(|uexts| uexts.lint_level.as_str())
188                 .max_by_key(|v| match *v {
189                     "warn" => 1,
190                     "deny" => 2,
191                     "forbid" => 3,
192                     // The allow lint level is not expected,
193                     // as if allow is specified, no message
194                     // is to be emitted.
195                     v => unreachable!("Invalid lint level '{}'", v),
196                 })
197                 .unwrap_or("warn")
198                 .to_string();
199             let uext = UnusedExterns { lint_level, unused_extern_names };
200             let unused_extern_json = serde_json::to_string(&uext).unwrap();
201             eprintln!("{unused_extern_json}");
202         }
203     }
204
205     Ok(())
206 }
207
208 pub(crate) fn run_tests(
209     mut test_args: Vec<String>,
210     nocapture: bool,
211     tests: Vec<test::TestDescAndFn>,
212 ) {
213     test_args.insert(0, "rustdoctest".to_string());
214     if nocapture {
215         test_args.push("--nocapture".to_string());
216     }
217     test::test_main(&test_args, tests, None);
218 }
219
220 // Look for `#![doc(test(no_crate_inject))]`, used by crates in the std facade.
221 fn scrape_test_config(attrs: &[ast::Attribute]) -> GlobalTestOptions {
222     use rustc_ast_pretty::pprust;
223
224     let mut opts = GlobalTestOptions { no_crate_inject: false, attrs: Vec::new() };
225
226     let test_attrs: Vec<_> = attrs
227         .iter()
228         .filter(|a| a.has_name(sym::doc))
229         .flat_map(|a| a.meta_item_list().unwrap_or_default())
230         .filter(|a| a.has_name(sym::test))
231         .collect();
232     let attrs = test_attrs.iter().flat_map(|a| a.meta_item_list().unwrap_or(&[]));
233
234     for attr in attrs {
235         if attr.has_name(sym::no_crate_inject) {
236             opts.no_crate_inject = true;
237         }
238         if attr.has_name(sym::attr) {
239             if let Some(l) = attr.meta_item_list() {
240                 for item in l {
241                     opts.attrs.push(pprust::meta_list_item_to_string(item));
242                 }
243             }
244         }
245     }
246
247     opts
248 }
249
250 /// Documentation test failure modes.
251 enum TestFailure {
252     /// The test failed to compile.
253     CompileError,
254     /// The test is marked `compile_fail` but compiled successfully.
255     UnexpectedCompilePass,
256     /// The test failed to compile (as expected) but the compiler output did not contain all
257     /// expected error codes.
258     MissingErrorCodes(Vec<String>),
259     /// The test binary was unable to be executed.
260     ExecutionError(io::Error),
261     /// The test binary exited with a non-zero exit code.
262     ///
263     /// This typically means an assertion in the test failed or another form of panic occurred.
264     ExecutionFailure(process::Output),
265     /// The test is marked `should_panic` but the test binary executed successfully.
266     UnexpectedRunPass,
267 }
268
269 enum DirState {
270     Temp(tempfile::TempDir),
271     Perm(PathBuf),
272 }
273
274 impl DirState {
275     fn path(&self) -> &std::path::Path {
276         match self {
277             DirState::Temp(t) => t.path(),
278             DirState::Perm(p) => p.as_path(),
279         }
280     }
281 }
282
283 // NOTE: Keep this in sync with the equivalent structs in rustc
284 // and cargo.
285 // We could unify this struct the one in rustc but they have different
286 // ownership semantics, so doing so would create wasteful allocations.
287 #[derive(serde::Serialize, serde::Deserialize)]
288 struct UnusedExterns {
289     /// Lint level of the unused_crate_dependencies lint
290     lint_level: String,
291     /// List of unused externs by their names.
292     unused_extern_names: Vec<String>,
293 }
294
295 fn run_test(
296     test: &str,
297     crate_name: &str,
298     line: usize,
299     rustdoc_options: RustdocOptions,
300     mut lang_string: LangString,
301     no_run: bool,
302     runtool: Option<String>,
303     runtool_args: Vec<String>,
304     target: TargetTriple,
305     opts: &GlobalTestOptions,
306     edition: Edition,
307     outdir: DirState,
308     path: PathBuf,
309     test_id: &str,
310     report_unused_externs: impl Fn(UnusedExterns),
311 ) -> Result<(), TestFailure> {
312     let (test, line_offset, supports_color) =
313         make_test(test, Some(crate_name), lang_string.test_harness, opts, edition, Some(test_id));
314
315     let output_file = outdir.path().join("rust_out");
316
317     let rustc_binary = rustdoc_options
318         .test_builder
319         .as_deref()
320         .unwrap_or_else(|| rustc_interface::util::rustc_path().expect("found rustc"));
321     let mut compiler = Command::new(&rustc_binary);
322     compiler.arg("--crate-type").arg("bin");
323     for cfg in &rustdoc_options.cfgs {
324         compiler.arg("--cfg").arg(&cfg);
325     }
326     if !rustdoc_options.check_cfgs.is_empty() {
327         compiler.arg("-Z").arg("unstable-options");
328         for check_cfg in &rustdoc_options.check_cfgs {
329             compiler.arg("--check-cfg").arg(&check_cfg);
330         }
331     }
332     if let Some(sysroot) = rustdoc_options.maybe_sysroot {
333         compiler.arg("--sysroot").arg(sysroot);
334     }
335     compiler.arg("--edition").arg(&edition.to_string());
336     compiler.env("UNSTABLE_RUSTDOC_TEST_PATH", path);
337     compiler.env("UNSTABLE_RUSTDOC_TEST_LINE", format!("{}", line as isize - line_offset as isize));
338     compiler.arg("-o").arg(&output_file);
339     if lang_string.test_harness {
340         compiler.arg("--test");
341     }
342     if rustdoc_options.json_unused_externs.is_enabled() && !lang_string.compile_fail {
343         compiler.arg("--error-format=json");
344         compiler.arg("--json").arg("unused-externs");
345         compiler.arg("-Z").arg("unstable-options");
346         compiler.arg("-W").arg("unused_crate_dependencies");
347     }
348     for lib_str in &rustdoc_options.lib_strs {
349         compiler.arg("-L").arg(&lib_str);
350     }
351     for extern_str in &rustdoc_options.extern_strs {
352         compiler.arg("--extern").arg(&extern_str);
353     }
354     compiler.arg("-Ccodegen-units=1");
355     for codegen_options_str in &rustdoc_options.codegen_options_strs {
356         compiler.arg("-C").arg(&codegen_options_str);
357     }
358     for unstable_option_str in &rustdoc_options.unstable_opts_strs {
359         compiler.arg("-Z").arg(&unstable_option_str);
360     }
361     if no_run && !lang_string.compile_fail && rustdoc_options.persist_doctests.is_none() {
362         compiler.arg("--emit=metadata");
363     }
364     compiler.arg("--target").arg(match target {
365         TargetTriple::TargetTriple(s) => s,
366         TargetTriple::TargetJson { path_for_rustdoc, .. } => {
367             path_for_rustdoc.to_str().expect("target path must be valid unicode").to_string()
368         }
369     });
370     if let ErrorOutputType::HumanReadable(kind) = rustdoc_options.error_format {
371         let (short, color_config) = kind.unzip();
372
373         if short {
374             compiler.arg("--error-format").arg("short");
375         }
376
377         match color_config {
378             ColorConfig::Never => {
379                 compiler.arg("--color").arg("never");
380             }
381             ColorConfig::Always => {
382                 compiler.arg("--color").arg("always");
383             }
384             ColorConfig::Auto => {
385                 compiler.arg("--color").arg(if supports_color { "always" } else { "never" });
386             }
387         }
388     }
389
390     compiler.arg("-");
391     compiler.stdin(Stdio::piped());
392     compiler.stderr(Stdio::piped());
393
394     let mut child = compiler.spawn().expect("Failed to spawn rustc process");
395     {
396         let stdin = child.stdin.as_mut().expect("Failed to open stdin");
397         stdin.write_all(test.as_bytes()).expect("could write out test sources");
398     }
399     let output = child.wait_with_output().expect("Failed to read stdout");
400
401     struct Bomb<'a>(&'a str);
402     impl Drop for Bomb<'_> {
403         fn drop(&mut self) {
404             eprint!("{}", self.0);
405         }
406     }
407     let mut out = str::from_utf8(&output.stderr)
408         .unwrap()
409         .lines()
410         .filter(|l| {
411             if let Ok(uext) = serde_json::from_str::<UnusedExterns>(l) {
412                 report_unused_externs(uext);
413                 false
414             } else {
415                 true
416             }
417         })
418         .intersperse_with(|| "\n")
419         .collect::<String>();
420
421     // Add a \n to the end to properly terminate the last line,
422     // but only if there was output to be printed
423     if !out.is_empty() {
424         out.push('\n');
425     }
426
427     let _bomb = Bomb(&out);
428     match (output.status.success(), lang_string.compile_fail) {
429         (true, true) => {
430             return Err(TestFailure::UnexpectedCompilePass);
431         }
432         (true, false) => {}
433         (false, true) => {
434             if !lang_string.error_codes.is_empty() {
435                 // We used to check if the output contained "error[{}]: " but since we added the
436                 // colored output, we can't anymore because of the color escape characters before
437                 // the ":".
438                 lang_string.error_codes.retain(|err| !out.contains(&format!("error[{err}]")));
439
440                 if !lang_string.error_codes.is_empty() {
441                     return Err(TestFailure::MissingErrorCodes(lang_string.error_codes));
442                 }
443             }
444         }
445         (false, false) => {
446             return Err(TestFailure::CompileError);
447         }
448     }
449
450     if no_run {
451         return Ok(());
452     }
453
454     // Run the code!
455     let mut cmd;
456
457     if let Some(tool) = runtool {
458         cmd = Command::new(tool);
459         cmd.args(runtool_args);
460         cmd.arg(output_file);
461     } else {
462         cmd = Command::new(output_file);
463     }
464     if let Some(run_directory) = rustdoc_options.test_run_directory {
465         cmd.current_dir(run_directory);
466     }
467
468     let result = if rustdoc_options.nocapture {
469         cmd.status().map(|status| process::Output {
470             status,
471             stdout: Vec::new(),
472             stderr: Vec::new(),
473         })
474     } else {
475         cmd.output()
476     };
477     match result {
478         Err(e) => return Err(TestFailure::ExecutionError(e)),
479         Ok(out) => {
480             if lang_string.should_panic && out.status.success() {
481                 return Err(TestFailure::UnexpectedRunPass);
482             } else if !lang_string.should_panic && !out.status.success() {
483                 return Err(TestFailure::ExecutionFailure(out));
484             }
485         }
486     }
487
488     Ok(())
489 }
490
491 /// Transforms a test into code that can be compiled into a Rust binary, and returns the number of
492 /// lines before the test code begins as well as if the output stream supports colors or not.
493 pub(crate) fn make_test(
494     s: &str,
495     crate_name: Option<&str>,
496     dont_insert_main: bool,
497     opts: &GlobalTestOptions,
498     edition: Edition,
499     test_id: Option<&str>,
500 ) -> (String, usize, bool) {
501     let (crate_attrs, everything_else, crates) = partition_source(s, edition);
502     let everything_else = everything_else.trim();
503     let mut line_offset = 0;
504     let mut prog = String::new();
505     let mut supports_color = false;
506
507     if opts.attrs.is_empty() {
508         // If there aren't any attributes supplied by #![doc(test(attr(...)))], then allow some
509         // lints that are commonly triggered in doctests. The crate-level test attributes are
510         // commonly used to make tests fail in case they trigger warnings, so having this there in
511         // that case may cause some tests to pass when they shouldn't have.
512         prog.push_str("#![allow(unused)]\n");
513         line_offset += 1;
514     }
515
516     // Next, any attributes that came from the crate root via #![doc(test(attr(...)))].
517     for attr in &opts.attrs {
518         prog.push_str(&format!("#![{attr}]\n"));
519         line_offset += 1;
520     }
521
522     // Now push any outer attributes from the example, assuming they
523     // are intended to be crate attributes.
524     prog.push_str(&crate_attrs);
525     prog.push_str(&crates);
526
527     // Uses librustc_ast to parse the doctest and find if there's a main fn and the extern
528     // crate already is included.
529     let result = rustc_driver::catch_fatal_errors(|| {
530         rustc_span::create_session_if_not_set_then(edition, |_| {
531             use rustc_errors::emitter::{Emitter, EmitterWriter};
532             use rustc_errors::Handler;
533             use rustc_parse::parser::ForceCollect;
534             use rustc_span::source_map::FilePathMapping;
535
536             let filename = FileName::anon_source_code(s);
537             let source = crates + everything_else;
538
539             // Any errors in parsing should also appear when the doctest is compiled for real, so just
540             // send all the errors that librustc_ast emits directly into a `Sink` instead of stderr.
541             let sm = Lrc::new(SourceMap::new(FilePathMapping::empty()));
542             let fallback_bundle =
543                 rustc_errors::fallback_fluent_bundle(rustc_errors::DEFAULT_LOCALE_RESOURCES, false);
544             supports_color = EmitterWriter::stderr(
545                 ColorConfig::Auto,
546                 None,
547                 None,
548                 fallback_bundle.clone(),
549                 false,
550                 false,
551                 Some(80),
552                 false,
553             )
554             .supports_color();
555
556             let emitter = EmitterWriter::new(
557                 Box::new(io::sink()),
558                 None,
559                 None,
560                 fallback_bundle,
561                 false,
562                 false,
563                 false,
564                 None,
565                 false,
566             );
567
568             // FIXME(misdreavus): pass `-Z treat-err-as-bug` to the doctest parser
569             let handler = Handler::with_emitter(false, None, Box::new(emitter));
570             let sess = ParseSess::with_span_handler(handler, sm);
571
572             let mut found_main = false;
573             let mut found_extern_crate = crate_name.is_none();
574             let mut found_macro = false;
575
576             let mut parser = match maybe_new_parser_from_source_str(&sess, filename, source) {
577                 Ok(p) => p,
578                 Err(errs) => {
579                     drop(errs);
580                     return (found_main, found_extern_crate, found_macro);
581                 }
582             };
583
584             loop {
585                 match parser.parse_item(ForceCollect::No) {
586                     Ok(Some(item)) => {
587                         if !found_main {
588                             if let ast::ItemKind::Fn(..) = item.kind {
589                                 if item.ident.name == sym::main {
590                                     found_main = true;
591                                 }
592                             }
593                         }
594
595                         if !found_extern_crate {
596                             if let ast::ItemKind::ExternCrate(original) = item.kind {
597                                 // This code will never be reached if `crate_name` is none because
598                                 // `found_extern_crate` is initialized to `true` if it is none.
599                                 let crate_name = crate_name.unwrap();
600
601                                 match original {
602                                     Some(name) => found_extern_crate = name.as_str() == crate_name,
603                                     None => found_extern_crate = item.ident.as_str() == crate_name,
604                                 }
605                             }
606                         }
607
608                         if !found_macro {
609                             if let ast::ItemKind::MacCall(..) = item.kind {
610                                 found_macro = true;
611                             }
612                         }
613
614                         if found_main && found_extern_crate {
615                             break;
616                         }
617                     }
618                     Ok(None) => break,
619                     Err(e) => {
620                         e.cancel();
621                         break;
622                     }
623                 }
624
625                 // The supplied slice is only used for diagnostics,
626                 // which are swallowed here anyway.
627                 parser.maybe_consume_incorrect_semicolon(&[]);
628             }
629
630             // Reset errors so that they won't be reported as compiler bugs when dropping the
631             // handler. Any errors in the tests will be reported when the test file is compiled,
632             // Note that we still need to cancel the errors above otherwise `DiagnosticBuilder`
633             // will panic on drop.
634             sess.span_diagnostic.reset_err_count();
635
636             (found_main, found_extern_crate, found_macro)
637         })
638     });
639     let Ok((already_has_main, already_has_extern_crate, found_macro)) = result
640     else {
641         // If the parser panicked due to a fatal error, pass the test code through unchanged.
642         // The error will be reported during compilation.
643         return (s.to_owned(), 0, false);
644     };
645
646     // If a doctest's `fn main` is being masked by a wrapper macro, the parsing loop above won't
647     // see it. In that case, run the old text-based scan to see if they at least have a main
648     // function written inside a macro invocation. See
649     // https://github.com/rust-lang/rust/issues/56898
650     let already_has_main = if found_macro && !already_has_main {
651         s.lines()
652             .map(|line| {
653                 let comment = line.find("//");
654                 if let Some(comment_begins) = comment { &line[0..comment_begins] } else { line }
655             })
656             .any(|code| code.contains("fn main"))
657     } else {
658         already_has_main
659     };
660
661     // Don't inject `extern crate std` because it's already injected by the
662     // compiler.
663     if !already_has_extern_crate && !opts.no_crate_inject && crate_name != Some("std") {
664         if let Some(crate_name) = crate_name {
665             // Don't inject `extern crate` if the crate is never used.
666             // NOTE: this is terribly inaccurate because it doesn't actually
667             // parse the source, but only has false positives, not false
668             // negatives.
669             if s.contains(crate_name) {
670                 prog.push_str(&format!("extern crate r#{crate_name};\n"));
671                 line_offset += 1;
672             }
673         }
674     }
675
676     // FIXME: This code cannot yet handle no_std test cases yet
677     if dont_insert_main || already_has_main || prog.contains("![no_std]") {
678         prog.push_str(everything_else);
679     } else {
680         let returns_result = everything_else.trim_end().ends_with("(())");
681         // Give each doctest main function a unique name.
682         // This is for example needed for the tooling around `-C instrument-coverage`.
683         let inner_fn_name = if let Some(test_id) = test_id {
684             format!("_doctest_main_{test_id}")
685         } else {
686             "_inner".into()
687         };
688         let inner_attr = if test_id.is_some() { "#[allow(non_snake_case)] " } else { "" };
689         let (main_pre, main_post) = if returns_result {
690             (
691                 format!(
692                     "fn main() {{ {inner_attr}fn {inner_fn_name}() -> Result<(), impl core::fmt::Debug> {{\n",
693                 ),
694                 format!("\n}} {inner_fn_name}().unwrap() }}"),
695             )
696         } else if test_id.is_some() {
697             (
698                 format!("fn main() {{ {inner_attr}fn {inner_fn_name}() {{\n",),
699                 format!("\n}} {inner_fn_name}() }}"),
700             )
701         } else {
702             ("fn main() {\n".into(), "\n}".into())
703         };
704         // Note on newlines: We insert a line/newline *before*, and *after*
705         // the doctest and adjust the `line_offset` accordingly.
706         // In the case of `-C instrument-coverage`, this means that the generated
707         // inner `main` function spans from the doctest opening codeblock to the
708         // closing one. For example
709         // /// ``` <- start of the inner main
710         // /// <- code under doctest
711         // /// ``` <- end of the inner main
712         line_offset += 1;
713
714         prog.extend([&main_pre, everything_else, &main_post].iter().cloned());
715     }
716
717     debug!("final doctest:\n{prog}");
718
719     (prog, line_offset, supports_color)
720 }
721
722 fn check_if_attr_is_complete(source: &str, edition: Edition) -> bool {
723     if source.is_empty() {
724         // Empty content so nothing to check in here...
725         return true;
726     }
727     rustc_driver::catch_fatal_errors(|| {
728         rustc_span::create_session_if_not_set_then(edition, |_| {
729             use rustc_errors::emitter::EmitterWriter;
730             use rustc_errors::Handler;
731             use rustc_span::source_map::FilePathMapping;
732
733             let filename = FileName::anon_source_code(source);
734             // Any errors in parsing should also appear when the doctest is compiled for real, so just
735             // send all the errors that librustc_ast emits directly into a `Sink` instead of stderr.
736             let sm = Lrc::new(SourceMap::new(FilePathMapping::empty()));
737             let fallback_bundle =
738                 rustc_errors::fallback_fluent_bundle(rustc_errors::DEFAULT_LOCALE_RESOURCES, false);
739
740             let emitter = EmitterWriter::new(
741                 Box::new(io::sink()),
742                 None,
743                 None,
744                 fallback_bundle,
745                 false,
746                 false,
747                 false,
748                 None,
749                 false,
750             );
751
752             let handler = Handler::with_emitter(false, None, Box::new(emitter));
753             let sess = ParseSess::with_span_handler(handler, sm);
754             let mut parser =
755                 match maybe_new_parser_from_source_str(&sess, filename, source.to_owned()) {
756                     Ok(p) => p,
757                     Err(_) => {
758                         debug!("Cannot build a parser to check mod attr so skipping...");
759                         return true;
760                     }
761                 };
762             // If a parsing error happened, it's very likely that the attribute is incomplete.
763             if let Err(e) = parser.parse_attribute(InnerAttrPolicy::Permitted) {
764                 e.cancel();
765                 return false;
766             }
767             // We now check if there is an unclosed delimiter for the attribute. To do so, we look at
768             // the `unclosed_delims` and see if the opening square bracket was closed.
769             parser
770                 .unclosed_delims()
771                 .get(0)
772                 .map(|unclosed| {
773                     unclosed.unclosed_span.map(|s| s.lo()).unwrap_or(BytePos(0)) != BytePos(2)
774                 })
775                 .unwrap_or(true)
776         })
777     })
778     .unwrap_or(false)
779 }
780
781 fn partition_source(s: &str, edition: Edition) -> (String, String, String) {
782     #[derive(Copy, Clone, PartialEq)]
783     enum PartitionState {
784         Attrs,
785         Crates,
786         Other,
787     }
788     let mut state = PartitionState::Attrs;
789     let mut before = String::new();
790     let mut crates = String::new();
791     let mut after = String::new();
792
793     let mut mod_attr_pending = String::new();
794
795     for line in s.lines() {
796         let trimline = line.trim();
797
798         // FIXME(misdreavus): if a doc comment is placed on an extern crate statement, it will be
799         // shunted into "everything else"
800         match state {
801             PartitionState::Attrs => {
802                 state = if trimline.starts_with("#![") {
803                     if !check_if_attr_is_complete(line, edition) {
804                         mod_attr_pending = line.to_owned();
805                     } else {
806                         mod_attr_pending.clear();
807                     }
808                     PartitionState::Attrs
809                 } else if trimline.chars().all(|c| c.is_whitespace())
810                     || (trimline.starts_with("//") && !trimline.starts_with("///"))
811                 {
812                     PartitionState::Attrs
813                 } else if trimline.starts_with("extern crate")
814                     || trimline.starts_with("#[macro_use] extern crate")
815                 {
816                     PartitionState::Crates
817                 } else {
818                     // First we check if the previous attribute was "complete"...
819                     if !mod_attr_pending.is_empty() {
820                         // If not, then we append the new line into the pending attribute to check
821                         // if this time it's complete...
822                         mod_attr_pending.push_str(line);
823                         if !trimline.is_empty()
824                             && check_if_attr_is_complete(&mod_attr_pending, edition)
825                         {
826                             // If it's complete, then we can clear the pending content.
827                             mod_attr_pending.clear();
828                         }
829                         // In any case, this is considered as `PartitionState::Attrs` so it's
830                         // prepended before rustdoc's inserts.
831                         PartitionState::Attrs
832                     } else {
833                         PartitionState::Other
834                     }
835                 };
836             }
837             PartitionState::Crates => {
838                 state = if trimline.starts_with("extern crate")
839                     || trimline.starts_with("#[macro_use] extern crate")
840                     || trimline.chars().all(|c| c.is_whitespace())
841                     || (trimline.starts_with("//") && !trimline.starts_with("///"))
842                 {
843                     PartitionState::Crates
844                 } else {
845                     PartitionState::Other
846                 };
847             }
848             PartitionState::Other => {}
849         }
850
851         match state {
852             PartitionState::Attrs => {
853                 before.push_str(line);
854                 before.push('\n');
855             }
856             PartitionState::Crates => {
857                 crates.push_str(line);
858                 crates.push('\n');
859             }
860             PartitionState::Other => {
861                 after.push_str(line);
862                 after.push('\n');
863             }
864         }
865     }
866
867     debug!("before:\n{before}");
868     debug!("crates:\n{crates}");
869     debug!("after:\n{after}");
870
871     (before, after, crates)
872 }
873
874 pub(crate) trait Tester {
875     fn add_test(&mut self, test: String, config: LangString, line: usize);
876     fn get_line(&self) -> usize {
877         0
878     }
879     fn register_header(&mut self, _name: &str, _level: u32) {}
880 }
881
882 pub(crate) struct Collector {
883     pub(crate) tests: Vec<test::TestDescAndFn>,
884
885     // The name of the test displayed to the user, separated by `::`.
886     //
887     // In tests from Rust source, this is the path to the item
888     // e.g., `["std", "vec", "Vec", "push"]`.
889     //
890     // In tests from a markdown file, this is the titles of all headers (h1~h6)
891     // of the sections that contain the code block, e.g., if the markdown file is
892     // written as:
893     //
894     // ``````markdown
895     // # Title
896     //
897     // ## Subtitle
898     //
899     // ```rust
900     // assert!(true);
901     // ```
902     // ``````
903     //
904     // the `names` vector of that test will be `["Title", "Subtitle"]`.
905     names: Vec<String>,
906
907     rustdoc_options: RustdocOptions,
908     use_headers: bool,
909     enable_per_target_ignores: bool,
910     crate_name: String,
911     opts: GlobalTestOptions,
912     position: Span,
913     source_map: Option<Lrc<SourceMap>>,
914     filename: Option<PathBuf>,
915     visited_tests: FxHashMap<(String, usize), usize>,
916     unused_extern_reports: Arc<Mutex<Vec<UnusedExterns>>>,
917     compiling_test_count: AtomicUsize,
918 }
919
920 impl Collector {
921     pub(crate) fn new(
922         crate_name: String,
923         rustdoc_options: RustdocOptions,
924         use_headers: bool,
925         opts: GlobalTestOptions,
926         source_map: Option<Lrc<SourceMap>>,
927         filename: Option<PathBuf>,
928         enable_per_target_ignores: bool,
929     ) -> Collector {
930         Collector {
931             tests: Vec::new(),
932             names: Vec::new(),
933             rustdoc_options,
934             use_headers,
935             enable_per_target_ignores,
936             crate_name,
937             opts,
938             position: DUMMY_SP,
939             source_map,
940             filename,
941             visited_tests: FxHashMap::default(),
942             unused_extern_reports: Default::default(),
943             compiling_test_count: AtomicUsize::new(0),
944         }
945     }
946
947     fn generate_name(&self, line: usize, filename: &FileName) -> String {
948         let mut item_path = self.names.join("::");
949         item_path.retain(|c| c != ' ');
950         if !item_path.is_empty() {
951             item_path.push(' ');
952         }
953         format!("{} - {}(line {})", filename.prefer_local(), item_path, line)
954     }
955
956     pub(crate) fn set_position(&mut self, position: Span) {
957         self.position = position;
958     }
959
960     fn get_filename(&self) -> FileName {
961         if let Some(ref source_map) = self.source_map {
962             let filename = source_map.span_to_filename(self.position);
963             if let FileName::Real(ref filename) = filename {
964                 if let Ok(cur_dir) = env::current_dir() {
965                     if let Some(local_path) = filename.local_path() {
966                         if let Ok(path) = local_path.strip_prefix(&cur_dir) {
967                             return path.to_owned().into();
968                         }
969                     }
970                 }
971             }
972             filename
973         } else if let Some(ref filename) = self.filename {
974             filename.clone().into()
975         } else {
976             FileName::Custom("input".to_owned())
977         }
978     }
979 }
980
981 impl Tester for Collector {
982     fn add_test(&mut self, test: String, config: LangString, line: usize) {
983         let filename = self.get_filename();
984         let name = self.generate_name(line, &filename);
985         let crate_name = self.crate_name.clone();
986         let opts = self.opts.clone();
987         let edition = config.edition.unwrap_or(self.rustdoc_options.edition);
988         let rustdoc_options = self.rustdoc_options.clone();
989         let runtool = self.rustdoc_options.runtool.clone();
990         let runtool_args = self.rustdoc_options.runtool_args.clone();
991         let target = self.rustdoc_options.target.clone();
992         let target_str = target.to_string();
993         let unused_externs = self.unused_extern_reports.clone();
994         let no_run = config.no_run || rustdoc_options.no_run;
995         if !config.compile_fail {
996             self.compiling_test_count.fetch_add(1, Ordering::SeqCst);
997         }
998
999         let path = match &filename {
1000             FileName::Real(path) => {
1001                 if let Some(local_path) = path.local_path() {
1002                     local_path.to_path_buf()
1003                 } else {
1004                     // Somehow we got the filename from the metadata of another crate, should never happen
1005                     unreachable!("doctest from a different crate");
1006                 }
1007             }
1008             _ => PathBuf::from(r"doctest.rs"),
1009         };
1010
1011         // For example `module/file.rs` would become `module_file_rs`
1012         let file = filename
1013             .prefer_local()
1014             .to_string_lossy()
1015             .chars()
1016             .map(|c| if c.is_ascii_alphanumeric() { c } else { '_' })
1017             .collect::<String>();
1018         let test_id = format!(
1019             "{file}_{line}_{number}",
1020             file = file,
1021             line = line,
1022             number = {
1023                 // Increases the current test number, if this file already
1024                 // exists or it creates a new entry with a test number of 0.
1025                 self.visited_tests.entry((file.clone(), line)).and_modify(|v| *v += 1).or_insert(0)
1026             },
1027         );
1028         let outdir = if let Some(mut path) = rustdoc_options.persist_doctests.clone() {
1029             path.push(&test_id);
1030
1031             if let Err(err) = std::fs::create_dir_all(&path) {
1032                 eprintln!("Couldn't create directory for doctest executables: {}", err);
1033                 panic::resume_unwind(Box::new(()));
1034             }
1035
1036             DirState::Perm(path)
1037         } else {
1038             DirState::Temp(
1039                 TempFileBuilder::new()
1040                     .prefix("rustdoctest")
1041                     .tempdir()
1042                     .expect("rustdoc needs a tempdir"),
1043             )
1044         };
1045
1046         debug!("creating test {name}: {test}");
1047         self.tests.push(test::TestDescAndFn {
1048             desc: test::TestDesc {
1049                 name: test::DynTestName(name),
1050                 ignore: match config.ignore {
1051                     Ignore::All => true,
1052                     Ignore::None => false,
1053                     Ignore::Some(ref ignores) => ignores.iter().any(|s| target_str.contains(s)),
1054                 },
1055                 ignore_message: None,
1056                 // compiler failures are test failures
1057                 should_panic: test::ShouldPanic::No,
1058                 compile_fail: config.compile_fail,
1059                 no_run,
1060                 test_type: test::TestType::DocTest,
1061             },
1062             testfn: test::DynTestFn(Box::new(move || {
1063                 let report_unused_externs = |uext| {
1064                     unused_externs.lock().unwrap().push(uext);
1065                 };
1066                 let res = run_test(
1067                     &test,
1068                     &crate_name,
1069                     line,
1070                     rustdoc_options,
1071                     config,
1072                     no_run,
1073                     runtool,
1074                     runtool_args,
1075                     target,
1076                     &opts,
1077                     edition,
1078                     outdir,
1079                     path,
1080                     &test_id,
1081                     report_unused_externs,
1082                 );
1083
1084                 if let Err(err) = res {
1085                     match err {
1086                         TestFailure::CompileError => {
1087                             eprint!("Couldn't compile the test.");
1088                         }
1089                         TestFailure::UnexpectedCompilePass => {
1090                             eprint!("Test compiled successfully, but it's marked `compile_fail`.");
1091                         }
1092                         TestFailure::UnexpectedRunPass => {
1093                             eprint!("Test executable succeeded, but it's marked `should_panic`.");
1094                         }
1095                         TestFailure::MissingErrorCodes(codes) => {
1096                             eprint!("Some expected error codes were not found: {:?}", codes);
1097                         }
1098                         TestFailure::ExecutionError(err) => {
1099                             eprint!("Couldn't run the test: {err}");
1100                             if err.kind() == io::ErrorKind::PermissionDenied {
1101                                 eprint!(" - maybe your tempdir is mounted with noexec?");
1102                             }
1103                         }
1104                         TestFailure::ExecutionFailure(out) => {
1105                             eprintln!("Test executable failed ({reason}).", reason = out.status);
1106
1107                             // FIXME(#12309): An unfortunate side-effect of capturing the test
1108                             // executable's output is that the relative ordering between the test's
1109                             // stdout and stderr is lost. However, this is better than the
1110                             // alternative: if the test executable inherited the parent's I/O
1111                             // handles the output wouldn't be captured at all, even on success.
1112                             //
1113                             // The ordering could be preserved if the test process' stderr was
1114                             // redirected to stdout, but that functionality does not exist in the
1115                             // standard library, so it may not be portable enough.
1116                             let stdout = str::from_utf8(&out.stdout).unwrap_or_default();
1117                             let stderr = str::from_utf8(&out.stderr).unwrap_or_default();
1118
1119                             if !stdout.is_empty() || !stderr.is_empty() {
1120                                 eprintln!();
1121
1122                                 if !stdout.is_empty() {
1123                                     eprintln!("stdout:\n{stdout}");
1124                                 }
1125
1126                                 if !stderr.is_empty() {
1127                                     eprintln!("stderr:\n{stderr}");
1128                                 }
1129                             }
1130                         }
1131                     }
1132
1133                     panic::resume_unwind(Box::new(()));
1134                 }
1135                 Ok(())
1136             })),
1137         });
1138     }
1139
1140     fn get_line(&self) -> usize {
1141         if let Some(ref source_map) = self.source_map {
1142             let line = self.position.lo().to_usize();
1143             let line = source_map.lookup_char_pos(BytePos(line as u32)).line;
1144             if line > 0 { line - 1 } else { line }
1145         } else {
1146             0
1147         }
1148     }
1149
1150     fn register_header(&mut self, name: &str, level: u32) {
1151         if self.use_headers {
1152             // We use these headings as test names, so it's good if
1153             // they're valid identifiers.
1154             let name = name
1155                 .chars()
1156                 .enumerate()
1157                 .map(|(i, c)| {
1158                     if (i == 0 && rustc_lexer::is_id_start(c))
1159                         || (i != 0 && rustc_lexer::is_id_continue(c))
1160                     {
1161                         c
1162                     } else {
1163                         '_'
1164                     }
1165                 })
1166                 .collect::<String>();
1167
1168             // Here we try to efficiently assemble the header titles into the
1169             // test name in the form of `h1::h2::h3::h4::h5::h6`.
1170             //
1171             // Suppose that originally `self.names` contains `[h1, h2, h3]`...
1172             let level = level as usize;
1173             if level <= self.names.len() {
1174                 // ... Consider `level == 2`. All headers in the lower levels
1175                 // are irrelevant in this new level. So we should reset
1176                 // `self.names` to contain headers until <h2>, and replace that
1177                 // slot with the new name: `[h1, name]`.
1178                 self.names.truncate(level);
1179                 self.names[level - 1] = name;
1180             } else {
1181                 // ... On the other hand, consider `level == 5`. This means we
1182                 // need to extend `self.names` to contain five headers. We fill
1183                 // in the missing level (<h4>) with `_`. Thus `self.names` will
1184                 // become `[h1, h2, h3, "_", name]`.
1185                 if level - 1 > self.names.len() {
1186                     self.names.resize(level - 1, "_".to_owned());
1187                 }
1188                 self.names.push(name);
1189             }
1190         }
1191     }
1192 }
1193
1194 struct HirCollector<'a, 'hir, 'tcx> {
1195     sess: &'a Session,
1196     collector: &'a mut Collector,
1197     map: Map<'hir>,
1198     codes: ErrorCodes,
1199     tcx: TyCtxt<'tcx>,
1200 }
1201
1202 impl<'a, 'hir, 'tcx> HirCollector<'a, 'hir, 'tcx> {
1203     fn visit_testable<F: FnOnce(&mut Self)>(
1204         &mut self,
1205         name: String,
1206         hir_id: HirId,
1207         sp: Span,
1208         nested: F,
1209     ) {
1210         let ast_attrs = self.tcx.hir().attrs(hir_id);
1211         if let Some(ref cfg) = ast_attrs.cfg(self.tcx, &FxHashSet::default()) {
1212             if !cfg.matches(&self.sess.parse_sess, Some(self.sess.features_untracked())) {
1213                 return;
1214             }
1215         }
1216
1217         let has_name = !name.is_empty();
1218         if has_name {
1219             self.collector.names.push(name);
1220         }
1221
1222         // The collapse-docs pass won't combine sugared/raw doc attributes, or included files with
1223         // anything else, this will combine them for us.
1224         let attrs = Attributes::from_ast(ast_attrs);
1225         if let Some(doc) = attrs.collapsed_doc_value() {
1226             // Use the outermost invocation, so that doctest names come from where the docs were written.
1227             let span = ast_attrs
1228                 .span()
1229                 .map(|span| span.ctxt().outer_expn().expansion_cause().unwrap_or(span))
1230                 .unwrap_or(DUMMY_SP);
1231             self.collector.set_position(span);
1232             markdown::find_testable_code(
1233                 &doc,
1234                 self.collector,
1235                 self.codes,
1236                 self.collector.enable_per_target_ignores,
1237                 Some(&crate::html::markdown::ExtraInfo::new(
1238                     self.tcx,
1239                     hir_id,
1240                     span_of_attrs(&attrs).unwrap_or(sp),
1241                 )),
1242             );
1243         }
1244
1245         nested(self);
1246
1247         if has_name {
1248             self.collector.names.pop();
1249         }
1250     }
1251 }
1252
1253 impl<'a, 'hir, 'tcx> intravisit::Visitor<'hir> for HirCollector<'a, 'hir, 'tcx> {
1254     type NestedFilter = nested_filter::All;
1255
1256     fn nested_visit_map(&mut self) -> Self::Map {
1257         self.map
1258     }
1259
1260     fn visit_item(&mut self, item: &'hir hir::Item<'_>) {
1261         let name = match &item.kind {
1262             hir::ItemKind::Impl(impl_) => {
1263                 rustc_hir_pretty::id_to_string(&self.map, impl_.self_ty.hir_id)
1264             }
1265             _ => item.ident.to_string(),
1266         };
1267
1268         self.visit_testable(name, item.hir_id(), item.span, |this| {
1269             intravisit::walk_item(this, item);
1270         });
1271     }
1272
1273     fn visit_trait_item(&mut self, item: &'hir hir::TraitItem<'_>) {
1274         self.visit_testable(item.ident.to_string(), item.hir_id(), item.span, |this| {
1275             intravisit::walk_trait_item(this, item);
1276         });
1277     }
1278
1279     fn visit_impl_item(&mut self, item: &'hir hir::ImplItem<'_>) {
1280         self.visit_testable(item.ident.to_string(), item.hir_id(), item.span, |this| {
1281             intravisit::walk_impl_item(this, item);
1282         });
1283     }
1284
1285     fn visit_foreign_item(&mut self, item: &'hir hir::ForeignItem<'_>) {
1286         self.visit_testable(item.ident.to_string(), item.hir_id(), item.span, |this| {
1287             intravisit::walk_foreign_item(this, item);
1288         });
1289     }
1290
1291     fn visit_variant(&mut self, v: &'hir hir::Variant<'_>) {
1292         self.visit_testable(v.ident.to_string(), v.id, v.span, |this| {
1293             intravisit::walk_variant(this, v);
1294         });
1295     }
1296
1297     fn visit_field_def(&mut self, f: &'hir hir::FieldDef<'_>) {
1298         self.visit_testable(f.ident.to_string(), f.hir_id, f.span, |this| {
1299             intravisit::walk_field_def(this, f);
1300         });
1301     }
1302 }
1303
1304 #[cfg(test)]
1305 mod tests;