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