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