2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2020-02-11 06:01:56 -05:00
|
|
|
|
2023-01-07 15:22:09 -05:00
|
|
|
use crate::args::CliOptions;
|
2023-06-14 18:29:19 -04:00
|
|
|
use crate::args::Flags;
|
|
|
|
use crate::args::TestFlags;
|
2023-08-02 12:38:10 -04:00
|
|
|
use crate::args::TestReporterConfig;
|
2021-04-28 14:17:04 -04:00
|
|
|
use crate::colors;
|
2022-03-08 18:19:02 -05:00
|
|
|
use crate::display;
|
2023-05-01 14:35:23 -04:00
|
|
|
use crate::factory::CliFactory;
|
2023-06-14 18:29:19 -04:00
|
|
|
use crate::factory::CliFactoryBuilder;
|
2021-04-28 14:17:04 -04:00
|
|
|
use crate::file_fetcher::File;
|
2023-04-30 16:51:31 -04:00
|
|
|
use crate::file_fetcher::FileFetcher;
|
2023-02-09 22:00:23 -05:00
|
|
|
use crate::graph_util::graph_valid_with_cli_options;
|
2023-06-14 18:29:19 -04:00
|
|
|
use crate::graph_util::has_graph_root_local_dependent_changed;
|
2023-04-30 16:51:31 -04:00
|
|
|
use crate::module_loader::ModuleLoadPreparer;
|
2021-08-17 06:08:39 -04:00
|
|
|
use crate::ops;
|
2022-11-28 17:28:54 -05:00
|
|
|
use crate::util::file_watcher;
|
|
|
|
use crate::util::fs::collect_specifiers;
|
|
|
|
use crate::util::path::get_extension;
|
2023-09-17 02:50:30 -04:00
|
|
|
use crate::util::path::is_script_ext;
|
2023-03-21 11:46:40 -04:00
|
|
|
use crate::util::path::mapped_specifier_for_tsc;
|
2023-04-27 10:05:20 -04:00
|
|
|
use crate::worker::CliMainWorkerFactory;
|
2021-10-10 17:26:22 -04:00
|
|
|
|
2021-09-07 10:39:32 -04:00
|
|
|
use deno_ast::swc::common::comments::CommentKind;
|
|
|
|
use deno_ast::MediaType;
|
2022-05-20 16:40:55 -04:00
|
|
|
use deno_ast::SourceRangedForSpanned;
|
2024-01-15 19:15:39 -05:00
|
|
|
use deno_config::glob::FilePatterns;
|
|
|
|
use deno_config::glob::PathOrPattern;
|
2023-07-26 18:12:35 -04:00
|
|
|
use deno_core::anyhow;
|
|
|
|
use deno_core::anyhow::bail;
|
|
|
|
use deno_core::anyhow::Context as _;
|
2021-07-22 07:34:29 -04:00
|
|
|
use deno_core::error::generic_error;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::AnyError;
|
2022-04-16 13:51:12 -04:00
|
|
|
use deno_core::error::JsError;
|
2021-04-28 14:17:04 -04:00
|
|
|
use deno_core::futures::future;
|
|
|
|
use deno_core::futures::stream;
|
2021-05-26 11:47:33 -04:00
|
|
|
use deno_core::futures::FutureExt;
|
2021-04-28 14:17:04 -04:00
|
|
|
use deno_core::futures::StreamExt;
|
2023-04-13 13:43:23 -04:00
|
|
|
use deno_core::located_script_name;
|
2022-05-04 17:01:51 -04:00
|
|
|
use deno_core::parking_lot::Mutex;
|
2023-04-13 13:43:23 -04:00
|
|
|
use deno_core::serde_v8;
|
2024-02-16 16:22:12 -05:00
|
|
|
use deno_core::stats::RuntimeActivity;
|
|
|
|
use deno_core::stats::RuntimeActivityDiff;
|
2024-02-05 14:21:29 -05:00
|
|
|
use deno_core::stats::RuntimeActivityStats;
|
2024-02-16 16:22:12 -05:00
|
|
|
use deno_core::stats::RuntimeActivityStatsFactory;
|
2024-02-05 14:21:29 -05:00
|
|
|
use deno_core::stats::RuntimeActivityStatsFilter;
|
2023-08-23 19:03:05 -04:00
|
|
|
use deno_core::unsync::spawn;
|
|
|
|
use deno_core::unsync::spawn_blocking;
|
2022-04-11 12:27:17 -04:00
|
|
|
use deno_core::url::Url;
|
2023-04-13 13:43:23 -04:00
|
|
|
use deno_core::v8;
|
2021-04-28 14:17:04 -04:00
|
|
|
use deno_core::ModuleSpecifier;
|
2023-11-21 21:45:34 -05:00
|
|
|
use deno_core::PollEventLoopOptions;
|
2023-03-04 19:39:48 -05:00
|
|
|
use deno_runtime::deno_io::Stdio;
|
|
|
|
use deno_runtime::deno_io::StdioPipe;
|
2022-09-02 16:53:23 -04:00
|
|
|
use deno_runtime::fmt_errors::format_js_error;
|
2021-04-28 14:17:04 -04:00
|
|
|
use deno_runtime::permissions::Permissions;
|
2023-01-07 11:25:34 -05:00
|
|
|
use deno_runtime::permissions::PermissionsContainer;
|
2023-05-14 17:40:01 -04:00
|
|
|
use deno_runtime::tokio_util::create_and_run_current_thread;
|
2023-10-05 06:25:15 -04:00
|
|
|
use deno_runtime::worker::MainWorker;
|
2022-07-15 13:09:22 -04:00
|
|
|
use indexmap::IndexMap;
|
2023-03-25 15:32:11 -04:00
|
|
|
use indexmap::IndexSet;
|
2021-08-23 10:03:57 -04:00
|
|
|
use log::Level;
|
2021-07-05 21:20:33 -04:00
|
|
|
use rand::rngs::SmallRng;
|
|
|
|
use rand::seq::SliceRandom;
|
|
|
|
use rand::SeedableRng;
|
2021-05-10 19:54:39 -04:00
|
|
|
use regex::Regex;
|
2021-04-28 14:17:04 -04:00
|
|
|
use serde::Deserialize;
|
2022-05-09 05:44:50 -04:00
|
|
|
use std::collections::BTreeMap;
|
2023-03-25 15:32:11 -04:00
|
|
|
use std::collections::BTreeSet;
|
|
|
|
use std::collections::HashMap;
|
2021-08-26 15:21:58 -04:00
|
|
|
use std::collections::HashSet;
|
2022-07-01 09:28:06 -04:00
|
|
|
use std::fmt::Write as _;
|
2024-02-16 16:22:12 -05:00
|
|
|
use std::future::poll_fn;
|
2022-04-26 19:00:04 -04:00
|
|
|
use std::io::Read;
|
2021-10-11 09:45:02 -04:00
|
|
|
use std::io::Write;
|
2021-08-23 06:35:38 -04:00
|
|
|
use std::num::NonZeroUsize;
|
2022-11-28 17:28:54 -05:00
|
|
|
use std::path::Path;
|
2023-04-12 18:51:04 -04:00
|
|
|
use std::sync::atomic::AtomicBool;
|
2022-12-05 16:17:49 -05:00
|
|
|
use std::sync::atomic::AtomicUsize;
|
2023-04-12 18:51:04 -04:00
|
|
|
use std::sync::atomic::Ordering;
|
2021-04-28 14:17:04 -04:00
|
|
|
use std::sync::Arc;
|
2024-02-16 16:22:12 -05:00
|
|
|
use std::task::Poll;
|
2021-07-13 18:11:58 -04:00
|
|
|
use std::time::Duration;
|
2021-04-29 07:42:35 -04:00
|
|
|
use std::time::Instant;
|
2023-04-13 13:43:23 -04:00
|
|
|
use std::time::SystemTime;
|
2023-03-25 15:32:11 -04:00
|
|
|
use tokio::signal;
|
2022-03-08 19:34:31 -05:00
|
|
|
use tokio::sync::mpsc::unbounded_channel;
|
2023-10-05 06:25:15 -04:00
|
|
|
use tokio::sync::mpsc::UnboundedReceiver;
|
2022-03-08 19:34:31 -05:00
|
|
|
use tokio::sync::mpsc::UnboundedSender;
|
2023-03-25 15:32:11 -04:00
|
|
|
use tokio::sync::mpsc::WeakUnboundedSender;
|
2021-04-28 14:17:04 -04:00
|
|
|
|
2023-08-02 12:38:10 -04:00
|
|
|
pub mod fmt;
|
2023-10-05 06:25:15 -04:00
|
|
|
pub mod reporters;
|
2023-08-02 12:38:10 -04:00
|
|
|
|
2024-02-05 14:21:29 -05:00
|
|
|
use fmt::format_sanitizer_diff;
|
2023-08-02 12:38:10 -04:00
|
|
|
pub use fmt::format_test_error;
|
2023-07-26 20:16:12 -04:00
|
|
|
use reporters::CompoundTestReporter;
|
2023-08-02 12:38:10 -04:00
|
|
|
use reporters::DotTestReporter;
|
2023-07-26 20:16:12 -04:00
|
|
|
use reporters::JunitTestReporter;
|
|
|
|
use reporters::PrettyTestReporter;
|
2023-08-25 19:19:23 -04:00
|
|
|
use reporters::TapTestReporter;
|
2023-07-26 20:16:12 -04:00
|
|
|
use reporters::TestReporter;
|
|
|
|
|
2024-02-16 16:22:12 -05:00
|
|
|
/// How many times we're allowed to spin the event loop before considering something a leak.
|
|
|
|
const MAX_SANITIZER_LOOP_SPINS: usize = 16;
|
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
/// The test mode is used to determine how a specifier is to be tested.
|
2022-09-19 04:25:03 -04:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
2022-03-29 18:59:27 -04:00
|
|
|
pub enum TestMode {
|
2021-08-26 15:21:58 -04:00
|
|
|
/// Test as documentation, type-checking fenced code blocks.
|
|
|
|
Documentation,
|
|
|
|
/// Test as an executable module, loading the module into the isolate and running each test it
|
|
|
|
/// defines.
|
|
|
|
Executable,
|
|
|
|
/// Test as both documentation and an executable module.
|
|
|
|
Both,
|
|
|
|
}
|
|
|
|
|
2022-05-30 13:58:44 -04:00
|
|
|
#[derive(Clone, Debug, Default)]
|
|
|
|
pub struct TestFilter {
|
|
|
|
pub substring: Option<String>,
|
|
|
|
pub regex: Option<Regex>,
|
|
|
|
pub include: Option<Vec<String>>,
|
|
|
|
pub exclude: Vec<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TestFilter {
|
|
|
|
pub fn includes(&self, name: &String) -> bool {
|
|
|
|
if let Some(substring) = &self.substring {
|
|
|
|
if !name.contains(substring) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(regex) = &self.regex {
|
|
|
|
if !regex.is_match(name) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(include) = &self.include {
|
|
|
|
if !include.contains(name) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if self.exclude.contains(name) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_flag(flag: &Option<String>) -> Self {
|
|
|
|
let mut substring = None;
|
|
|
|
let mut regex = None;
|
|
|
|
if let Some(flag) = flag {
|
|
|
|
if flag.starts_with('/') && flag.ends_with('/') {
|
|
|
|
let rs = flag.trim_start_matches('/').trim_end_matches('/');
|
|
|
|
regex =
|
|
|
|
Some(Regex::new(rs).unwrap_or_else(|_| Regex::new("$^").unwrap()));
|
|
|
|
} else {
|
|
|
|
substring = Some(flag.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Self {
|
|
|
|
substring,
|
|
|
|
regex,
|
|
|
|
..Default::default()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-04 19:15:54 -04:00
|
|
|
#[derive(Debug, Clone, PartialEq, Deserialize, Eq, Hash)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct TestLocation {
|
|
|
|
pub file_name: String,
|
|
|
|
pub line_number: u32,
|
|
|
|
pub column_number: u32,
|
|
|
|
}
|
|
|
|
|
2021-10-11 09:45:02 -04:00
|
|
|
#[derive(Debug, Clone, PartialEq, Deserialize, Eq, Hash)]
|
2021-07-14 15:05:16 -04:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct TestDescription {
|
2022-07-15 13:09:22 -04:00
|
|
|
pub id: usize,
|
2021-07-14 15:05:16 -04:00
|
|
|
pub name: String,
|
2023-04-13 13:43:23 -04:00
|
|
|
pub ignore: bool,
|
|
|
|
pub only: bool,
|
2022-07-15 13:09:22 -04:00
|
|
|
pub origin: String,
|
2022-05-04 19:15:54 -04:00
|
|
|
pub location: TestLocation,
|
2024-02-05 14:21:29 -05:00
|
|
|
pub sanitize_ops: bool,
|
|
|
|
pub sanitize_resources: bool,
|
2021-07-14 15:05:16 -04:00
|
|
|
}
|
|
|
|
|
2024-02-05 12:27:17 -05:00
|
|
|
/// May represent a failure of a test or test step.
|
|
|
|
#[derive(Debug, Clone, PartialEq, Deserialize, Eq, Hash)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct TestFailureDescription {
|
|
|
|
pub id: usize,
|
|
|
|
pub name: String,
|
|
|
|
pub origin: String,
|
|
|
|
pub location: TestLocation,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<&TestDescription> for TestFailureDescription {
|
|
|
|
fn from(value: &TestDescription) -> Self {
|
|
|
|
Self {
|
|
|
|
id: value.id,
|
|
|
|
name: value.name.clone(),
|
|
|
|
origin: value.origin.clone(),
|
|
|
|
location: value.location.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-25 15:32:11 -04:00
|
|
|
#[allow(clippy::derive_partial_eq_without_eq)]
|
|
|
|
#[derive(Debug, Clone, PartialEq, Deserialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub enum TestFailure {
|
|
|
|
JsError(Box<JsError>),
|
|
|
|
FailedSteps(usize),
|
|
|
|
IncompleteSteps,
|
2024-02-16 16:22:12 -05:00
|
|
|
Leaked(Vec<String>, Vec<String>), // Details, trailer notes
|
2023-03-25 15:32:11 -04:00
|
|
|
// The rest are for steps only.
|
|
|
|
Incomplete,
|
|
|
|
OverlapsWithSanitizers(IndexSet<String>), // Long names of overlapped tests
|
|
|
|
HasSanitizersAndOverlaps(IndexSet<String>), // Long names of overlapped tests
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToString for TestFailure {
|
|
|
|
fn to_string(&self) -> String {
|
|
|
|
match self {
|
|
|
|
TestFailure::JsError(js_error) => format_test_error(js_error),
|
|
|
|
TestFailure::FailedSteps(1) => "1 test step failed.".to_string(),
|
|
|
|
TestFailure::FailedSteps(n) => format!("{} test steps failed.", n),
|
|
|
|
TestFailure::IncompleteSteps => "Completed while steps were still running. Ensure all steps are awaited with `await t.step(...)`.".to_string(),
|
|
|
|
TestFailure::Incomplete => "Didn't complete before parent. Await step with `await t.step(...)`.".to_string(),
|
2024-02-16 16:22:12 -05:00
|
|
|
TestFailure::Leaked(details, trailer_notes) => {
|
|
|
|
let mut string = "Leaks detected:".to_string();
|
2023-03-25 15:32:11 -04:00
|
|
|
for detail in details {
|
2024-02-16 16:22:12 -05:00
|
|
|
string.push_str(&format!("\n - {detail}"));
|
2023-03-25 15:32:11 -04:00
|
|
|
}
|
2024-02-16 16:22:12 -05:00
|
|
|
for trailer in trailer_notes {
|
|
|
|
string.push_str(&format!("\n{trailer}"));
|
2023-03-25 15:32:11 -04:00
|
|
|
}
|
|
|
|
string
|
|
|
|
}
|
|
|
|
TestFailure::OverlapsWithSanitizers(long_names) => {
|
|
|
|
let mut string = "Started test step while another test step with sanitizers was running:".to_string();
|
|
|
|
for long_name in long_names {
|
|
|
|
string.push_str(&format!("\n * {}", long_name));
|
|
|
|
}
|
|
|
|
string
|
|
|
|
}
|
|
|
|
TestFailure::HasSanitizersAndOverlaps(long_names) => {
|
|
|
|
let mut string = "Started test step with sanitizers while another test step was running:".to_string();
|
|
|
|
for long_name in long_names {
|
|
|
|
string.push_str(&format!("\n * {}", long_name));
|
|
|
|
}
|
|
|
|
string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TestFailure {
|
|
|
|
fn format_label(&self) -> String {
|
|
|
|
match self {
|
|
|
|
TestFailure::Incomplete => colors::gray("INCOMPLETE").to_string(),
|
|
|
|
_ => colors::red("FAILED").to_string(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn format_inline_summary(&self) -> Option<String> {
|
|
|
|
match self {
|
|
|
|
TestFailure::FailedSteps(1) => Some("due to 1 failed step".to_string()),
|
|
|
|
TestFailure::FailedSteps(n) => Some(format!("due to {} failed steps", n)),
|
|
|
|
TestFailure::IncompleteSteps => {
|
|
|
|
Some("due to incomplete steps".to_string())
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn hide_in_summary(&self) -> bool {
|
|
|
|
// These failure variants are hidden in summaries because they are caused
|
|
|
|
// by child errors that will be summarized separately.
|
|
|
|
matches!(
|
|
|
|
self,
|
|
|
|
TestFailure::FailedSteps(_) | TestFailure::IncompleteSteps
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-19 04:25:03 -04:00
|
|
|
#[allow(clippy::derive_partial_eq_without_eq)]
|
2021-04-28 14:17:04 -04:00
|
|
|
#[derive(Debug, Clone, PartialEq, Deserialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub enum TestResult {
|
|
|
|
Ok,
|
|
|
|
Ignored,
|
2023-03-25 15:32:11 -04:00
|
|
|
Failed(TestFailure),
|
2022-07-15 13:09:22 -04:00
|
|
|
Cancelled,
|
2021-04-28 14:17:04 -04:00
|
|
|
}
|
|
|
|
|
2022-09-19 04:25:03 -04:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq, Deserialize)]
|
2021-10-11 09:45:02 -04:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct TestStepDescription {
|
2022-07-15 13:09:22 -04:00
|
|
|
pub id: usize,
|
2021-10-11 09:45:02 -04:00
|
|
|
pub name: String,
|
2022-07-15 13:09:22 -04:00
|
|
|
pub origin: String,
|
|
|
|
pub location: TestLocation,
|
|
|
|
pub level: usize,
|
|
|
|
pub parent_id: usize,
|
|
|
|
pub root_id: usize,
|
|
|
|
pub root_name: String,
|
|
|
|
}
|
|
|
|
|
2022-09-19 04:25:03 -04:00
|
|
|
#[allow(clippy::derive_partial_eq_without_eq)]
|
2021-10-11 09:45:02 -04:00
|
|
|
#[derive(Debug, Clone, PartialEq, Deserialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub enum TestStepResult {
|
|
|
|
Ok,
|
|
|
|
Ignored,
|
2023-03-25 15:32:11 -04:00
|
|
|
Failed(TestFailure),
|
2021-10-11 09:45:02 -04:00
|
|
|
}
|
|
|
|
|
2022-09-19 04:25:03 -04:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq, Deserialize)]
|
2021-07-14 15:05:16 -04:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct TestPlan {
|
|
|
|
pub origin: String,
|
|
|
|
pub total: usize,
|
|
|
|
pub filtered_out: usize,
|
|
|
|
pub used_only: bool,
|
2021-04-28 14:17:04 -04:00
|
|
|
}
|
2020-02-11 06:01:56 -05:00
|
|
|
|
2021-04-30 11:56:47 -04:00
|
|
|
#[derive(Debug, Clone, Deserialize)]
|
2021-07-14 15:05:16 -04:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub enum TestEvent {
|
2022-07-15 13:09:22 -04:00
|
|
|
Register(TestDescription),
|
2021-07-14 15:05:16 -04:00
|
|
|
Plan(TestPlan),
|
2022-07-15 13:09:22 -04:00
|
|
|
Wait(usize),
|
2022-05-01 14:44:55 -04:00
|
|
|
Output(Vec<u8>),
|
2022-07-15 13:09:22 -04:00
|
|
|
Result(usize, TestResult, u64),
|
2022-05-09 05:44:50 -04:00
|
|
|
UncaughtError(String, Box<JsError>),
|
2022-07-15 13:09:22 -04:00
|
|
|
StepRegister(TestStepDescription),
|
|
|
|
StepWait(usize),
|
|
|
|
StepResult(usize, TestStepResult, u64),
|
2023-10-05 06:25:15 -04:00
|
|
|
ForceEndReport,
|
2023-03-25 15:32:11 -04:00
|
|
|
Sigint,
|
2021-04-30 11:56:47 -04:00
|
|
|
}
|
|
|
|
|
2021-07-13 18:11:58 -04:00
|
|
|
#[derive(Debug, Clone, Deserialize)]
|
|
|
|
pub struct TestSummary {
|
|
|
|
pub total: usize,
|
|
|
|
pub passed: usize,
|
|
|
|
pub failed: usize,
|
|
|
|
pub ignored: usize,
|
2021-11-15 10:20:37 -05:00
|
|
|
pub passed_steps: usize,
|
|
|
|
pub failed_steps: usize,
|
|
|
|
pub ignored_steps: usize,
|
2021-07-13 18:11:58 -04:00
|
|
|
pub filtered_out: usize,
|
|
|
|
pub measured: usize,
|
2024-02-05 12:27:17 -05:00
|
|
|
pub failures: Vec<(TestFailureDescription, TestFailure)>,
|
2022-05-09 05:44:50 -04:00
|
|
|
pub uncaught_errors: Vec<(String, Box<JsError>)>,
|
2021-07-13 18:11:58 -04:00
|
|
|
}
|
|
|
|
|
2022-07-15 13:09:22 -04:00
|
|
|
#[derive(Debug, Clone)]
|
2023-04-27 10:05:20 -04:00
|
|
|
struct TestSpecifiersOptions {
|
2021-12-30 11:18:30 -05:00
|
|
|
concurrent_jobs: NonZeroUsize,
|
|
|
|
fail_fast: Option<NonZeroUsize>,
|
2023-04-27 10:05:20 -04:00
|
|
|
log_level: Option<log::Level>,
|
2023-09-06 08:54:21 -04:00
|
|
|
filter: bool,
|
2023-04-27 10:05:20 -04:00
|
|
|
specifier: TestSpecifierOptions,
|
2023-08-02 12:38:10 -04:00
|
|
|
reporter: TestReporterConfig,
|
2023-08-02 22:05:34 -04:00
|
|
|
junit_path: Option<String>,
|
2023-04-27 10:05:20 -04:00
|
|
|
}
|
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
#[derive(Debug, Default, Clone)]
|
2023-04-27 10:05:20 -04:00
|
|
|
pub struct TestSpecifierOptions {
|
|
|
|
pub shuffle: Option<u64>,
|
|
|
|
pub filter: TestFilter,
|
|
|
|
pub trace_ops: bool,
|
2021-12-30 11:18:30 -05:00
|
|
|
}
|
|
|
|
|
2021-07-13 18:11:58 -04:00
|
|
|
impl TestSummary {
|
2022-03-29 18:59:27 -04:00
|
|
|
pub fn new() -> TestSummary {
|
2021-07-13 18:11:58 -04:00
|
|
|
TestSummary {
|
|
|
|
total: 0,
|
|
|
|
passed: 0,
|
|
|
|
failed: 0,
|
|
|
|
ignored: 0,
|
2021-11-15 10:20:37 -05:00
|
|
|
passed_steps: 0,
|
|
|
|
failed_steps: 0,
|
|
|
|
ignored_steps: 0,
|
2021-07-13 18:11:58 -04:00
|
|
|
filtered_out: 0,
|
|
|
|
measured: 0,
|
|
|
|
failures: Vec::new(),
|
2022-05-09 05:44:50 -04:00
|
|
|
uncaught_errors: Vec::new(),
|
2021-07-13 18:11:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn has_failed(&self) -> bool {
|
|
|
|
self.failed > 0 || !self.failures.is_empty()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-10 18:12:33 -04:00
|
|
|
fn get_test_reporter(options: &TestSpecifiersOptions) -> Box<dyn TestReporter> {
|
2023-08-02 12:38:10 -04:00
|
|
|
let parallel = options.concurrent_jobs.get() > 1;
|
2023-08-02 22:05:34 -04:00
|
|
|
let reporter: Box<dyn TestReporter> = match &options.reporter {
|
2023-08-02 12:38:10 -04:00
|
|
|
TestReporterConfig::Dot => Box::new(DotTestReporter::new()),
|
|
|
|
TestReporterConfig::Pretty => Box::new(PrettyTestReporter::new(
|
|
|
|
parallel,
|
|
|
|
options.log_level != Some(Level::Error),
|
2023-09-06 08:54:21 -04:00
|
|
|
options.filter,
|
2023-10-05 06:25:15 -04:00
|
|
|
false,
|
2023-08-02 12:38:10 -04:00
|
|
|
)),
|
2023-08-02 22:05:34 -04:00
|
|
|
TestReporterConfig::Junit => {
|
|
|
|
Box::new(JunitTestReporter::new("-".to_string()))
|
2022-04-18 09:22:23 -04:00
|
|
|
}
|
2023-08-25 19:19:23 -04:00
|
|
|
TestReporterConfig::Tap => Box::new(TapTestReporter::new(
|
|
|
|
options.concurrent_jobs > NonZeroUsize::new(1).unwrap(),
|
|
|
|
)),
|
2023-08-02 22:05:34 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(junit_path) = &options.junit_path {
|
|
|
|
let junit = Box::new(JunitTestReporter::new(junit_path.to_string()));
|
|
|
|
return Box::new(CompoundTestReporter::new(vec![reporter, junit]));
|
2022-04-18 09:22:23 -04:00
|
|
|
}
|
2023-08-02 22:05:34 -04:00
|
|
|
|
|
|
|
reporter
|
2022-04-18 09:22:23 -04:00
|
|
|
}
|
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
/// Test a single specifier as documentation containing test programs, an executable test module or
|
|
|
|
/// both.
|
2023-04-13 13:43:23 -04:00
|
|
|
pub async fn test_specifier(
|
2023-05-14 17:40:01 -04:00
|
|
|
worker_factory: Arc<CliMainWorkerFactory>,
|
2021-04-28 14:17:04 -04:00
|
|
|
permissions: Permissions,
|
2021-08-26 15:21:58 -04:00
|
|
|
specifier: ModuleSpecifier,
|
2023-04-13 13:43:23 -04:00
|
|
|
mut sender: TestEventSender,
|
2022-12-05 16:17:49 -05:00
|
|
|
fail_fast_tracker: FailFastTracker,
|
2023-05-14 17:40:01 -04:00
|
|
|
options: TestSpecifierOptions,
|
2023-12-05 11:26:06 -05:00
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
match test_specifier_inner(
|
|
|
|
worker_factory,
|
|
|
|
permissions,
|
|
|
|
specifier.clone(),
|
|
|
|
&sender,
|
|
|
|
fail_fast_tracker,
|
|
|
|
options,
|
|
|
|
)
|
|
|
|
.await
|
|
|
|
{
|
|
|
|
Ok(()) => Ok(()),
|
|
|
|
Err(error) => {
|
|
|
|
if error.is::<JsError>() {
|
|
|
|
sender.send(TestEvent::UncaughtError(
|
|
|
|
specifier.to_string(),
|
|
|
|
Box::new(error.downcast::<JsError>().unwrap()),
|
|
|
|
))?;
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Test a single specifier as documentation containing test programs, an executable test module or
|
|
|
|
/// both.
|
|
|
|
async fn test_specifier_inner(
|
|
|
|
worker_factory: Arc<CliMainWorkerFactory>,
|
|
|
|
permissions: Permissions,
|
|
|
|
specifier: ModuleSpecifier,
|
|
|
|
sender: &TestEventSender,
|
|
|
|
fail_fast_tracker: FailFastTracker,
|
|
|
|
options: TestSpecifierOptions,
|
2021-04-28 14:17:04 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2023-04-13 13:43:23 -04:00
|
|
|
if fail_fast_tracker.should_stop() {
|
|
|
|
return Ok(());
|
|
|
|
}
|
2022-12-05 16:17:49 -05:00
|
|
|
let stdout = StdioPipe::File(sender.stdout());
|
|
|
|
let stderr = StdioPipe::File(sender.stderr());
|
2023-04-27 10:05:20 -04:00
|
|
|
let mut worker = worker_factory
|
|
|
|
.create_custom_worker(
|
|
|
|
specifier.clone(),
|
|
|
|
PermissionsContainer::new(permissions),
|
2023-06-26 07:54:10 -04:00
|
|
|
vec![ops::testing::deno_test::init_ops(sender.clone())],
|
2023-04-27 10:05:20 -04:00
|
|
|
Stdio {
|
|
|
|
stdin: StdioPipe::Inherit,
|
|
|
|
stdout,
|
|
|
|
stderr,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await?;
|
2021-04-28 14:17:04 -04:00
|
|
|
|
2023-04-13 13:43:23 -04:00
|
|
|
let mut coverage_collector = worker.maybe_setup_coverage_collector().await?;
|
|
|
|
|
2023-09-14 10:38:15 -04:00
|
|
|
if options.trace_ops {
|
|
|
|
worker.execute_script_static(
|
|
|
|
located_script_name!(),
|
2024-02-06 20:16:08 -05:00
|
|
|
"Deno[Deno.internal].core.setOpCallTracingEnabled(true);",
|
2023-09-14 10:38:15 -04:00
|
|
|
)?;
|
|
|
|
}
|
|
|
|
|
2023-04-13 13:43:23 -04:00
|
|
|
// We execute the main module as a side module so that import.meta.main is not set.
|
2023-12-05 11:26:06 -05:00
|
|
|
worker.execute_side_module_possibly_with_npm().await?;
|
2023-04-13 13:43:23 -04:00
|
|
|
|
|
|
|
let mut worker = worker.into_main_worker();
|
2023-09-14 10:38:15 -04:00
|
|
|
|
2023-12-05 11:26:06 -05:00
|
|
|
// Ensure that there are no pending exceptions before we start running tests
|
|
|
|
worker.run_up_to_duration(Duration::from_millis(0)).await?;
|
|
|
|
|
2023-04-13 13:43:23 -04:00
|
|
|
worker.dispatch_load_event(located_script_name!())?;
|
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
run_tests_for_worker(&mut worker, &specifier, &options, &fail_fast_tracker)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
// Ignore `defaultPrevented` of the `beforeunload` event. We don't allow the
|
|
|
|
// event loop to continue beyond what's needed to await results.
|
|
|
|
worker.dispatch_beforeunload_event(located_script_name!())?;
|
|
|
|
worker.dispatch_unload_event(located_script_name!())?;
|
|
|
|
|
2023-12-05 11:26:06 -05:00
|
|
|
// Ensure the worker has settled so we can catch any remaining unhandled rejections. We don't
|
|
|
|
// want to wait forever here.
|
|
|
|
worker.run_up_to_duration(Duration::from_millis(0)).await?;
|
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
if let Some(coverage_collector) = coverage_collector.as_mut() {
|
|
|
|
worker
|
2023-11-21 21:45:34 -05:00
|
|
|
.js_runtime
|
2023-12-13 10:07:26 -05:00
|
|
|
.with_event_loop_future(
|
2023-11-21 21:45:34 -05:00
|
|
|
coverage_collector.stop_collecting().boxed_local(),
|
2023-12-13 10:07:26 -05:00
|
|
|
PollEventLoopOptions::default(),
|
2023-11-21 21:45:34 -05:00
|
|
|
)
|
2023-10-05 06:25:15 -04:00
|
|
|
.await?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2023-10-05 16:45:11 -04:00
|
|
|
pub fn worker_has_tests(worker: &mut MainWorker) -> bool {
|
|
|
|
let state_rc = worker.js_runtime.op_state();
|
|
|
|
let state = state_rc.borrow();
|
|
|
|
!state.borrow::<ops::testing::TestContainer>().0.is_empty()
|
|
|
|
}
|
|
|
|
|
2024-02-16 16:22:12 -05:00
|
|
|
/// Yields to tokio to allow async work to process, and then polls
|
|
|
|
/// the event loop once.
|
|
|
|
#[must_use = "The event loop result should be checked"]
|
|
|
|
pub async fn poll_event_loop(worker: &mut MainWorker) -> Result<(), AnyError> {
|
|
|
|
// Allow any ops that to do work in the tokio event loop to do so
|
|
|
|
tokio::task::yield_now().await;
|
|
|
|
// Spin the event loop once
|
|
|
|
poll_fn(|cx| {
|
|
|
|
if let Poll::Ready(Err(err)) = worker
|
|
|
|
.js_runtime
|
|
|
|
.poll_event_loop(cx, PollEventLoopOptions::default())
|
|
|
|
{
|
|
|
|
return Poll::Ready(Err(err));
|
|
|
|
}
|
|
|
|
Poll::Ready(Ok(()))
|
|
|
|
})
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
pub async fn run_tests_for_worker(
|
|
|
|
worker: &mut MainWorker,
|
|
|
|
specifier: &ModuleSpecifier,
|
|
|
|
options: &TestSpecifierOptions,
|
|
|
|
fail_fast_tracker: &FailFastTracker,
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
let (tests, mut sender) = {
|
2023-04-13 13:43:23 -04:00
|
|
|
let state_rc = worker.js_runtime.op_state();
|
|
|
|
let mut state = state_rc.borrow_mut();
|
2023-10-05 06:25:15 -04:00
|
|
|
(
|
|
|
|
std::mem::take(&mut state.borrow_mut::<ops::testing::TestContainer>().0),
|
|
|
|
state.borrow::<TestEventSender>().clone(),
|
|
|
|
)
|
2023-04-13 13:43:23 -04:00
|
|
|
};
|
|
|
|
let unfiltered = tests.len();
|
2023-09-06 12:07:37 -04:00
|
|
|
let tests = tests
|
2023-04-13 13:43:23 -04:00
|
|
|
.into_iter()
|
2023-04-27 10:05:20 -04:00
|
|
|
.filter(|(d, _)| options.filter.includes(&d.name))
|
2023-04-13 13:43:23 -04:00
|
|
|
.collect::<Vec<_>>();
|
2023-09-06 12:07:37 -04:00
|
|
|
let (only, no_only): (Vec<_>, Vec<_>) =
|
|
|
|
tests.into_iter().partition(|(d, _)| d.only);
|
|
|
|
let used_only = !only.is_empty();
|
|
|
|
let mut tests = if used_only { only } else { no_only };
|
2023-04-27 10:05:20 -04:00
|
|
|
if let Some(seed) = options.shuffle {
|
2023-04-13 13:43:23 -04:00
|
|
|
tests.shuffle(&mut SmallRng::seed_from_u64(seed));
|
|
|
|
}
|
|
|
|
sender.send(TestEvent::Plan(TestPlan {
|
|
|
|
origin: specifier.to_string(),
|
|
|
|
total: tests.len(),
|
|
|
|
filtered_out: unfiltered - tests.len(),
|
|
|
|
used_only,
|
|
|
|
}))?;
|
|
|
|
let mut had_uncaught_error = false;
|
2024-02-05 14:21:29 -05:00
|
|
|
let stats = worker.js_runtime.runtime_activity_stats_factory();
|
2024-02-16 16:22:12 -05:00
|
|
|
let ops = worker.js_runtime.op_names();
|
|
|
|
|
|
|
|
// These particular ops may start and stop independently of tests, so we just filter them out
|
|
|
|
// completely.
|
|
|
|
let op_id_host_recv_message = ops
|
|
|
|
.iter()
|
|
|
|
.position(|op| *op == "op_host_recv_message")
|
|
|
|
.unwrap();
|
|
|
|
let op_id_host_recv_ctrl = ops
|
|
|
|
.iter()
|
|
|
|
.position(|op| *op == "op_host_recv_ctrl")
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
// For consistency between tests with and without sanitizers, we _always_ include
|
|
|
|
// the actual sanitizer capture before and after a test, but a test that ignores resource
|
|
|
|
// or op sanitization simply doesn't throw if one of these constraints is violated.
|
|
|
|
let mut filter = RuntimeActivityStatsFilter::default();
|
|
|
|
filter = filter.with_resources();
|
|
|
|
filter = filter.with_ops();
|
|
|
|
filter = filter.omit_op(op_id_host_recv_ctrl as _);
|
|
|
|
filter = filter.omit_op(op_id_host_recv_message as _);
|
2024-02-05 14:21:29 -05:00
|
|
|
|
2023-04-13 13:43:23 -04:00
|
|
|
for (desc, function) in tests {
|
|
|
|
if fail_fast_tracker.should_stop() {
|
|
|
|
break;
|
|
|
|
}
|
2024-02-16 16:22:12 -05:00
|
|
|
|
|
|
|
// Each test needs a fresh reqwest connection pool to avoid inter-test weirdness with connections
|
|
|
|
// failing. If we don't do this, a connection to a test server we just tore down might be re-used in
|
|
|
|
// the next test.
|
|
|
|
// TODO(mmastrac): this should be some sort of callback that we can implement for any subsystem
|
|
|
|
worker
|
|
|
|
.js_runtime
|
|
|
|
.op_state()
|
|
|
|
.borrow_mut()
|
|
|
|
.try_take::<deno_runtime::deno_fetch::reqwest::Client>();
|
|
|
|
|
2023-04-13 13:43:23 -04:00
|
|
|
if desc.ignore {
|
|
|
|
sender.send(TestEvent::Result(desc.id, TestResult::Ignored, 0))?;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if had_uncaught_error {
|
|
|
|
sender.send(TestEvent::Result(desc.id, TestResult::Cancelled, 0))?;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
sender.send(TestEvent::Wait(desc.id))?;
|
2023-06-07 17:50:14 -04:00
|
|
|
|
2024-02-05 14:21:29 -05:00
|
|
|
// Poll event loop once, to allow all ops that are already resolved, but haven't
|
|
|
|
// responded to settle.
|
|
|
|
// TODO(mmastrac): we should provide an API to poll the event loop until no futher
|
|
|
|
// progress is made.
|
2024-02-16 16:22:12 -05:00
|
|
|
poll_event_loop(worker).await?;
|
2023-06-07 17:50:14 -04:00
|
|
|
|
2024-02-16 16:22:12 -05:00
|
|
|
// We always capture stats, regardless of sanitization state
|
|
|
|
let before = stats.clone().capture(&filter);
|
2024-02-05 14:21:29 -05:00
|
|
|
|
2023-04-13 13:43:23 -04:00
|
|
|
let earlier = SystemTime::now();
|
2023-12-13 10:07:26 -05:00
|
|
|
let call = worker.js_runtime.call(&function);
|
|
|
|
let result = match worker
|
|
|
|
.js_runtime
|
|
|
|
.with_event_loop_promise(call, PollEventLoopOptions::default())
|
|
|
|
.await
|
|
|
|
{
|
2023-04-13 13:43:23 -04:00
|
|
|
Ok(r) => r,
|
|
|
|
Err(error) => {
|
|
|
|
if error.is::<JsError>() {
|
|
|
|
sender.send(TestEvent::UncaughtError(
|
|
|
|
specifier.to_string(),
|
|
|
|
Box::new(error.downcast::<JsError>().unwrap()),
|
|
|
|
))?;
|
|
|
|
fail_fast_tracker.add_failure();
|
|
|
|
sender.send(TestEvent::Result(desc.id, TestResult::Cancelled, 0))?;
|
|
|
|
had_uncaught_error = true;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
return Err(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2024-02-16 16:22:12 -05:00
|
|
|
|
|
|
|
// Await activity stabilization
|
|
|
|
if let Some(diff) = wait_for_activity_to_stabilize(
|
|
|
|
worker,
|
|
|
|
&stats,
|
|
|
|
&filter,
|
|
|
|
before,
|
|
|
|
desc.sanitize_ops,
|
|
|
|
desc.sanitize_resources,
|
|
|
|
)
|
|
|
|
.await?
|
|
|
|
{
|
|
|
|
let (formatted, trailer_notes) = format_sanitizer_diff(diff);
|
2024-02-05 14:21:29 -05:00
|
|
|
if !formatted.is_empty() {
|
2024-02-16 16:22:12 -05:00
|
|
|
let failure = TestFailure::Leaked(formatted, trailer_notes);
|
2024-02-05 14:21:29 -05:00
|
|
|
let elapsed = SystemTime::now().duration_since(earlier)?.as_millis();
|
|
|
|
sender.send(TestEvent::Result(
|
|
|
|
desc.id,
|
|
|
|
TestResult::Failed(failure),
|
|
|
|
elapsed as u64,
|
|
|
|
))?;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-13 13:43:23 -04:00
|
|
|
let scope = &mut worker.js_runtime.handle_scope();
|
|
|
|
let result = v8::Local::new(scope, result);
|
|
|
|
let result = serde_v8::from_v8::<TestResult>(scope, result)?;
|
|
|
|
if matches!(result, TestResult::Failed(_)) {
|
|
|
|
fail_fast_tracker.add_failure();
|
|
|
|
}
|
|
|
|
let elapsed = SystemTime::now().duration_since(earlier)?.as_millis();
|
|
|
|
sender.send(TestEvent::Result(desc.id, result, elapsed as u64))?;
|
|
|
|
}
|
|
|
|
Ok(())
|
2021-04-28 14:17:04 -04:00
|
|
|
}
|
|
|
|
|
2024-02-16 16:22:12 -05:00
|
|
|
/// Removes timer resources and op_sleep_interval calls. When an interval is started before a test
|
|
|
|
/// and resolves during a test, there's a false alarm.
|
|
|
|
fn preprocess_timer_activity(activities: &mut Vec<RuntimeActivity>) {
|
|
|
|
// TODO(mmastrac): Once we get to the new timer implementation, all of this
|
|
|
|
// code can go away and be replaced by a proper timer sanitizer.
|
|
|
|
let mut timer_resource_leaked = false;
|
|
|
|
|
|
|
|
// First, search for any timer resources which will indicate that we have an interval leak
|
|
|
|
activities.retain(|activity| {
|
|
|
|
if let RuntimeActivity::Resource(_, name) = activity {
|
|
|
|
if name == "timer" {
|
|
|
|
timer_resource_leaked = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
true
|
|
|
|
});
|
|
|
|
|
|
|
|
// If we've leaked a timer resource, we un-mute op_sleep_interval calls. Otherwise, we remove
|
|
|
|
// them.
|
|
|
|
if !timer_resource_leaked {
|
|
|
|
activities.retain(|activity| {
|
|
|
|
if let RuntimeActivity::AsyncOp(_, op, _) = activity {
|
|
|
|
*op != "op_sleep_interval"
|
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn wait_for_activity_to_stabilize(
|
|
|
|
worker: &mut MainWorker,
|
|
|
|
stats: &RuntimeActivityStatsFactory,
|
|
|
|
filter: &RuntimeActivityStatsFilter,
|
|
|
|
before: RuntimeActivityStats,
|
|
|
|
sanitize_ops: bool,
|
|
|
|
sanitize_resources: bool,
|
|
|
|
) -> Result<Option<RuntimeActivityDiff>, AnyError> {
|
|
|
|
// First, check to see if there's any diff at all. If not, just continue.
|
|
|
|
let after = stats.clone().capture(filter);
|
|
|
|
let mut diff = RuntimeActivityStats::diff(&before, &after);
|
|
|
|
preprocess_timer_activity(&mut diff.appeared);
|
|
|
|
preprocess_timer_activity(&mut diff.disappeared);
|
|
|
|
if diff.appeared.is_empty() && diff.disappeared.is_empty() {
|
|
|
|
// No activity, so we return early
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
|
|
|
|
// We allow for up to MAX_SANITIZER_LOOP_SPINS to get to a point where there is no difference.
|
|
|
|
// TODO(mmastrac): We could be much smarter about this if we had the concept of "progress" in
|
|
|
|
// an event loop tick. Ideally we'd be able to tell if we were spinning and doing nothing, or
|
|
|
|
// spinning and resolving ops.
|
|
|
|
for _ in 0..MAX_SANITIZER_LOOP_SPINS {
|
|
|
|
// There was a diff, so let the event loop run once
|
|
|
|
poll_event_loop(worker).await?;
|
|
|
|
|
|
|
|
let after = stats.clone().capture(filter);
|
|
|
|
diff = RuntimeActivityStats::diff(&before, &after);
|
|
|
|
preprocess_timer_activity(&mut diff.appeared);
|
|
|
|
preprocess_timer_activity(&mut diff.disappeared);
|
|
|
|
if diff.appeared.is_empty() && diff.disappeared.is_empty() {
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !sanitize_ops {
|
|
|
|
diff
|
|
|
|
.appeared
|
|
|
|
.retain(|activity| !matches!(activity, RuntimeActivity::AsyncOp(..)));
|
|
|
|
diff
|
|
|
|
.disappeared
|
|
|
|
.retain(|activity| !matches!(activity, RuntimeActivity::AsyncOp(..)));
|
|
|
|
}
|
|
|
|
if !sanitize_resources {
|
|
|
|
diff
|
|
|
|
.appeared
|
|
|
|
.retain(|activity| !matches!(activity, RuntimeActivity::Resource(..)));
|
|
|
|
diff
|
|
|
|
.disappeared
|
|
|
|
.retain(|activity| !matches!(activity, RuntimeActivity::Resource(..)));
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(if diff.appeared.is_empty() && diff.disappeared.is_empty() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(diff)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-07-29 15:03:06 -04:00
|
|
|
fn extract_files_from_regex_blocks(
|
2022-01-13 11:58:00 -05:00
|
|
|
specifier: &ModuleSpecifier,
|
2021-07-29 15:03:06 -04:00
|
|
|
source: &str,
|
2021-09-07 10:39:32 -04:00
|
|
|
media_type: MediaType,
|
2022-01-13 11:58:00 -05:00
|
|
|
file_line_index: usize,
|
2021-07-29 15:03:06 -04:00
|
|
|
blocks_regex: &Regex,
|
|
|
|
lines_regex: &Regex,
|
|
|
|
) -> Result<Vec<File>, AnyError> {
|
|
|
|
let files = blocks_regex
|
2021-07-30 09:03:41 -04:00
|
|
|
.captures_iter(source)
|
2021-07-29 15:03:06 -04:00
|
|
|
.filter_map(|block| {
|
2022-11-17 20:59:10 -05:00
|
|
|
block.get(1)?;
|
2022-03-10 20:14:32 -05:00
|
|
|
|
2021-08-14 06:33:58 -04:00
|
|
|
let maybe_attributes: Option<Vec<_>> = block
|
2021-07-29 15:03:06 -04:00
|
|
|
.get(1)
|
2021-08-14 06:33:58 -04:00
|
|
|
.map(|attributes| attributes.as_str().split(' ').collect());
|
|
|
|
|
|
|
|
let file_media_type = if let Some(attributes) = maybe_attributes {
|
|
|
|
if attributes.contains(&"ignore") {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2022-08-21 13:31:14 -04:00
|
|
|
match attributes.first() {
|
2021-08-14 06:33:58 -04:00
|
|
|
Some(&"js") => MediaType::JavaScript,
|
2022-03-07 20:10:40 -05:00
|
|
|
Some(&"javascript") => MediaType::JavaScript,
|
2021-11-01 16:22:27 -04:00
|
|
|
Some(&"mjs") => MediaType::Mjs,
|
|
|
|
Some(&"cjs") => MediaType::Cjs,
|
2021-08-14 06:33:58 -04:00
|
|
|
Some(&"jsx") => MediaType::Jsx,
|
|
|
|
Some(&"ts") => MediaType::TypeScript,
|
2022-03-07 20:10:40 -05:00
|
|
|
Some(&"typescript") => MediaType::TypeScript,
|
2021-11-01 16:22:27 -04:00
|
|
|
Some(&"mts") => MediaType::Mts,
|
|
|
|
Some(&"cts") => MediaType::Cts,
|
2021-08-14 06:33:58 -04:00
|
|
|
Some(&"tsx") => MediaType::Tsx,
|
2021-07-29 15:03:06 -04:00
|
|
|
_ => MediaType::Unknown,
|
|
|
|
}
|
|
|
|
} else {
|
2021-09-07 10:39:32 -04:00
|
|
|
media_type
|
2021-07-29 15:03:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
if file_media_type == MediaType::Unknown {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let line_offset = source[0..block.get(0).unwrap().start()]
|
|
|
|
.chars()
|
|
|
|
.filter(|c| *c == '\n')
|
|
|
|
.count();
|
|
|
|
|
|
|
|
let line_count = block.get(0).unwrap().as_str().split('\n').count();
|
|
|
|
|
|
|
|
let body = block.get(2).unwrap();
|
|
|
|
let text = body.as_str();
|
|
|
|
|
|
|
|
// TODO(caspervonb) generate an inline source map
|
|
|
|
let mut file_source = String::new();
|
2021-07-30 09:03:41 -04:00
|
|
|
for line in lines_regex.captures_iter(text) {
|
2021-07-29 15:03:06 -04:00
|
|
|
let text = line.get(1).unwrap();
|
2022-07-01 09:28:06 -04:00
|
|
|
writeln!(file_source, "{}", text.as_str()).unwrap();
|
2021-07-29 15:03:06 -04:00
|
|
|
}
|
|
|
|
|
2023-03-21 11:46:40 -04:00
|
|
|
let file_specifier = ModuleSpecifier::parse(&format!(
|
|
|
|
"{}${}-{}",
|
|
|
|
specifier,
|
|
|
|
file_line_index + line_offset + 1,
|
|
|
|
file_line_index + line_offset + line_count + 1,
|
|
|
|
))
|
2021-07-29 15:03:06 -04:00
|
|
|
.unwrap();
|
2023-03-21 11:46:40 -04:00
|
|
|
let file_specifier =
|
|
|
|
mapped_specifier_for_tsc(&file_specifier, file_media_type)
|
|
|
|
.map(|s| ModuleSpecifier::parse(&s).unwrap())
|
|
|
|
.unwrap_or(file_specifier);
|
2021-07-29 15:03:06 -04:00
|
|
|
|
|
|
|
Some(File {
|
|
|
|
specifier: file_specifier,
|
2021-09-02 11:38:19 -04:00
|
|
|
maybe_headers: None,
|
2024-01-31 22:15:22 -05:00
|
|
|
source: file_source.into_bytes().into(),
|
2021-07-29 15:03:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
Ok(files)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn extract_files_from_source_comments(
|
|
|
|
specifier: &ModuleSpecifier,
|
2022-05-20 16:40:55 -04:00
|
|
|
source: Arc<str>,
|
2021-09-07 10:39:32 -04:00
|
|
|
media_type: MediaType,
|
2021-07-29 15:03:06 -04:00
|
|
|
) -> Result<Vec<File>, AnyError> {
|
2021-09-07 10:39:32 -04:00
|
|
|
let parsed_source = deno_ast::parse_module(deno_ast::ParseParams {
|
2024-02-08 20:40:26 -05:00
|
|
|
specifier: specifier.clone(),
|
2022-05-20 16:40:55 -04:00
|
|
|
text_info: deno_ast::SourceTextInfo::new(source),
|
2021-09-07 10:39:32 -04:00
|
|
|
media_type,
|
|
|
|
capture_tokens: false,
|
|
|
|
maybe_syntax: None,
|
2021-10-12 09:58:04 -04:00
|
|
|
scope_analysis: false,
|
2021-09-07 10:39:32 -04:00
|
|
|
})?;
|
|
|
|
let comments = parsed_source.comments().get_vec();
|
2023-04-12 21:08:01 -04:00
|
|
|
let blocks_regex = lazy_regex::regex!(r"```([^\r\n]*)\r?\n([\S\s]*?)```");
|
|
|
|
let lines_regex = lazy_regex::regex!(r"(?:\* ?)(?:\# ?)?(.*)");
|
2021-07-29 15:03:06 -04:00
|
|
|
|
|
|
|
let files = comments
|
|
|
|
.iter()
|
|
|
|
.filter(|comment| {
|
|
|
|
if comment.kind != CommentKind::Block || !comment.text.starts_with('*') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
})
|
|
|
|
.flat_map(|comment| {
|
|
|
|
extract_files_from_regex_blocks(
|
2022-01-13 11:58:00 -05:00
|
|
|
specifier,
|
2021-07-29 15:03:06 -04:00
|
|
|
&comment.text,
|
2021-07-30 09:03:41 -04:00
|
|
|
media_type,
|
2022-05-20 16:40:55 -04:00
|
|
|
parsed_source.text_info().line_index(comment.start()),
|
2023-04-12 21:08:01 -04:00
|
|
|
blocks_regex,
|
|
|
|
lines_regex,
|
2021-07-29 15:03:06 -04:00
|
|
|
)
|
|
|
|
})
|
|
|
|
.flatten()
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
Ok(files)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn extract_files_from_fenced_blocks(
|
|
|
|
specifier: &ModuleSpecifier,
|
|
|
|
source: &str,
|
2021-09-07 10:39:32 -04:00
|
|
|
media_type: MediaType,
|
2021-07-29 15:03:06 -04:00
|
|
|
) -> Result<Vec<File>, AnyError> {
|
2022-03-10 20:14:32 -05:00
|
|
|
// The pattern matches code blocks as well as anything in HTML comment syntax,
|
|
|
|
// but it stores the latter without any capturing groups. This way, a simple
|
|
|
|
// check can be done to see if a block is inside a comment (and skip typechecking)
|
|
|
|
// or not by checking for the presence of capturing groups in the matches.
|
|
|
|
let blocks_regex =
|
2023-04-12 21:08:01 -04:00
|
|
|
lazy_regex::regex!(r"(?s)<!--.*?-->|```([^\r\n]*)\r?\n([\S\s]*?)```");
|
|
|
|
let lines_regex = lazy_regex::regex!(r"(?:\# ?)?(.*)");
|
2021-07-29 15:03:06 -04:00
|
|
|
|
|
|
|
extract_files_from_regex_blocks(
|
2022-01-13 11:58:00 -05:00
|
|
|
specifier,
|
2021-07-30 09:03:41 -04:00
|
|
|
source,
|
|
|
|
media_type,
|
2022-01-13 11:58:00 -05:00
|
|
|
/* file line index */ 0,
|
2023-04-12 21:08:01 -04:00
|
|
|
blocks_regex,
|
|
|
|
lines_regex,
|
2021-07-29 15:03:06 -04:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn fetch_inline_files(
|
2023-04-30 16:51:31 -04:00
|
|
|
file_fetcher: &FileFetcher,
|
2021-07-29 15:03:06 -04:00
|
|
|
specifiers: Vec<ModuleSpecifier>,
|
|
|
|
) -> Result<Vec<File>, AnyError> {
|
|
|
|
let mut files = Vec::new();
|
|
|
|
for specifier in specifiers {
|
2023-01-07 11:25:34 -05:00
|
|
|
let fetch_permissions = PermissionsContainer::allow_all();
|
2024-01-31 22:15:22 -05:00
|
|
|
let file = file_fetcher
|
|
|
|
.fetch(&specifier, fetch_permissions)
|
|
|
|
.await?
|
|
|
|
.into_text_decoded()?;
|
2021-07-29 15:03:06 -04:00
|
|
|
|
|
|
|
let inline_files = if file.media_type == MediaType::Unknown {
|
|
|
|
extract_files_from_fenced_blocks(
|
|
|
|
&file.specifier,
|
|
|
|
&file.source,
|
2021-09-07 10:39:32 -04:00
|
|
|
file.media_type,
|
2021-07-29 15:03:06 -04:00
|
|
|
)
|
|
|
|
} else {
|
|
|
|
extract_files_from_source_comments(
|
|
|
|
&file.specifier,
|
2023-01-13 16:39:19 -05:00
|
|
|
file.source,
|
2021-09-07 10:39:32 -04:00
|
|
|
file.media_type,
|
2021-07-29 15:03:06 -04:00
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
files.extend(inline_files?);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(files)
|
|
|
|
}
|
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
/// Type check a collection of module and document specifiers.
|
2022-03-29 18:59:27 -04:00
|
|
|
pub async fn check_specifiers(
|
2023-04-30 16:51:31 -04:00
|
|
|
cli_options: &CliOptions,
|
|
|
|
file_fetcher: &FileFetcher,
|
|
|
|
module_load_preparer: &ModuleLoadPreparer,
|
2021-08-26 15:21:58 -04:00
|
|
|
specifiers: Vec<(ModuleSpecifier, TestMode)>,
|
2021-07-22 07:34:29 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2023-04-30 16:51:31 -04:00
|
|
|
let lib = cli_options.ts_type_lib_window();
|
2021-08-26 15:21:58 -04:00
|
|
|
let inline_files = fetch_inline_files(
|
2023-04-30 16:51:31 -04:00
|
|
|
file_fetcher,
|
2021-08-26 15:21:58 -04:00
|
|
|
specifiers
|
|
|
|
.iter()
|
|
|
|
.filter_map(|(specifier, mode)| {
|
|
|
|
if *mode != TestMode::Executable {
|
|
|
|
Some(specifier.clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect(),
|
|
|
|
)
|
|
|
|
.await?;
|
2021-07-05 21:20:33 -04:00
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
if !inline_files.is_empty() {
|
|
|
|
let specifiers = inline_files
|
|
|
|
.iter()
|
2022-03-10 20:33:02 -05:00
|
|
|
.map(|file| file.specifier.clone())
|
2021-08-26 15:21:58 -04:00
|
|
|
.collect();
|
2021-05-10 19:54:39 -04:00
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
for file in inline_files {
|
2024-02-10 10:02:31 -05:00
|
|
|
file_fetcher.insert_memory_files(file);
|
2021-05-10 19:54:39 -04:00
|
|
|
}
|
|
|
|
|
2023-04-30 16:51:31 -04:00
|
|
|
module_load_preparer
|
2023-04-14 16:22:33 -04:00
|
|
|
.prepare_module_load(
|
|
|
|
specifiers,
|
|
|
|
false,
|
|
|
|
lib,
|
|
|
|
PermissionsContainer::new(Permissions::allow_all()),
|
|
|
|
)
|
|
|
|
.await?;
|
2021-05-10 19:54:39 -04:00
|
|
|
}
|
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
let module_specifiers = specifiers
|
2023-01-13 16:39:19 -05:00
|
|
|
.into_iter()
|
2021-08-26 15:21:58 -04:00
|
|
|
.filter_map(|(specifier, mode)| {
|
2023-01-13 16:39:19 -05:00
|
|
|
if mode != TestMode::Documentation {
|
|
|
|
Some(specifier)
|
2021-08-26 15:21:58 -04:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
2021-08-12 14:10:14 -04:00
|
|
|
|
2023-04-30 16:51:31 -04:00
|
|
|
module_load_preparer
|
2023-04-14 16:22:33 -04:00
|
|
|
.prepare_module_load(
|
|
|
|
module_specifiers,
|
|
|
|
false,
|
|
|
|
lib,
|
|
|
|
PermissionsContainer::allow_all(),
|
|
|
|
)
|
|
|
|
.await?;
|
2021-04-28 14:17:04 -04:00
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
Ok(())
|
|
|
|
}
|
2021-04-28 14:17:04 -04:00
|
|
|
|
2023-04-12 18:51:04 -04:00
|
|
|
static HAS_TEST_RUN_SIGINT_HANDLER: AtomicBool = AtomicBool::new(false);
|
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
/// Test a collection of specifiers with test modes concurrently.
|
|
|
|
async fn test_specifiers(
|
2023-04-27 10:05:20 -04:00
|
|
|
worker_factory: Arc<CliMainWorkerFactory>,
|
2023-01-13 16:39:19 -05:00
|
|
|
permissions: &Permissions,
|
2023-04-13 13:43:23 -04:00
|
|
|
specifiers: Vec<ModuleSpecifier>,
|
2023-04-27 10:05:20 -04:00
|
|
|
options: TestSpecifiersOptions,
|
2021-08-26 15:21:58 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2023-04-27 10:05:20 -04:00
|
|
|
let specifiers = if let Some(seed) = options.specifier.shuffle {
|
2021-08-26 15:21:58 -04:00
|
|
|
let mut rng = SmallRng::seed_from_u64(seed);
|
2023-04-13 13:43:23 -04:00
|
|
|
let mut specifiers = specifiers;
|
|
|
|
specifiers.sort();
|
|
|
|
specifiers.shuffle(&mut rng);
|
|
|
|
specifiers
|
2021-08-26 15:21:58 -04:00
|
|
|
} else {
|
2023-04-13 13:43:23 -04:00
|
|
|
specifiers
|
2021-08-26 15:21:58 -04:00
|
|
|
};
|
2021-04-28 14:17:04 -04:00
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
let (sender, receiver) = unbounded_channel::<TestEvent>();
|
2022-05-01 14:44:55 -04:00
|
|
|
let sender = TestEventSender::new(sender);
|
2021-12-30 11:18:30 -05:00
|
|
|
let concurrent_jobs = options.concurrent_jobs;
|
2021-04-28 14:17:04 -04:00
|
|
|
|
2023-03-25 15:32:11 -04:00
|
|
|
let sender_ = sender.downgrade();
|
2023-05-14 17:40:01 -04:00
|
|
|
let sigint_handler_handle = spawn(async move {
|
2023-03-25 15:32:11 -04:00
|
|
|
signal::ctrl_c().await.unwrap();
|
|
|
|
sender_.upgrade().map(|s| s.send(TestEvent::Sigint).ok());
|
|
|
|
});
|
2023-04-12 18:51:04 -04:00
|
|
|
HAS_TEST_RUN_SIGINT_HANDLER.store(true, Ordering::Relaxed);
|
2023-10-05 06:25:15 -04:00
|
|
|
let reporter = get_test_reporter(&options);
|
2023-09-15 11:46:48 -04:00
|
|
|
let fail_fast_tracker = FailFastTracker::new(options.fail_fast);
|
2023-03-25 15:32:11 -04:00
|
|
|
|
2023-04-13 13:43:23 -04:00
|
|
|
let join_handles = specifiers.into_iter().map(move |specifier| {
|
2023-04-27 10:05:20 -04:00
|
|
|
let worker_factory = worker_factory.clone();
|
2023-04-13 13:43:23 -04:00
|
|
|
let permissions = permissions.clone();
|
|
|
|
let sender = sender.clone();
|
2023-09-15 11:46:48 -04:00
|
|
|
let fail_fast_tracker = fail_fast_tracker.clone();
|
2023-04-27 10:05:20 -04:00
|
|
|
let specifier_options = options.specifier.clone();
|
2023-05-14 17:40:01 -04:00
|
|
|
spawn_blocking(move || {
|
|
|
|
create_and_run_current_thread(test_specifier(
|
|
|
|
worker_factory,
|
2023-04-13 13:43:23 -04:00
|
|
|
permissions,
|
|
|
|
specifier,
|
|
|
|
sender.clone(),
|
|
|
|
fail_fast_tracker,
|
2023-05-14 17:40:01 -04:00
|
|
|
specifier_options,
|
2023-04-13 13:43:23 -04:00
|
|
|
))
|
|
|
|
})
|
|
|
|
});
|
2021-07-22 07:34:29 -04:00
|
|
|
let join_stream = stream::iter(join_handles)
|
2021-08-23 06:35:38 -04:00
|
|
|
.buffer_unordered(concurrent_jobs.get())
|
2021-04-28 14:17:04 -04:00
|
|
|
.collect::<Vec<Result<Result<(), AnyError>, tokio::task::JoinError>>>();
|
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
let handler = spawn(async move { report_tests(receiver, reporter).await.0 });
|
2022-05-09 05:44:50 -04:00
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
let (join_results, result) = future::join(join_stream, handler).await;
|
|
|
|
sigint_handler_handle.abort();
|
|
|
|
HAS_TEST_RUN_SIGINT_HANDLER.store(false, Ordering::Relaxed);
|
|
|
|
for join_result in join_results {
|
|
|
|
join_result??;
|
|
|
|
}
|
|
|
|
result??;
|
2021-10-11 09:45:02 -04:00
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
Ok(())
|
|
|
|
}
|
2021-11-15 10:20:37 -05:00
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
/// Gives receiver back in case it was ended with `TestEvent::ForceEndReport`.
|
|
|
|
pub async fn report_tests(
|
|
|
|
mut receiver: UnboundedReceiver<TestEvent>,
|
|
|
|
mut reporter: Box<dyn TestReporter>,
|
|
|
|
) -> (Result<(), AnyError>, UnboundedReceiver<TestEvent>) {
|
|
|
|
let mut tests = IndexMap::new();
|
|
|
|
let mut test_steps = IndexMap::new();
|
|
|
|
let mut tests_started = HashSet::new();
|
|
|
|
let mut tests_with_result = HashSet::new();
|
|
|
|
let mut start_time = None;
|
|
|
|
let mut had_plan = false;
|
|
|
|
let mut used_only = false;
|
|
|
|
let mut failed = false;
|
|
|
|
|
|
|
|
while let Some(event) = receiver.recv().await {
|
|
|
|
match event {
|
|
|
|
TestEvent::Register(description) => {
|
|
|
|
reporter.report_register(&description);
|
|
|
|
tests.insert(description.id, description);
|
|
|
|
}
|
|
|
|
TestEvent::Plan(plan) => {
|
|
|
|
if !had_plan {
|
|
|
|
start_time = Some(Instant::now());
|
|
|
|
had_plan = true;
|
|
|
|
}
|
|
|
|
if plan.used_only {
|
|
|
|
used_only = true;
|
|
|
|
}
|
|
|
|
reporter.report_plan(&plan);
|
|
|
|
}
|
|
|
|
TestEvent::Wait(id) => {
|
|
|
|
if tests_started.insert(id) {
|
|
|
|
reporter.report_wait(tests.get(&id).unwrap());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TestEvent::Output(output) => {
|
|
|
|
reporter.report_output(&output);
|
|
|
|
}
|
|
|
|
TestEvent::Result(id, result, elapsed) => {
|
|
|
|
if tests_with_result.insert(id) {
|
|
|
|
match result {
|
|
|
|
TestResult::Failed(_) | TestResult::Cancelled => {
|
|
|
|
failed = true;
|
2023-07-26 18:12:35 -04:00
|
|
|
}
|
2023-10-05 06:25:15 -04:00
|
|
|
_ => (),
|
2021-10-11 09:45:02 -04:00
|
|
|
}
|
2023-10-05 06:25:15 -04:00
|
|
|
reporter.report_result(tests.get(&id).unwrap(), &result, elapsed);
|
2021-07-14 15:05:16 -04:00
|
|
|
}
|
2021-04-28 14:17:04 -04:00
|
|
|
}
|
2023-10-05 06:25:15 -04:00
|
|
|
TestEvent::UncaughtError(origin, error) => {
|
|
|
|
failed = true;
|
|
|
|
reporter.report_uncaught_error(&origin, error);
|
2023-07-26 18:12:35 -04:00
|
|
|
}
|
2023-10-05 06:25:15 -04:00
|
|
|
TestEvent::StepRegister(description) => {
|
|
|
|
reporter.report_step_register(&description);
|
|
|
|
test_steps.insert(description.id, description);
|
2021-07-22 07:34:29 -04:00
|
|
|
}
|
2023-10-05 06:25:15 -04:00
|
|
|
TestEvent::StepWait(id) => {
|
|
|
|
if tests_started.insert(id) {
|
|
|
|
reporter.report_step_wait(test_steps.get(&id).unwrap());
|
|
|
|
}
|
2021-04-28 14:17:04 -04:00
|
|
|
}
|
2023-10-05 06:25:15 -04:00
|
|
|
TestEvent::StepResult(id, result, duration) => {
|
|
|
|
if tests_with_result.insert(id) {
|
|
|
|
reporter.report_step_result(
|
|
|
|
test_steps.get(&id).unwrap(),
|
|
|
|
&result,
|
|
|
|
duration,
|
|
|
|
&tests,
|
|
|
|
&test_steps,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TestEvent::ForceEndReport => {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
TestEvent::Sigint => {
|
|
|
|
let elapsed = start_time
|
|
|
|
.map(|t| Instant::now().duration_since(t))
|
|
|
|
.unwrap_or_default();
|
|
|
|
reporter.report_sigint(
|
|
|
|
&tests_started
|
|
|
|
.difference(&tests_with_result)
|
|
|
|
.copied()
|
|
|
|
.collect(),
|
|
|
|
&tests,
|
|
|
|
&test_steps,
|
|
|
|
);
|
|
|
|
if let Err(err) = reporter.flush_report(&elapsed, &tests, &test_steps) {
|
|
|
|
eprint!("Test reporter failed to flush: {}", err)
|
|
|
|
}
|
|
|
|
std::process::exit(130);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-28 14:17:04 -04:00
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
let elapsed = start_time
|
|
|
|
.map(|t| Instant::now().duration_since(t))
|
|
|
|
.unwrap_or_default();
|
|
|
|
reporter.report_summary(&elapsed, &tests, &test_steps);
|
|
|
|
if let Err(err) = reporter.flush_report(&elapsed, &tests, &test_steps) {
|
|
|
|
return (
|
|
|
|
Err(generic_error(format!(
|
|
|
|
"Test reporter failed to flush: {}",
|
|
|
|
err
|
|
|
|
))),
|
|
|
|
receiver,
|
|
|
|
);
|
|
|
|
}
|
2020-10-14 09:19:13 -04:00
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
if used_only {
|
|
|
|
return (
|
|
|
|
Err(generic_error(
|
|
|
|
"Test failed because the \"only\" option was used",
|
|
|
|
)),
|
|
|
|
receiver,
|
|
|
|
);
|
2021-04-28 14:17:04 -04:00
|
|
|
}
|
2021-07-22 07:34:29 -04:00
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
if failed {
|
|
|
|
return (Err(generic_error("Test failed")), receiver);
|
|
|
|
}
|
2021-07-22 07:34:29 -04:00
|
|
|
|
2023-10-05 06:25:15 -04:00
|
|
|
(Ok(()), receiver)
|
2020-02-11 06:01:56 -05:00
|
|
|
}
|
2021-08-26 15:21:58 -04:00
|
|
|
|
2024-01-08 12:18:42 -05:00
|
|
|
fn is_supported_test_path_predicate(
|
|
|
|
path: &Path,
|
|
|
|
patterns: &FilePatterns,
|
|
|
|
) -> bool {
|
|
|
|
if !is_script_ext(path) {
|
|
|
|
false
|
|
|
|
} else if has_supported_test_path_name(path) {
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
// allow someone to explicitly specify a path
|
|
|
|
let matches_exact_path_or_pattern = patterns
|
|
|
|
.include
|
|
|
|
.as_ref()
|
|
|
|
.map(|p| {
|
|
|
|
p.inner().iter().any(|p| match p {
|
|
|
|
PathOrPattern::Path(p) => p == path,
|
2024-01-15 19:15:39 -05:00
|
|
|
PathOrPattern::RemoteUrl(_) => true,
|
2024-01-08 12:18:42 -05:00
|
|
|
PathOrPattern::Pattern(p) => p.matches_path(path),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.unwrap_or(false);
|
|
|
|
matches_exact_path_or_pattern
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-28 17:28:54 -05:00
|
|
|
/// Checks if the path has a basename and extension Deno supports for tests.
|
2023-04-19 17:30:52 -04:00
|
|
|
pub(crate) fn is_supported_test_path(path: &Path) -> bool {
|
2024-01-08 12:18:42 -05:00
|
|
|
has_supported_test_path_name(path) && is_script_ext(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn has_supported_test_path_name(path: &Path) -> bool {
|
2022-11-28 17:28:54 -05:00
|
|
|
if let Some(name) = path.file_stem() {
|
|
|
|
let basename = name.to_string_lossy();
|
2024-01-08 12:18:42 -05:00
|
|
|
basename.ends_with("_test")
|
2022-11-28 17:28:54 -05:00
|
|
|
|| basename.ends_with(".test")
|
2024-01-08 12:18:42 -05:00
|
|
|
|| basename == "test"
|
2022-11-28 17:28:54 -05:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks if the path has an extension Deno supports for tests.
|
|
|
|
fn is_supported_test_ext(path: &Path) -> bool {
|
|
|
|
if let Some(ext) = get_extension(path) {
|
|
|
|
matches!(
|
|
|
|
ext.as_str(),
|
|
|
|
"ts"
|
|
|
|
| "tsx"
|
|
|
|
| "js"
|
|
|
|
| "jsx"
|
|
|
|
| "mjs"
|
|
|
|
| "mts"
|
|
|
|
| "cjs"
|
|
|
|
| "cts"
|
|
|
|
| "md"
|
|
|
|
| "mkd"
|
|
|
|
| "mkdn"
|
|
|
|
| "mdwn"
|
|
|
|
| "mdown"
|
|
|
|
| "markdown"
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
/// Collects specifiers marking them with the appropriate test mode while maintaining the natural
|
|
|
|
/// input order.
|
|
|
|
///
|
|
|
|
/// - Specifiers matching the `is_supported_test_ext` predicate are marked as
|
|
|
|
/// `TestMode::Documentation`.
|
|
|
|
/// - Specifiers matching the `is_supported_test_path` are marked as `TestMode::Executable`.
|
|
|
|
/// - Specifiers matching both predicates are marked as `TestMode::Both`
|
|
|
|
fn collect_specifiers_with_test_mode(
|
2024-01-08 12:18:42 -05:00
|
|
|
files: FilePatterns,
|
2023-01-13 16:39:19 -05:00
|
|
|
include_inline: &bool,
|
2021-08-26 15:21:58 -04:00
|
|
|
) -> Result<Vec<(ModuleSpecifier, TestMode)>, AnyError> {
|
2024-01-08 12:18:42 -05:00
|
|
|
// todo(dsherret): there's no need to collect twice as it's slow
|
|
|
|
let module_specifiers =
|
|
|
|
collect_specifiers(files.clone(), is_supported_test_path_predicate)?;
|
2021-08-26 15:21:58 -04:00
|
|
|
|
2023-01-13 16:39:19 -05:00
|
|
|
if *include_inline {
|
2024-01-08 12:18:42 -05:00
|
|
|
return collect_specifiers(files, |p, _| is_supported_test_ext(p)).map(
|
2021-08-26 15:21:58 -04:00
|
|
|
|specifiers| {
|
|
|
|
specifiers
|
|
|
|
.into_iter()
|
|
|
|
.map(|specifier| {
|
|
|
|
let mode = if module_specifiers.contains(&specifier) {
|
|
|
|
TestMode::Both
|
|
|
|
} else {
|
|
|
|
TestMode::Documentation
|
|
|
|
};
|
|
|
|
|
|
|
|
(specifier, mode)
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
let specifiers_with_mode = module_specifiers
|
|
|
|
.into_iter()
|
|
|
|
.map(|specifier| (specifier, TestMode::Executable))
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
Ok(specifiers_with_mode)
|
|
|
|
}
|
|
|
|
|
2021-10-10 17:26:22 -04:00
|
|
|
/// Collects module and document specifiers with test modes via
|
|
|
|
/// `collect_specifiers_with_test_mode` which are then pre-fetched and adjusted
|
|
|
|
/// based on the media type.
|
2021-08-26 15:21:58 -04:00
|
|
|
///
|
2021-10-10 17:26:22 -04:00
|
|
|
/// Specifiers that do not have a known media type that can be executed as a
|
|
|
|
/// module are marked as `TestMode::Documentation`. Type definition files
|
|
|
|
/// cannot be run, and therefore need to be marked as `TestMode::Documentation`
|
|
|
|
/// as well.
|
2021-08-26 15:21:58 -04:00
|
|
|
async fn fetch_specifiers_with_test_mode(
|
2023-04-30 16:51:31 -04:00
|
|
|
file_fetcher: &FileFetcher,
|
2024-01-08 12:18:42 -05:00
|
|
|
files: FilePatterns,
|
2023-01-13 16:39:19 -05:00
|
|
|
doc: &bool,
|
2021-08-26 15:21:58 -04:00
|
|
|
) -> Result<Vec<(ModuleSpecifier, TestMode)>, AnyError> {
|
2023-01-07 15:22:09 -05:00
|
|
|
let mut specifiers_with_mode = collect_specifiers_with_test_mode(files, doc)?;
|
2023-01-13 16:39:19 -05:00
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
for (specifier, mode) in &mut specifiers_with_mode {
|
2023-04-30 16:51:31 -04:00
|
|
|
let file = file_fetcher
|
2023-01-07 11:25:34 -05:00
|
|
|
.fetch(specifier, PermissionsContainer::allow_all())
|
2021-08-26 15:21:58 -04:00
|
|
|
.await?;
|
|
|
|
|
2024-01-31 22:15:22 -05:00
|
|
|
let (media_type, _) = file.resolve_media_type_and_charset();
|
|
|
|
if matches!(media_type, MediaType::Unknown | MediaType::Dts) {
|
2021-08-26 15:21:58 -04:00
|
|
|
*mode = TestMode::Documentation
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(specifiers_with_mode)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn run_tests(
|
2023-06-14 18:29:19 -04:00
|
|
|
flags: Flags,
|
|
|
|
test_flags: TestFlags,
|
2021-08-26 15:21:58 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2023-06-14 18:29:19 -04:00
|
|
|
let factory = CliFactory::from_flags(flags).await?;
|
2023-05-01 14:35:23 -04:00
|
|
|
let cli_options = factory.cli_options();
|
2023-06-14 18:29:19 -04:00
|
|
|
let test_options = cli_options.resolve_test_options(test_flags)?;
|
2023-05-01 14:35:23 -04:00
|
|
|
let file_fetcher = factory.file_fetcher()?;
|
|
|
|
let module_load_preparer = factory.module_load_preparer().await?;
|
2023-01-07 11:25:34 -05:00
|
|
|
// Various test files should not share the same permissions in terms of
|
|
|
|
// `PermissionsContainer` - otherwise granting/revoking permissions in one
|
|
|
|
// file would have impact on other files, which is undesirable.
|
2022-06-29 11:51:11 -04:00
|
|
|
let permissions =
|
2023-05-01 14:35:23 -04:00
|
|
|
Permissions::from_options(&cli_options.permissions_options())?;
|
|
|
|
let log_level = cli_options.log_level();
|
2021-08-26 15:21:58 -04:00
|
|
|
|
2023-01-13 16:39:19 -05:00
|
|
|
let specifiers_with_mode = fetch_specifiers_with_test_mode(
|
2023-05-01 14:35:23 -04:00
|
|
|
file_fetcher,
|
2024-01-08 12:18:42 -05:00
|
|
|
test_options.files.clone(),
|
2023-01-13 16:39:19 -05:00
|
|
|
&test_options.doc,
|
|
|
|
)
|
|
|
|
.await?;
|
2023-01-07 15:22:09 -05:00
|
|
|
|
|
|
|
if !test_options.allow_none && specifiers_with_mode.is_empty() {
|
2021-08-26 15:21:58 -04:00
|
|
|
return Err(generic_error("No test modules found"));
|
|
|
|
}
|
|
|
|
|
2023-04-30 16:51:31 -04:00
|
|
|
check_specifiers(
|
2023-05-01 14:35:23 -04:00
|
|
|
cli_options,
|
|
|
|
file_fetcher,
|
|
|
|
module_load_preparer,
|
2023-04-30 16:51:31 -04:00
|
|
|
specifiers_with_mode.clone(),
|
|
|
|
)
|
|
|
|
.await?;
|
2021-08-26 15:21:58 -04:00
|
|
|
|
2023-01-07 15:22:09 -05:00
|
|
|
if test_options.no_run {
|
2021-08-26 15:21:58 -04:00
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2023-05-01 14:35:23 -04:00
|
|
|
let worker_factory =
|
|
|
|
Arc::new(factory.create_cli_main_worker_factory().await?);
|
2023-04-27 10:05:20 -04:00
|
|
|
|
2021-08-26 15:21:58 -04:00
|
|
|
test_specifiers(
|
2023-04-27 10:05:20 -04:00
|
|
|
worker_factory,
|
2023-01-13 16:39:19 -05:00
|
|
|
&permissions,
|
2023-04-13 13:43:23 -04:00
|
|
|
specifiers_with_mode
|
|
|
|
.into_iter()
|
|
|
|
.filter_map(|(s, m)| match m {
|
|
|
|
TestMode::Documentation => None,
|
|
|
|
_ => Some(s),
|
|
|
|
})
|
|
|
|
.collect(),
|
2023-04-27 10:05:20 -04:00
|
|
|
TestSpecifiersOptions {
|
2023-01-07 15:22:09 -05:00
|
|
|
concurrent_jobs: test_options.concurrent_jobs,
|
|
|
|
fail_fast: test_options.fail_fast,
|
2023-04-27 10:05:20 -04:00
|
|
|
log_level,
|
2023-09-06 08:54:21 -04:00
|
|
|
filter: test_options.filter.is_some(),
|
2023-08-02 12:38:10 -04:00
|
|
|
reporter: test_options.reporter,
|
2023-08-02 22:05:34 -04:00
|
|
|
junit_path: test_options.junit_path,
|
2023-04-27 10:05:20 -04:00
|
|
|
specifier: TestSpecifierOptions {
|
|
|
|
filter: TestFilter::from_flag(&test_options.filter),
|
|
|
|
shuffle: test_options.shuffle,
|
|
|
|
trace_ops: test_options.trace_ops,
|
|
|
|
},
|
2021-12-30 11:18:30 -05:00
|
|
|
},
|
2021-08-26 15:21:58 -04:00
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn run_tests_with_watch(
|
2023-06-14 18:29:19 -04:00
|
|
|
flags: Flags,
|
|
|
|
test_flags: TestFlags,
|
2021-08-26 15:21:58 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2023-04-12 18:51:04 -04:00
|
|
|
// On top of the sigint handlers which are added and unbound for each test
|
|
|
|
// run, a process-scoped basic exit handler is required due to a tokio
|
|
|
|
// limitation where it doesn't unbind its own handler for the entire process
|
|
|
|
// once a user adds one.
|
2023-05-14 17:40:01 -04:00
|
|
|
spawn(async move {
|
2023-04-12 18:51:04 -04:00
|
|
|
loop {
|
|
|
|
signal::ctrl_c().await.unwrap();
|
|
|
|
if !HAS_TEST_RUN_SIGINT_HANDLER.load(Ordering::Relaxed) {
|
|
|
|
std::process::exit(130);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-01-31 11:39:39 -05:00
|
|
|
file_watcher::watch_func(
|
2023-06-14 18:29:19 -04:00
|
|
|
flags,
|
2023-10-30 20:25:58 -04:00
|
|
|
file_watcher::PrintConfig::new(
|
|
|
|
"Test",
|
|
|
|
test_flags
|
2023-06-15 13:09:37 -04:00
|
|
|
.watch
|
|
|
|
.as_ref()
|
|
|
|
.map(|w| !w.no_clear_screen)
|
|
|
|
.unwrap_or(true),
|
2023-10-30 20:25:58 -04:00
|
|
|
),
|
2023-10-19 01:05:00 -04:00
|
|
|
move |flags, watcher_communicator, changed_paths| {
|
2023-06-14 18:29:19 -04:00
|
|
|
let test_flags = test_flags.clone();
|
|
|
|
Ok(async move {
|
|
|
|
let factory = CliFactoryBuilder::new()
|
2023-10-19 01:05:00 -04:00
|
|
|
.build_from_flags_for_watcher(flags, watcher_communicator.clone())
|
2023-06-14 18:29:19 -04:00
|
|
|
.await?;
|
|
|
|
let cli_options = factory.cli_options();
|
|
|
|
let test_options = cli_options.resolve_test_options(test_flags)?;
|
|
|
|
|
2023-10-19 01:05:00 -04:00
|
|
|
let _ = watcher_communicator.watch_paths(cli_options.watch_paths());
|
2024-01-08 12:18:42 -05:00
|
|
|
if let Some(set) = &test_options.files.include {
|
|
|
|
let watch_paths = set.base_paths();
|
|
|
|
if !watch_paths.is_empty() {
|
|
|
|
let _ = watcher_communicator.watch_paths(watch_paths);
|
|
|
|
}
|
2023-09-08 10:04:45 -04:00
|
|
|
}
|
2023-06-14 18:29:19 -04:00
|
|
|
|
|
|
|
let graph_kind = cli_options.type_check_mode().as_graph_kind();
|
|
|
|
let log_level = cli_options.log_level();
|
|
|
|
let cli_options = cli_options.clone();
|
2024-02-20 16:29:57 -05:00
|
|
|
let module_graph_creator = factory.module_graph_creator().await?;
|
2023-06-14 18:29:19 -04:00
|
|
|
let file_fetcher = factory.file_fetcher()?;
|
|
|
|
let test_modules = if test_options.doc {
|
2024-01-08 12:18:42 -05:00
|
|
|
collect_specifiers(test_options.files.clone(), |p, _| {
|
|
|
|
is_supported_test_ext(p)
|
|
|
|
})
|
2023-06-14 18:29:19 -04:00
|
|
|
} else {
|
2024-01-08 12:18:42 -05:00
|
|
|
collect_specifiers(
|
|
|
|
test_options.files.clone(),
|
|
|
|
is_supported_test_path_predicate,
|
|
|
|
)
|
2023-06-14 18:29:19 -04:00
|
|
|
}?;
|
2024-01-08 12:18:42 -05:00
|
|
|
|
2023-06-14 18:29:19 -04:00
|
|
|
let permissions =
|
|
|
|
Permissions::from_options(&cli_options.permissions_options())?;
|
2024-02-20 16:29:57 -05:00
|
|
|
let graph = module_graph_creator
|
2023-06-14 18:29:19 -04:00
|
|
|
.create_graph(graph_kind, test_modules.clone())
|
|
|
|
.await?;
|
2023-12-07 15:59:13 -05:00
|
|
|
graph_valid_with_cli_options(
|
|
|
|
&graph,
|
2023-12-08 09:57:06 -05:00
|
|
|
factory.fs().as_ref(),
|
2023-12-07 15:59:13 -05:00
|
|
|
&test_modules,
|
|
|
|
&cli_options,
|
|
|
|
)?;
|
2023-06-14 18:29:19 -04:00
|
|
|
|
|
|
|
let test_modules_to_reload = if let Some(changed_paths) = changed_paths
|
|
|
|
{
|
|
|
|
let mut result = Vec::new();
|
2024-01-08 12:18:42 -05:00
|
|
|
let changed_paths = changed_paths.into_iter().collect::<HashSet<_>>();
|
2023-06-14 18:29:19 -04:00
|
|
|
for test_module_specifier in test_modules {
|
|
|
|
if has_graph_root_local_dependent_changed(
|
|
|
|
&graph,
|
|
|
|
&test_module_specifier,
|
2024-01-08 12:18:42 -05:00
|
|
|
&changed_paths,
|
2023-06-14 18:29:19 -04:00
|
|
|
) {
|
|
|
|
result.push(test_module_specifier.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result
|
|
|
|
} else {
|
|
|
|
test_modules.clone()
|
|
|
|
};
|
|
|
|
|
|
|
|
let worker_factory =
|
|
|
|
Arc::new(factory.create_cli_main_worker_factory().await?);
|
|
|
|
let module_load_preparer = factory.module_load_preparer().await?;
|
|
|
|
let specifiers_with_mode = fetch_specifiers_with_test_mode(
|
|
|
|
file_fetcher,
|
2024-01-08 12:18:42 -05:00
|
|
|
test_options.files.clone(),
|
2023-06-14 18:29:19 -04:00
|
|
|
&test_options.doc,
|
|
|
|
)
|
|
|
|
.await?
|
|
|
|
.into_iter()
|
|
|
|
.filter(|(specifier, _)| test_modules_to_reload.contains(specifier))
|
|
|
|
.collect::<Vec<(ModuleSpecifier, TestMode)>>();
|
|
|
|
|
|
|
|
check_specifiers(
|
|
|
|
&cli_options,
|
|
|
|
file_fetcher,
|
|
|
|
module_load_preparer,
|
|
|
|
specifiers_with_mode.clone(),
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
if test_options.no_run {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
|
|
|
test_specifiers(
|
|
|
|
worker_factory,
|
|
|
|
&permissions,
|
|
|
|
specifiers_with_mode
|
|
|
|
.into_iter()
|
|
|
|
.filter_map(|(s, m)| match m {
|
|
|
|
TestMode::Documentation => None,
|
|
|
|
_ => Some(s),
|
|
|
|
})
|
|
|
|
.collect(),
|
|
|
|
TestSpecifiersOptions {
|
|
|
|
concurrent_jobs: test_options.concurrent_jobs,
|
|
|
|
fail_fast: test_options.fail_fast,
|
|
|
|
log_level,
|
2023-09-06 08:54:21 -04:00
|
|
|
filter: test_options.filter.is_some(),
|
2023-08-02 12:38:10 -04:00
|
|
|
reporter: test_options.reporter,
|
2023-08-02 22:05:34 -04:00
|
|
|
junit_path: test_options.junit_path,
|
2023-06-14 18:29:19 -04:00
|
|
|
specifier: TestSpecifierOptions {
|
|
|
|
filter: TestFilter::from_flag(&test_options.filter),
|
|
|
|
shuffle: test_options.shuffle,
|
|
|
|
trace_ops: test_options.trace_ops,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
})
|
|
|
|
},
|
2022-01-31 11:39:39 -05:00
|
|
|
)
|
|
|
|
.await?;
|
2021-08-26 15:21:58 -04:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-04-26 19:00:04 -04:00
|
|
|
|
2022-12-05 16:17:49 -05:00
|
|
|
/// Tracks failures for the `--fail-fast` argument in
|
|
|
|
/// order to tell when to stop running tests.
|
2023-10-05 06:25:15 -04:00
|
|
|
#[derive(Clone, Default)]
|
2022-12-05 16:17:49 -05:00
|
|
|
pub struct FailFastTracker {
|
|
|
|
max_count: Option<usize>,
|
|
|
|
failure_count: Arc<AtomicUsize>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FailFastTracker {
|
|
|
|
pub fn new(fail_fast: Option<NonZeroUsize>) -> Self {
|
|
|
|
Self {
|
|
|
|
max_count: fail_fast.map(|v| v.into()),
|
|
|
|
failure_count: Default::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn add_failure(&self) -> bool {
|
|
|
|
if let Some(max_count) = &self.max_count {
|
|
|
|
self
|
|
|
|
.failure_count
|
|
|
|
.fetch_add(1, std::sync::atomic::Ordering::SeqCst)
|
|
|
|
>= *max_count
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn should_stop(&self) -> bool {
|
|
|
|
if let Some(max_count) = &self.max_count {
|
|
|
|
self.failure_count.load(std::sync::atomic::Ordering::SeqCst) >= *max_count
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-04 17:01:51 -04:00
|
|
|
#[derive(Clone)]
|
2022-05-01 14:44:55 -04:00
|
|
|
pub struct TestEventSender {
|
2022-04-26 19:00:04 -04:00
|
|
|
sender: UnboundedSender<TestEvent>,
|
2022-05-04 17:01:51 -04:00
|
|
|
stdout_writer: TestOutputPipe,
|
|
|
|
stderr_writer: TestOutputPipe,
|
2022-05-01 14:44:55 -04:00
|
|
|
}
|
2022-04-26 19:00:04 -04:00
|
|
|
|
2022-05-01 14:44:55 -04:00
|
|
|
impl TestEventSender {
|
|
|
|
pub fn new(sender: UnboundedSender<TestEvent>) -> Self {
|
|
|
|
Self {
|
2022-05-04 17:01:51 -04:00
|
|
|
stdout_writer: TestOutputPipe::new(sender.clone()),
|
|
|
|
stderr_writer: TestOutputPipe::new(sender.clone()),
|
2022-05-01 14:44:55 -04:00
|
|
|
sender,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn stdout(&self) -> std::fs::File {
|
2022-05-04 17:01:51 -04:00
|
|
|
self.stdout_writer.as_file()
|
2022-05-01 14:44:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn stderr(&self) -> std::fs::File {
|
2022-05-04 17:01:51 -04:00
|
|
|
self.stderr_writer.as_file()
|
2022-05-01 14:44:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn send(&mut self, message: TestEvent) -> Result<(), AnyError> {
|
|
|
|
// for any event that finishes collecting output, we need to
|
|
|
|
// ensure that the collected stdout and stderr pipes are flushed
|
|
|
|
if matches!(
|
|
|
|
message,
|
|
|
|
TestEvent::Result(_, _, _)
|
|
|
|
| TestEvent::StepWait(_)
|
|
|
|
| TestEvent::StepResult(_, _, _)
|
2022-12-05 16:17:49 -05:00
|
|
|
| TestEvent::UncaughtError(_, _)
|
2022-05-01 14:44:55 -04:00
|
|
|
) {
|
2023-01-11 20:30:23 -05:00
|
|
|
self.flush_stdout_and_stderr()?;
|
2022-05-01 14:44:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
self.sender.send(message)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-05-04 17:01:51 -04:00
|
|
|
|
2023-03-25 15:32:11 -04:00
|
|
|
fn downgrade(&self) -> WeakUnboundedSender<TestEvent> {
|
|
|
|
self.sender.downgrade()
|
|
|
|
}
|
|
|
|
|
2023-01-11 20:30:23 -05:00
|
|
|
fn flush_stdout_and_stderr(&mut self) -> Result<(), AnyError> {
|
|
|
|
self.stdout_writer.flush()?;
|
|
|
|
self.stderr_writer.flush()?;
|
|
|
|
|
|
|
|
Ok(())
|
2022-05-04 17:01:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// use a string that if it ends up in the output won't affect how things are displayed
|
|
|
|
const ZERO_WIDTH_SPACE: &str = "\u{200B}";
|
|
|
|
|
|
|
|
struct TestOutputPipe {
|
|
|
|
writer: os_pipe::PipeWriter,
|
|
|
|
state: Arc<Mutex<Option<std::sync::mpsc::Sender<()>>>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clone for TestOutputPipe {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Self {
|
|
|
|
writer: self.writer.try_clone().unwrap(),
|
|
|
|
state: self.state.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TestOutputPipe {
|
|
|
|
pub fn new(sender: UnboundedSender<TestEvent>) -> Self {
|
|
|
|
let (reader, writer) = os_pipe::pipe().unwrap();
|
|
|
|
let state = Arc::new(Mutex::new(None));
|
|
|
|
|
|
|
|
start_output_redirect_thread(reader, sender, state.clone());
|
|
|
|
|
|
|
|
Self { writer, state }
|
|
|
|
}
|
|
|
|
|
2023-01-11 20:30:23 -05:00
|
|
|
pub fn flush(&mut self) -> Result<(), AnyError> {
|
2022-05-04 17:01:51 -04:00
|
|
|
// We want to wake up the other thread and have it respond back
|
|
|
|
// that it's done clearing out its pipe before returning.
|
|
|
|
let (sender, receiver) = std::sync::mpsc::channel();
|
2022-05-10 17:59:35 -04:00
|
|
|
if let Some(sender) = self.state.lock().replace(sender) {
|
|
|
|
let _ = sender.send(()); // just in case
|
|
|
|
}
|
2022-05-10 16:24:37 -04:00
|
|
|
// Bit of a hack to send a zero width space in order to wake
|
|
|
|
// the thread up. It seems that sending zero bytes here does
|
|
|
|
// not work on windows.
|
2023-01-11 20:30:23 -05:00
|
|
|
self.writer.write_all(ZERO_WIDTH_SPACE.as_bytes())?;
|
|
|
|
self.writer.flush()?;
|
2022-05-10 17:59:35 -04:00
|
|
|
// ignore the error as it might have been picked up and closed
|
|
|
|
let _ = receiver.recv();
|
2023-01-11 20:30:23 -05:00
|
|
|
|
|
|
|
Ok(())
|
2022-05-04 17:01:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn as_file(&self) -> std::fs::File {
|
|
|
|
pipe_writer_to_file(self.writer.try_clone().unwrap())
|
|
|
|
}
|
2022-04-26 19:00:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
fn pipe_writer_to_file(writer: os_pipe::PipeWriter) -> std::fs::File {
|
|
|
|
use std::os::windows::prelude::FromRawHandle;
|
|
|
|
use std::os::windows::prelude::IntoRawHandle;
|
|
|
|
// SAFETY: Requires consuming ownership of the provided handle
|
|
|
|
unsafe { std::fs::File::from_raw_handle(writer.into_raw_handle()) }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(unix)]
|
|
|
|
fn pipe_writer_to_file(writer: os_pipe::PipeWriter) -> std::fs::File {
|
|
|
|
use std::os::unix::io::FromRawFd;
|
|
|
|
use std::os::unix::io::IntoRawFd;
|
|
|
|
// SAFETY: Requires consuming ownership of the provided handle
|
|
|
|
unsafe { std::fs::File::from_raw_fd(writer.into_raw_fd()) }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn start_output_redirect_thread(
|
|
|
|
mut pipe_reader: os_pipe::PipeReader,
|
|
|
|
sender: UnboundedSender<TestEvent>,
|
2022-05-04 17:01:51 -04:00
|
|
|
flush_state: Arc<Mutex<Option<std::sync::mpsc::Sender<()>>>>,
|
2022-04-26 19:00:04 -04:00
|
|
|
) {
|
2023-05-14 17:40:01 -04:00
|
|
|
spawn_blocking(move || loop {
|
2022-04-26 19:00:04 -04:00
|
|
|
let mut buffer = [0; 512];
|
|
|
|
let size = match pipe_reader.read(&mut buffer) {
|
|
|
|
Ok(0) | Err(_) => break,
|
|
|
|
Ok(size) => size,
|
|
|
|
};
|
2022-05-04 17:01:51 -04:00
|
|
|
let oneshot_sender = flush_state.lock().take();
|
|
|
|
let mut data = &buffer[0..size];
|
|
|
|
if data.ends_with(ZERO_WIDTH_SPACE.as_bytes()) {
|
|
|
|
data = &data[0..data.len() - ZERO_WIDTH_SPACE.len()];
|
|
|
|
}
|
2022-05-01 14:44:55 -04:00
|
|
|
|
2022-05-04 17:01:51 -04:00
|
|
|
if !data.is_empty()
|
|
|
|
&& sender
|
|
|
|
.send(TestEvent::Output(buffer[0..size].to_vec()))
|
|
|
|
.is_err()
|
2022-04-26 19:00:04 -04:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2022-05-04 17:01:51 -04:00
|
|
|
|
|
|
|
// Always respond back if this was set. Ideally we would also check to
|
|
|
|
// ensure the pipe reader is empty before sending back this response.
|
|
|
|
if let Some(sender) = oneshot_sender {
|
|
|
|
let _ignore = sender.send(());
|
|
|
|
}
|
2022-04-26 19:00:04 -04:00
|
|
|
});
|
|
|
|
}
|
2022-11-28 17:28:54 -05:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod inner_test {
|
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_is_supported_test_ext() {
|
|
|
|
assert!(!is_supported_test_ext(Path::new("tests/subdir/redirects")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("README.md")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("readme.MD")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("lib/typescript.d.ts")));
|
|
|
|
assert!(is_supported_test_ext(Path::new(
|
|
|
|
"testdata/run/001_hello.js"
|
|
|
|
)));
|
|
|
|
assert!(is_supported_test_ext(Path::new(
|
|
|
|
"testdata/run/002_hello.ts"
|
|
|
|
)));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.jsx")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.tsx")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.TS")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.TSX")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.JS")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.JSX")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.mjs")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.mts")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.cjs")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.cts")));
|
|
|
|
assert!(!is_supported_test_ext(Path::new("foo.mjsx")));
|
|
|
|
assert!(!is_supported_test_ext(Path::new("foo.jsonc")));
|
|
|
|
assert!(!is_supported_test_ext(Path::new("foo.JSONC")));
|
|
|
|
assert!(!is_supported_test_ext(Path::new("foo.json")));
|
|
|
|
assert!(!is_supported_test_ext(Path::new("foo.JsON")));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_is_supported_test_path() {
|
|
|
|
assert!(is_supported_test_path(Path::new(
|
|
|
|
"tests/subdir/foo_test.ts"
|
|
|
|
)));
|
|
|
|
assert!(is_supported_test_path(Path::new(
|
|
|
|
"tests/subdir/foo_test.tsx"
|
|
|
|
)));
|
|
|
|
assert!(is_supported_test_path(Path::new(
|
|
|
|
"tests/subdir/foo_test.js"
|
|
|
|
)));
|
|
|
|
assert!(is_supported_test_path(Path::new(
|
|
|
|
"tests/subdir/foo_test.jsx"
|
|
|
|
)));
|
|
|
|
assert!(is_supported_test_path(Path::new("bar/foo.test.ts")));
|
|
|
|
assert!(is_supported_test_path(Path::new("bar/foo.test.tsx")));
|
|
|
|
assert!(is_supported_test_path(Path::new("bar/foo.test.js")));
|
|
|
|
assert!(is_supported_test_path(Path::new("bar/foo.test.jsx")));
|
|
|
|
assert!(is_supported_test_path(Path::new("foo/bar/test.js")));
|
|
|
|
assert!(is_supported_test_path(Path::new("foo/bar/test.jsx")));
|
|
|
|
assert!(is_supported_test_path(Path::new("foo/bar/test.ts")));
|
|
|
|
assert!(is_supported_test_path(Path::new("foo/bar/test.tsx")));
|
|
|
|
assert!(!is_supported_test_path(Path::new("README.md")));
|
|
|
|
assert!(!is_supported_test_path(Path::new("lib/typescript.d.ts")));
|
|
|
|
assert!(!is_supported_test_path(Path::new("notatest.js")));
|
|
|
|
assert!(!is_supported_test_path(Path::new("NotAtest.ts")));
|
|
|
|
}
|
|
|
|
}
|