1mod extracted;
2mod make;
3mod markdown;
4mod runner;
5mod rust;
6
7use std::fs::File;
8use std::hash::{Hash, Hasher};
9use std::io::{self, Write};
10use std::path::{Path, PathBuf};
11use std::process::{self, Command, Stdio};
12use std::sync::atomic::{AtomicUsize, Ordering};
13use std::sync::{Arc, Mutex};
14use std::time::{Duration, Instant};
15use std::{panic, str};
16
17pub(crate) use make::{BuildDocTestBuilder, DocTestBuilder};
18pub(crate) use markdown::test as test_markdown;
19use rustc_data_structures::fx::{FxHashMap, FxHashSet, FxHasher, FxIndexMap, FxIndexSet};
20use rustc_errors::emitter::HumanReadableErrorType;
21use rustc_errors::{ColorConfig, DiagCtxtHandle};
22use rustc_hir as hir;
23use rustc_hir::CRATE_HIR_ID;
24use rustc_hir::def_id::LOCAL_CRATE;
25use rustc_interface::interface;
26use rustc_session::config::{self, CrateType, ErrorOutputType, Input};
27use rustc_session::lint;
28use rustc_span::edition::Edition;
29use rustc_span::symbol::sym;
30use rustc_span::{FileName, Span};
31use rustc_target::spec::{Target, TargetTuple};
32use tempfile::{Builder as TempFileBuilder, TempDir};
33use tracing::debug;
34
35use self::rust::HirCollector;
36use crate::config::{Options as RustdocOptions, OutputFormat};
37use crate::html::markdown::{ErrorCodes, Ignore, LangString, MdRelLine};
38use crate::lint::init_lints;
39
40struct MergedDoctestTimes {
42 total_time: Instant,
43 compilation_time: Duration,
45 added_compilation_times: usize,
47}
48
49impl MergedDoctestTimes {
50 fn new() -> Self {
51 Self {
52 total_time: Instant::now(),
53 compilation_time: Duration::default(),
54 added_compilation_times: 0,
55 }
56 }
57
58 fn add_compilation_time(&mut self, duration: Duration) {
59 self.compilation_time += duration;
60 self.added_compilation_times += 1;
61 }
62
63 fn times_in_secs(&self) -> Option<(f64, f64)> {
65 if self.added_compilation_times == 0 {
69 return None;
70 }
71 Some((self.total_time.elapsed().as_secs_f64(), self.compilation_time.as_secs_f64()))
72 }
73}
74
75#[derive(Clone)]
77pub(crate) struct GlobalTestOptions {
78 pub(crate) crate_name: String,
80 pub(crate) no_crate_inject: bool,
82 pub(crate) insert_indent_space: bool,
85 pub(crate) args_file: PathBuf,
87}
88
89pub(crate) fn generate_args_file(file_path: &Path, options: &RustdocOptions) -> Result<(), String> {
90 let mut file = File::create(file_path)
91 .map_err(|error| format!("failed to create args file: {error:?}"))?;
92
93 let mut content = vec![];
95
96 for cfg in &options.cfgs {
97 content.push(format!("--cfg={cfg}"));
98 }
99 for check_cfg in &options.check_cfgs {
100 content.push(format!("--check-cfg={check_cfg}"));
101 }
102
103 for lib_str in &options.lib_strs {
104 content.push(format!("-L{lib_str}"));
105 }
106 for extern_str in &options.extern_strs {
107 content.push(format!("--extern={extern_str}"));
108 }
109 content.push("-Ccodegen-units=1".to_string());
110 for codegen_options_str in &options.codegen_options_strs {
111 content.push(format!("-C{codegen_options_str}"));
112 }
113 for unstable_option_str in &options.unstable_opts_strs {
114 content.push(format!("-Z{unstable_option_str}"));
115 }
116
117 content.extend(options.doctest_build_args.clone());
118
119 let content = content.join("\n");
120
121 file.write_all(content.as_bytes())
122 .map_err(|error| format!("failed to write arguments to temporary file: {error:?}"))?;
123 Ok(())
124}
125
126fn get_doctest_dir() -> io::Result<TempDir> {
127 TempFileBuilder::new().prefix("rustdoctest").tempdir()
128}
129
130pub(crate) fn run(dcx: DiagCtxtHandle<'_>, input: Input, options: RustdocOptions) {
131 let invalid_codeblock_attributes_name = crate::lint::INVALID_CODEBLOCK_ATTRIBUTES.name;
132
133 let allowed_lints = vec![
135 invalid_codeblock_attributes_name.to_owned(),
136 lint::builtin::UNKNOWN_LINTS.name.to_owned(),
137 lint::builtin::RENAMED_AND_REMOVED_LINTS.name.to_owned(),
138 ];
139
140 let (lint_opts, lint_caps) = init_lints(allowed_lints, options.lint_opts.clone(), |lint| {
141 if lint.name == invalid_codeblock_attributes_name {
142 None
143 } else {
144 Some((lint.name_lower(), lint::Allow))
145 }
146 });
147
148 debug!(?lint_opts);
149
150 let crate_types =
151 if options.proc_macro_crate { vec![CrateType::ProcMacro] } else { vec![CrateType::Rlib] };
152
153 let sessopts = config::Options {
154 sysroot: options.sysroot.clone(),
155 search_paths: options.libs.clone(),
156 crate_types,
157 lint_opts,
158 lint_cap: Some(options.lint_cap.unwrap_or(lint::Forbid)),
159 cg: options.codegen_options.clone(),
160 externs: options.externs.clone(),
161 unstable_features: options.unstable_features,
162 actually_rustdoc: true,
163 edition: options.edition,
164 target_triple: options.target.clone(),
165 crate_name: options.crate_name.clone(),
166 remap_path_prefix: options.remap_path_prefix.clone(),
167 unstable_opts: options.unstable_opts.clone(),
168 error_format: options.error_format.clone(),
169 ..config::Options::default()
170 };
171
172 let mut cfgs = options.cfgs.clone();
173 cfgs.push("doc".to_owned());
174 cfgs.push("doctest".to_owned());
175 let config = interface::Config {
176 opts: sessopts,
177 crate_cfg: cfgs,
178 crate_check_cfg: options.check_cfgs.clone(),
179 input: input.clone(),
180 output_file: None,
181 output_dir: None,
182 file_loader: None,
183 locale_resources: rustc_driver::DEFAULT_LOCALE_RESOURCES.to_vec(),
184 lint_caps,
185 psess_created: None,
186 hash_untracked_state: None,
187 register_lints: Some(Box::new(crate::lint::register_lints)),
188 override_queries: None,
189 extra_symbols: Vec::new(),
190 make_codegen_backend: None,
191 registry: rustc_driver::diagnostics_registry(),
192 ice_file: None,
193 using_internal_features: &rustc_driver::USING_INTERNAL_FEATURES,
194 expanded_args: options.expanded_args.clone(),
195 };
196
197 let externs = options.externs.clone();
198 let json_unused_externs = options.json_unused_externs;
199
200 let temp_dir = match get_doctest_dir()
201 .map_err(|error| format!("failed to create temporary directory: {error:?}"))
202 {
203 Ok(temp_dir) => temp_dir,
204 Err(error) => return crate::wrap_return(dcx, Err(error)),
205 };
206 let args_path = temp_dir.path().join("rustdoc-cfgs");
207 crate::wrap_return(dcx, generate_args_file(&args_path, &options));
208
209 let extract_doctests = options.output_format == OutputFormat::Doctest;
210 let result = interface::run_compiler(config, |compiler| {
211 let krate = rustc_interface::passes::parse(&compiler.sess);
212
213 let collector = rustc_interface::create_and_enter_global_ctxt(compiler, krate, |tcx| {
214 let crate_name = tcx.crate_name(LOCAL_CRATE).to_string();
215 let crate_attrs = tcx.hir_attrs(CRATE_HIR_ID);
216 let opts = scrape_test_config(crate_name, crate_attrs, args_path);
217
218 let hir_collector = HirCollector::new(
219 ErrorCodes::from(compiler.sess.opts.unstable_features.is_nightly_build()),
220 tcx,
221 );
222 let tests = hir_collector.collect_crate();
223 if extract_doctests {
224 let mut collector = extracted::ExtractedDocTests::new();
225 tests.into_iter().for_each(|t| collector.add_test(t, &opts, &options));
226
227 let stdout = std::io::stdout();
228 let mut stdout = stdout.lock();
229 if let Err(error) = serde_json::ser::to_writer(&mut stdout, &collector) {
230 eprintln!();
231 Err(format!("Failed to generate JSON output for doctests: {error:?}"))
232 } else {
233 Ok(None)
234 }
235 } else {
236 let mut collector = CreateRunnableDocTests::new(options, opts);
237 tests.into_iter().for_each(|t| collector.add_test(t, Some(compiler.sess.dcx())));
238
239 Ok(Some(collector))
240 }
241 });
242 compiler.sess.dcx().abort_if_errors();
243
244 collector
245 });
246
247 let CreateRunnableDocTests {
248 standalone_tests,
249 mergeable_tests,
250 rustdoc_options,
251 opts,
252 unused_extern_reports,
253 compiling_test_count,
254 ..
255 } = match result {
256 Ok(Some(collector)) => collector,
257 Ok(None) => return,
258 Err(error) => {
259 eprintln!("{error}");
260 let _ = std::fs::remove_dir_all(temp_dir.path());
263 std::process::exit(1);
264 }
265 };
266
267 run_tests(
268 opts,
269 &rustdoc_options,
270 &unused_extern_reports,
271 standalone_tests,
272 mergeable_tests,
273 Some(temp_dir),
274 );
275
276 let compiling_test_count = compiling_test_count.load(Ordering::SeqCst);
277
278 if json_unused_externs.is_enabled() {
281 let unused_extern_reports: Vec<_> =
282 std::mem::take(&mut unused_extern_reports.lock().unwrap());
283 if unused_extern_reports.len() == compiling_test_count {
284 let extern_names =
285 externs.iter().map(|(name, _)| name).collect::<FxIndexSet<&String>>();
286 let mut unused_extern_names = unused_extern_reports
287 .iter()
288 .map(|uexts| uexts.unused_extern_names.iter().collect::<FxIndexSet<&String>>())
289 .fold(extern_names, |uextsa, uextsb| {
290 uextsa.intersection(&uextsb).copied().collect::<FxIndexSet<&String>>()
291 })
292 .iter()
293 .map(|v| (*v).clone())
294 .collect::<Vec<String>>();
295 unused_extern_names.sort();
296 let lint_level = unused_extern_reports
298 .iter()
299 .map(|uexts| uexts.lint_level.as_str())
300 .max_by_key(|v| match *v {
301 "warn" => 1,
302 "deny" => 2,
303 "forbid" => 3,
304 v => unreachable!("Invalid lint level '{v}'"),
308 })
309 .unwrap_or("warn")
310 .to_string();
311 let uext = UnusedExterns { lint_level, unused_extern_names };
312 let unused_extern_json = serde_json::to_string(&uext).unwrap();
313 eprintln!("{unused_extern_json}");
314 }
315 }
316}
317
318pub(crate) fn run_tests(
319 opts: GlobalTestOptions,
320 rustdoc_options: &Arc<RustdocOptions>,
321 unused_extern_reports: &Arc<Mutex<Vec<UnusedExterns>>>,
322 mut standalone_tests: Vec<test::TestDescAndFn>,
323 mergeable_tests: FxIndexMap<MergeableTestKey, Vec<(DocTestBuilder, ScrapedDocTest)>>,
324 mut temp_dir: Option<TempDir>,
326) {
327 let mut test_args = Vec::with_capacity(rustdoc_options.test_args.len() + 1);
328 test_args.insert(0, "rustdoctest".to_string());
329 test_args.extend_from_slice(&rustdoc_options.test_args);
330 if rustdoc_options.nocapture {
331 test_args.push("--nocapture".to_string());
332 }
333
334 let mut nb_errors = 0;
335 let mut ran_edition_tests = 0;
336 let mut times = MergedDoctestTimes::new();
337 let target_str = rustdoc_options.target.to_string();
338
339 for (MergeableTestKey { edition, global_crate_attrs_hash }, mut doctests) in mergeable_tests {
340 if doctests.is_empty() {
341 continue;
342 }
343 doctests.sort_by(|(_, a), (_, b)| a.name.cmp(&b.name));
344
345 let mut tests_runner = runner::DocTestRunner::new();
346
347 let rustdoc_test_options = IndividualTestOptions::new(
348 rustdoc_options,
349 &Some(format!("merged_doctest_{edition}_{global_crate_attrs_hash}")),
350 PathBuf::from(format!("doctest_{edition}_{global_crate_attrs_hash}.rs")),
351 );
352
353 for (doctest, scraped_test) in &doctests {
354 tests_runner.add_test(doctest, scraped_test, &target_str);
355 }
356 let (duration, ret) = tests_runner.run_merged_tests(
357 rustdoc_test_options,
358 edition,
359 &opts,
360 &test_args,
361 rustdoc_options,
362 );
363 times.add_compilation_time(duration);
364 if let Ok(success) = ret {
365 ran_edition_tests += 1;
366 if !success {
367 nb_errors += 1;
368 }
369 continue;
370 }
371 debug!("Failed to compile compatible doctests for edition {} all at once", edition);
374 for (doctest, scraped_test) in doctests {
375 doctest.generate_unique_doctest(
376 &scraped_test.text,
377 scraped_test.langstr.test_harness,
378 &opts,
379 Some(&opts.crate_name),
380 );
381 standalone_tests.push(generate_test_desc_and_fn(
382 doctest,
383 scraped_test,
384 opts.clone(),
385 Arc::clone(rustdoc_options),
386 unused_extern_reports.clone(),
387 ));
388 }
389 }
390
391 if ran_edition_tests == 0 || !standalone_tests.is_empty() {
394 standalone_tests.sort_by(|a, b| a.desc.name.as_slice().cmp(b.desc.name.as_slice()));
395 test::test_main_with_exit_callback(&test_args, standalone_tests, None, || {
396 let times = times.times_in_secs();
397 std::mem::drop(temp_dir.take());
399 if let Some((total_time, compilation_time)) = times {
400 test::print_merged_doctests_times(&test_args, total_time, compilation_time);
401 }
402 });
403 } else {
404 if let Some((total_time, compilation_time)) = times.times_in_secs() {
408 test::print_merged_doctests_times(&test_args, total_time, compilation_time);
409 }
410 }
411 std::mem::drop(temp_dir);
413 if nb_errors != 0 {
414 std::process::exit(test::ERROR_EXIT_CODE);
415 }
416}
417
418fn scrape_test_config(
420 crate_name: String,
421 attrs: &[hir::Attribute],
422 args_file: PathBuf,
423) -> GlobalTestOptions {
424 let mut opts = GlobalTestOptions {
425 crate_name,
426 no_crate_inject: false,
427 insert_indent_space: false,
428 args_file,
429 };
430
431 let test_attrs: Vec<_> = attrs
432 .iter()
433 .filter(|a| a.has_name(sym::doc))
434 .flat_map(|a| a.meta_item_list().unwrap_or_default())
435 .filter(|a| a.has_name(sym::test))
436 .collect();
437 let attrs = test_attrs.iter().flat_map(|a| a.meta_item_list().unwrap_or(&[]));
438
439 for attr in attrs {
440 if attr.has_name(sym::no_crate_inject) {
441 opts.no_crate_inject = true;
442 }
443 }
445
446 opts
447}
448
449enum TestFailure {
451 CompileError,
453 UnexpectedCompilePass,
455 MissingErrorCodes(Vec<String>),
458 ExecutionError(io::Error),
460 ExecutionFailure(process::Output),
464 UnexpectedRunPass,
466}
467
468enum DirState {
469 Temp(TempDir),
470 Perm(PathBuf),
471}
472
473impl DirState {
474 fn path(&self) -> &std::path::Path {
475 match self {
476 DirState::Temp(t) => t.path(),
477 DirState::Perm(p) => p.as_path(),
478 }
479 }
480}
481
482#[derive(serde::Serialize, serde::Deserialize)]
487pub(crate) struct UnusedExterns {
488 lint_level: String,
490 unused_extern_names: Vec<String>,
492}
493
494fn add_exe_suffix(input: String, target: &TargetTuple) -> String {
495 let exe_suffix = match target {
496 TargetTuple::TargetTuple(_) => Target::expect_builtin(target).options.exe_suffix,
497 TargetTuple::TargetJson { contents, .. } => {
498 Target::from_json(contents).unwrap().0.options.exe_suffix
499 }
500 };
501 input + &exe_suffix
502}
503
504fn wrapped_rustc_command(rustc_wrappers: &[PathBuf], rustc_binary: &Path) -> Command {
505 let mut args = rustc_wrappers.iter().map(PathBuf::as_path).chain([rustc_binary]);
506
507 let exe = args.next().expect("unable to create rustc command");
508 let mut command = Command::new(exe);
509 for arg in args {
510 command.arg(arg);
511 }
512
513 command
514}
515
516pub(crate) struct RunnableDocTest {
523 full_test_code: String,
524 full_test_line_offset: usize,
525 test_opts: IndividualTestOptions,
526 global_opts: GlobalTestOptions,
527 langstr: LangString,
528 line: usize,
529 edition: Edition,
530 no_run: bool,
531 merged_test_code: Option<String>,
532}
533
534impl RunnableDocTest {
535 fn path_for_merged_doctest_bundle(&self) -> PathBuf {
536 self.test_opts.outdir.path().join(format!("doctest_bundle_{}.rs", self.edition))
537 }
538 fn path_for_merged_doctest_runner(&self) -> PathBuf {
539 self.test_opts.outdir.path().join(format!("doctest_runner_{}.rs", self.edition))
540 }
541 fn is_multiple_tests(&self) -> bool {
542 self.merged_test_code.is_some()
543 }
544}
545
546fn run_test(
553 doctest: RunnableDocTest,
554 rustdoc_options: &RustdocOptions,
555 supports_color: bool,
556 report_unused_externs: impl Fn(UnusedExterns),
557) -> (Duration, Result<(), TestFailure>) {
558 let langstr = &doctest.langstr;
559 let rust_out = add_exe_suffix("rust_out".to_owned(), &rustdoc_options.target);
561 let output_file = doctest.test_opts.outdir.path().join(rust_out);
562 let instant = Instant::now();
563
564 let mut compiler_args = vec![];
568
569 compiler_args.push(format!("@{}", doctest.global_opts.args_file.display()));
570
571 let sysroot = &rustdoc_options.sysroot;
572 if let Some(explicit_sysroot) = &sysroot.explicit {
573 compiler_args.push(format!("--sysroot={}", explicit_sysroot.display()));
574 }
575
576 compiler_args.extend_from_slice(&["--edition".to_owned(), doctest.edition.to_string()]);
577 if langstr.test_harness {
578 compiler_args.push("--test".to_owned());
579 }
580 if rustdoc_options.json_unused_externs.is_enabled() && !langstr.compile_fail {
581 compiler_args.push("--error-format=json".to_owned());
582 compiler_args.extend_from_slice(&["--json".to_owned(), "unused-externs".to_owned()]);
583 compiler_args.extend_from_slice(&["-W".to_owned(), "unused_crate_dependencies".to_owned()]);
584 compiler_args.extend_from_slice(&["-Z".to_owned(), "unstable-options".to_owned()]);
585 }
586
587 if doctest.no_run && !langstr.compile_fail && rustdoc_options.persist_doctests.is_none() {
588 compiler_args.push("--emit=metadata".to_owned());
591 }
592 compiler_args.extend_from_slice(&[
593 "--target".to_owned(),
594 match &rustdoc_options.target {
595 TargetTuple::TargetTuple(s) => s.clone(),
596 TargetTuple::TargetJson { path_for_rustdoc, .. } => {
597 path_for_rustdoc.to_str().expect("target path must be valid unicode").to_owned()
598 }
599 },
600 ]);
601 if let ErrorOutputType::HumanReadable { kind, color_config } = rustdoc_options.error_format {
602 let short = kind.short();
603 let unicode = kind == HumanReadableErrorType::Unicode;
604
605 if short {
606 compiler_args.extend_from_slice(&["--error-format".to_owned(), "short".to_owned()]);
607 }
608 if unicode {
609 compiler_args
610 .extend_from_slice(&["--error-format".to_owned(), "human-unicode".to_owned()]);
611 }
612
613 match color_config {
614 ColorConfig::Never => {
615 compiler_args.extend_from_slice(&["--color".to_owned(), "never".to_owned()]);
616 }
617 ColorConfig::Always => {
618 compiler_args.extend_from_slice(&["--color".to_owned(), "always".to_owned()]);
619 }
620 ColorConfig::Auto => {
621 compiler_args.extend_from_slice(&[
622 "--color".to_owned(),
623 if supports_color { "always" } else { "never" }.to_owned(),
624 ]);
625 }
626 }
627 }
628
629 let rustc_binary = rustdoc_options
630 .test_builder
631 .as_deref()
632 .unwrap_or_else(|| rustc_interface::util::rustc_path(sysroot).expect("found rustc"));
633 let mut compiler = wrapped_rustc_command(&rustdoc_options.test_builder_wrappers, rustc_binary);
634
635 compiler.args(&compiler_args);
636
637 if doctest.is_multiple_tests() {
640 compiler.arg("--error-format=short");
642 let input_file = doctest.path_for_merged_doctest_bundle();
643 if std::fs::write(&input_file, &doctest.full_test_code).is_err() {
644 return (Duration::default(), Err(TestFailure::CompileError));
647 }
648 if !rustdoc_options.nocapture {
649 compiler.stderr(Stdio::null());
652 }
653 compiler
655 .arg("--crate-type=lib")
656 .arg("--out-dir")
657 .arg(doctest.test_opts.outdir.path())
658 .arg(input_file);
659 } else {
660 compiler.arg("--crate-type=bin").arg("-o").arg(&output_file);
661 compiler.env("UNSTABLE_RUSTDOC_TEST_PATH", &doctest.test_opts.path);
663 compiler.env(
664 "UNSTABLE_RUSTDOC_TEST_LINE",
665 format!("{}", doctest.line as isize - doctest.full_test_line_offset as isize),
666 );
667 compiler.arg("-");
668 compiler.stdin(Stdio::piped());
669 compiler.stderr(Stdio::piped());
670 }
671
672 debug!("compiler invocation for doctest: {compiler:?}");
673
674 let mut child = compiler.spawn().expect("Failed to spawn rustc process");
675 let output = if let Some(merged_test_code) = &doctest.merged_test_code {
676 let status = child.wait().expect("Failed to wait");
678
679 let runner_input_file = doctest.path_for_merged_doctest_runner();
682
683 let mut runner_compiler =
684 wrapped_rustc_command(&rustdoc_options.test_builder_wrappers, rustc_binary);
685 runner_compiler.env("RUSTC_BOOTSTRAP", "1");
688 runner_compiler.args(compiler_args);
689 runner_compiler.args(["--crate-type=bin", "-o"]).arg(&output_file);
690 let mut extern_path = std::ffi::OsString::from(format!(
691 "--extern=doctest_bundle_{edition}=",
692 edition = doctest.edition
693 ));
694
695 let mut seen_search_dirs = FxHashSet::default();
698 for extern_str in &rustdoc_options.extern_strs {
699 if let Some((_cratename, path)) = extern_str.split_once('=') {
700 let dir = Path::new(path)
704 .parent()
705 .filter(|x| x.components().count() > 0)
706 .unwrap_or(Path::new("."));
707 if seen_search_dirs.insert(dir) {
708 runner_compiler.arg("-L").arg(dir);
709 }
710 }
711 }
712 let output_bundle_file = doctest
713 .test_opts
714 .outdir
715 .path()
716 .join(format!("libdoctest_bundle_{edition}.rlib", edition = doctest.edition));
717 extern_path.push(&output_bundle_file);
718 runner_compiler.arg(extern_path);
719 runner_compiler.arg(&runner_input_file);
720 if std::fs::write(&runner_input_file, merged_test_code).is_err() {
721 return (instant.elapsed(), Err(TestFailure::CompileError));
724 }
725 if !rustdoc_options.nocapture {
726 runner_compiler.stderr(Stdio::null());
729 }
730 runner_compiler.arg("--error-format=short");
731 debug!("compiler invocation for doctest runner: {runner_compiler:?}");
732
733 let status = if !status.success() {
734 status
735 } else {
736 let mut child_runner = runner_compiler.spawn().expect("Failed to spawn rustc process");
737 child_runner.wait().expect("Failed to wait")
738 };
739
740 process::Output { status, stdout: Vec::new(), stderr: Vec::new() }
741 } else {
742 let stdin = child.stdin.as_mut().expect("Failed to open stdin");
743 stdin.write_all(doctest.full_test_code.as_bytes()).expect("could write out test sources");
744 child.wait_with_output().expect("Failed to read stdout")
745 };
746
747 struct Bomb<'a>(&'a str);
748 impl Drop for Bomb<'_> {
749 fn drop(&mut self) {
750 eprint!("{}", self.0);
751 }
752 }
753 let mut out = str::from_utf8(&output.stderr)
754 .unwrap()
755 .lines()
756 .filter(|l| {
757 if let Ok(uext) = serde_json::from_str::<UnusedExterns>(l) {
758 report_unused_externs(uext);
759 false
760 } else {
761 true
762 }
763 })
764 .intersperse_with(|| "\n")
765 .collect::<String>();
766
767 if !out.is_empty() {
770 out.push('\n');
771 }
772
773 let _bomb = Bomb(&out);
774 match (output.status.success(), langstr.compile_fail) {
775 (true, true) => {
776 return (instant.elapsed(), Err(TestFailure::UnexpectedCompilePass));
777 }
778 (true, false) => {}
779 (false, true) => {
780 if !langstr.error_codes.is_empty() {
781 let missing_codes: Vec<String> = langstr
785 .error_codes
786 .iter()
787 .filter(|err| !out.contains(&format!("error[{err}]")))
788 .cloned()
789 .collect();
790
791 if !missing_codes.is_empty() {
792 return (instant.elapsed(), Err(TestFailure::MissingErrorCodes(missing_codes)));
793 }
794 }
795 }
796 (false, false) => {
797 return (instant.elapsed(), Err(TestFailure::CompileError));
798 }
799 }
800
801 let duration = instant.elapsed();
802 if doctest.no_run {
803 return (duration, Ok(()));
804 }
805
806 let mut cmd;
808
809 let output_file = make_maybe_absolute_path(output_file);
810 if let Some(tool) = &rustdoc_options.test_runtool {
811 let tool = make_maybe_absolute_path(tool.into());
812 cmd = Command::new(tool);
813 cmd.args(&rustdoc_options.test_runtool_args);
814 cmd.arg(&output_file);
815 } else {
816 cmd = Command::new(&output_file);
817 if doctest.is_multiple_tests() {
818 cmd.env("RUSTDOC_DOCTEST_BIN_PATH", &output_file);
819 }
820 }
821 if let Some(run_directory) = &rustdoc_options.test_run_directory {
822 cmd.current_dir(run_directory);
823 }
824
825 let result = if doctest.is_multiple_tests() || rustdoc_options.nocapture {
826 cmd.status().map(|status| process::Output {
827 status,
828 stdout: Vec::new(),
829 stderr: Vec::new(),
830 })
831 } else {
832 cmd.output()
833 };
834 match result {
835 Err(e) => return (duration, Err(TestFailure::ExecutionError(e))),
836 Ok(out) => {
837 if langstr.should_panic && out.status.success() {
838 return (duration, Err(TestFailure::UnexpectedRunPass));
839 } else if !langstr.should_panic && !out.status.success() {
840 return (duration, Err(TestFailure::ExecutionFailure(out)));
841 }
842 }
843 }
844
845 (duration, Ok(()))
846}
847
848fn make_maybe_absolute_path(path: PathBuf) -> PathBuf {
854 if path.components().count() == 1 {
855 path
857 } else {
858 std::env::current_dir().map(|c| c.join(&path)).unwrap_or_else(|_| path)
859 }
860}
861struct IndividualTestOptions {
862 outdir: DirState,
863 path: PathBuf,
864}
865
866impl IndividualTestOptions {
867 fn new(options: &RustdocOptions, test_id: &Option<String>, test_path: PathBuf) -> Self {
868 let outdir = if let Some(ref path) = options.persist_doctests {
869 let mut path = path.clone();
870 path.push(test_id.as_deref().unwrap_or("<doctest>"));
871
872 if let Err(err) = std::fs::create_dir_all(&path) {
873 eprintln!("Couldn't create directory for doctest executables: {err}");
874 panic::resume_unwind(Box::new(()));
875 }
876
877 DirState::Perm(path)
878 } else {
879 DirState::Temp(get_doctest_dir().expect("rustdoc needs a tempdir"))
880 };
881
882 Self { outdir, path: test_path }
883 }
884}
885
886#[derive(Debug)]
896pub(crate) struct ScrapedDocTest {
897 filename: FileName,
898 line: usize,
899 langstr: LangString,
900 text: String,
901 name: String,
902 span: Span,
903 global_crate_attrs: Vec<String>,
904}
905
906impl ScrapedDocTest {
907 fn new(
908 filename: FileName,
909 line: usize,
910 logical_path: Vec<String>,
911 langstr: LangString,
912 text: String,
913 span: Span,
914 global_crate_attrs: Vec<String>,
915 ) -> Self {
916 let mut item_path = logical_path.join("::");
917 item_path.retain(|c| c != ' ');
918 if !item_path.is_empty() {
919 item_path.push(' ');
920 }
921 let name =
922 format!("{} - {item_path}(line {line})", filename.prefer_remapped_unconditionally());
923
924 Self { filename, line, langstr, text, name, span, global_crate_attrs }
925 }
926 fn edition(&self, opts: &RustdocOptions) -> Edition {
927 self.langstr.edition.unwrap_or(opts.edition)
928 }
929
930 fn no_run(&self, opts: &RustdocOptions) -> bool {
931 self.langstr.no_run || opts.no_run
932 }
933 fn path(&self) -> PathBuf {
934 match &self.filename {
935 FileName::Real(path) => {
936 if let Some(local_path) = path.local_path() {
937 local_path.to_path_buf()
938 } else {
939 unreachable!("doctest from a different crate");
941 }
942 }
943 _ => PathBuf::from(r"doctest.rs"),
944 }
945 }
946}
947
948pub(crate) trait DocTestVisitor {
949 fn visit_test(&mut self, test: String, config: LangString, rel_line: MdRelLine);
950 fn visit_header(&mut self, _name: &str, _level: u32) {}
951}
952
953#[derive(Clone, Debug, Hash, Eq, PartialEq)]
954pub(crate) struct MergeableTestKey {
955 edition: Edition,
956 global_crate_attrs_hash: u64,
957}
958
959struct CreateRunnableDocTests {
960 standalone_tests: Vec<test::TestDescAndFn>,
961 mergeable_tests: FxIndexMap<MergeableTestKey, Vec<(DocTestBuilder, ScrapedDocTest)>>,
962
963 rustdoc_options: Arc<RustdocOptions>,
964 opts: GlobalTestOptions,
965 visited_tests: FxHashMap<(String, usize), usize>,
966 unused_extern_reports: Arc<Mutex<Vec<UnusedExterns>>>,
967 compiling_test_count: AtomicUsize,
968 can_merge_doctests: bool,
969}
970
971impl CreateRunnableDocTests {
972 fn new(rustdoc_options: RustdocOptions, opts: GlobalTestOptions) -> CreateRunnableDocTests {
973 let can_merge_doctests = rustdoc_options.edition >= Edition::Edition2024;
974 CreateRunnableDocTests {
975 standalone_tests: Vec::new(),
976 mergeable_tests: FxIndexMap::default(),
977 rustdoc_options: Arc::new(rustdoc_options),
978 opts,
979 visited_tests: FxHashMap::default(),
980 unused_extern_reports: Default::default(),
981 compiling_test_count: AtomicUsize::new(0),
982 can_merge_doctests,
983 }
984 }
985
986 fn add_test(&mut self, scraped_test: ScrapedDocTest, dcx: Option<DiagCtxtHandle<'_>>) {
987 let file = scraped_test
989 .filename
990 .prefer_local()
991 .to_string_lossy()
992 .chars()
993 .map(|c| if c.is_ascii_alphanumeric() { c } else { '_' })
994 .collect::<String>();
995 let test_id = format!(
996 "{file}_{line}_{number}",
997 file = file,
998 line = scraped_test.line,
999 number = {
1000 self.visited_tests
1003 .entry((file.clone(), scraped_test.line))
1004 .and_modify(|v| *v += 1)
1005 .or_insert(0)
1006 },
1007 );
1008
1009 let edition = scraped_test.edition(&self.rustdoc_options);
1010 let doctest = BuildDocTestBuilder::new(&scraped_test.text)
1011 .crate_name(&self.opts.crate_name)
1012 .global_crate_attrs(scraped_test.global_crate_attrs.clone())
1013 .edition(edition)
1014 .can_merge_doctests(self.can_merge_doctests)
1015 .test_id(test_id)
1016 .lang_str(&scraped_test.langstr)
1017 .span(scraped_test.span)
1018 .build(dcx);
1019 let is_standalone = !doctest.can_be_merged
1020 || scraped_test.langstr.compile_fail
1021 || scraped_test.langstr.test_harness
1022 || scraped_test.langstr.standalone_crate
1023 || self.rustdoc_options.nocapture
1024 || self.rustdoc_options.test_args.iter().any(|arg| arg == "--show-output");
1025 if is_standalone {
1026 let test_desc = self.generate_test_desc_and_fn(doctest, scraped_test);
1027 self.standalone_tests.push(test_desc);
1028 } else {
1029 self.mergeable_tests
1030 .entry(MergeableTestKey {
1031 edition,
1032 global_crate_attrs_hash: {
1033 let mut hasher = FxHasher::default();
1034 scraped_test.global_crate_attrs.hash(&mut hasher);
1035 hasher.finish()
1036 },
1037 })
1038 .or_default()
1039 .push((doctest, scraped_test));
1040 }
1041 }
1042
1043 fn generate_test_desc_and_fn(
1044 &mut self,
1045 test: DocTestBuilder,
1046 scraped_test: ScrapedDocTest,
1047 ) -> test::TestDescAndFn {
1048 if !scraped_test.langstr.compile_fail {
1049 self.compiling_test_count.fetch_add(1, Ordering::SeqCst);
1050 }
1051
1052 generate_test_desc_and_fn(
1053 test,
1054 scraped_test,
1055 self.opts.clone(),
1056 Arc::clone(&self.rustdoc_options),
1057 self.unused_extern_reports.clone(),
1058 )
1059 }
1060}
1061
1062fn generate_test_desc_and_fn(
1063 test: DocTestBuilder,
1064 scraped_test: ScrapedDocTest,
1065 opts: GlobalTestOptions,
1066 rustdoc_options: Arc<RustdocOptions>,
1067 unused_externs: Arc<Mutex<Vec<UnusedExterns>>>,
1068) -> test::TestDescAndFn {
1069 let target_str = rustdoc_options.target.to_string();
1070 let rustdoc_test_options =
1071 IndividualTestOptions::new(&rustdoc_options, &test.test_id, scraped_test.path());
1072
1073 debug!("creating test {}: {}", scraped_test.name, scraped_test.text);
1074 test::TestDescAndFn {
1075 desc: test::TestDesc {
1076 name: test::DynTestName(scraped_test.name.clone()),
1077 ignore: match scraped_test.langstr.ignore {
1078 Ignore::All => true,
1079 Ignore::None => false,
1080 Ignore::Some(ref ignores) => ignores.iter().any(|s| target_str.contains(s)),
1081 },
1082 ignore_message: None,
1083 source_file: "",
1084 start_line: 0,
1085 start_col: 0,
1086 end_line: 0,
1087 end_col: 0,
1088 should_panic: test::ShouldPanic::No,
1090 compile_fail: scraped_test.langstr.compile_fail,
1091 no_run: scraped_test.no_run(&rustdoc_options),
1092 test_type: test::TestType::DocTest,
1093 },
1094 testfn: test::DynTestFn(Box::new(move || {
1095 doctest_run_fn(
1096 rustdoc_test_options,
1097 opts,
1098 test,
1099 scraped_test,
1100 rustdoc_options,
1101 unused_externs,
1102 )
1103 })),
1104 }
1105}
1106
1107fn doctest_run_fn(
1108 test_opts: IndividualTestOptions,
1109 global_opts: GlobalTestOptions,
1110 doctest: DocTestBuilder,
1111 scraped_test: ScrapedDocTest,
1112 rustdoc_options: Arc<RustdocOptions>,
1113 unused_externs: Arc<Mutex<Vec<UnusedExterns>>>,
1114) -> Result<(), String> {
1115 let report_unused_externs = |uext| {
1116 unused_externs.lock().unwrap().push(uext);
1117 };
1118 let (wrapped, full_test_line_offset) = doctest.generate_unique_doctest(
1119 &scraped_test.text,
1120 scraped_test.langstr.test_harness,
1121 &global_opts,
1122 Some(&global_opts.crate_name),
1123 );
1124 let runnable_test = RunnableDocTest {
1125 full_test_code: wrapped.to_string(),
1126 full_test_line_offset,
1127 test_opts,
1128 global_opts,
1129 langstr: scraped_test.langstr.clone(),
1130 line: scraped_test.line,
1131 edition: scraped_test.edition(&rustdoc_options),
1132 no_run: scraped_test.no_run(&rustdoc_options),
1133 merged_test_code: None,
1134 };
1135 let (_, res) =
1136 run_test(runnable_test, &rustdoc_options, doctest.supports_color, report_unused_externs);
1137
1138 if let Err(err) = res {
1139 match err {
1140 TestFailure::CompileError => {
1141 eprint!("Couldn't compile the test.");
1142 }
1143 TestFailure::UnexpectedCompilePass => {
1144 eprint!("Test compiled successfully, but it's marked `compile_fail`.");
1145 }
1146 TestFailure::UnexpectedRunPass => {
1147 eprint!("Test executable succeeded, but it's marked `should_panic`.");
1148 }
1149 TestFailure::MissingErrorCodes(codes) => {
1150 eprint!("Some expected error codes were not found: {codes:?}");
1151 }
1152 TestFailure::ExecutionError(err) => {
1153 eprint!("Couldn't run the test: {err}");
1154 if err.kind() == io::ErrorKind::PermissionDenied {
1155 eprint!(" - maybe your tempdir is mounted with noexec?");
1156 }
1157 }
1158 TestFailure::ExecutionFailure(out) => {
1159 eprintln!("Test executable failed ({reason}).", reason = out.status);
1160
1161 let stdout = str::from_utf8(&out.stdout).unwrap_or_default();
1171 let stderr = str::from_utf8(&out.stderr).unwrap_or_default();
1172
1173 if !stdout.is_empty() || !stderr.is_empty() {
1174 eprintln!();
1175
1176 if !stdout.is_empty() {
1177 eprintln!("stdout:\n{stdout}");
1178 }
1179
1180 if !stderr.is_empty() {
1181 eprintln!("stderr:\n{stderr}");
1182 }
1183 }
1184 }
1185 }
1186
1187 panic::resume_unwind(Box::new(()));
1188 }
1189 Ok(())
1190}
1191
1192#[cfg(test)] impl DocTestVisitor for Vec<usize> {
1194 fn visit_test(&mut self, _test: String, _config: LangString, rel_line: MdRelLine) {
1195 self.push(1 + rel_line.offset());
1196 }
1197}
1198
1199#[cfg(test)]
1200mod tests;