Skip to content

Commit

Permalink
chore: support -- --nocapture in the spec tests (denoland#24113)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Jun 6, 2024
1 parent 4d531bf commit e5b2c5e
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 9 deletions.
7 changes: 7 additions & 0 deletions tests/specs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ Or just the following, though it might run other tests:
cargo test test_name
```

To run showing the output of every test use `-- --nocapture` (note: this will
cause tests to run sequentially instead of in parallel):

```
cargo test test_name -- --nocapture
```

## `__test__.json` file

This file describes the test(s) to execute and the steps to execute. A basic
Expand Down
14 changes: 13 additions & 1 deletion tests/specs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,17 @@ use file_test_runner::collection::CollectedTest;
use file_test_runner::collection::CollectedTestCategory;
use file_test_runner::SubTestResult;
use file_test_runner::TestResult;
use once_cell::sync::Lazy;
use serde::Deserialize;
use test_util::tests_path;
use test_util::PathRef;
use test_util::TestContextBuilder;

const MANIFEST_FILE_NAME: &str = "__test__.jsonc";

static NO_CAPTURE: Lazy<bool> =
Lazy::new(|| std::env::args().any(|arg| arg == "--nocapture"));

#[derive(Clone, Deserialize)]
#[serde(untagged)]
enum VecOrString {
Expand Down Expand Up @@ -178,7 +182,9 @@ pub fn main() {
let _http_guard = test_util::http_server();
file_test_runner::run_tests(
&root_category,
file_test_runner::RunOptions { parallel: true },
file_test_runner::RunOptions {
parallel: !*NO_CAPTURE,
},
run_test,
);
}
Expand Down Expand Up @@ -373,6 +379,12 @@ fn run_step(
Some(command_name) => command.name(command_name),
None => command,
};
let command = match *NO_CAPTURE {
// deprecated is only to prevent use, so this is fine here
#[allow(deprecated)]
true => command.show_output(),
false => command,
};
let output = command.run();
if step.output.ends_with(".out") {
let test_output_path = cwd.join(&step.output);
Expand Down
3 changes: 3 additions & 0 deletions tests/specs/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@
"additionalProperties": {
"type": "string"
}
},
"repeat": {
"type": "number"
}
}
}, {
Expand Down
16 changes: 8 additions & 8 deletions tests/util/server/src/builders.rs
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ pub struct TestCommandBuilder {
args_text: String,
args_vec: Vec<String>,
split_output: bool,
debug_output: bool,
show_output: bool,
}

impl TestCommandBuilder {
Expand All @@ -407,7 +407,7 @@ impl TestCommandBuilder {
command_name: "deno".to_string(),
args_text: "".to_string(),
args_vec: Default::default(),
debug_output: false,
show_output: false,
}
}

Expand Down Expand Up @@ -489,8 +489,8 @@ impl TestCommandBuilder {
/// Not deprecated, this is just here so you don't accidentally
/// commit code with this enabled.
#[deprecated]
pub fn debug_output(mut self) -> Self {
self.debug_output = true;
pub fn show_output(mut self) -> Self {
self.show_output = true;
self
}

Expand Down Expand Up @@ -662,15 +662,15 @@ impl TestCommandBuilder {
let (stderr_reader, stderr_writer) = pipe().unwrap();
command.stdout(stdout_writer);
command.stderr(stderr_writer);
let debug_output = self.debug_output;
let show_output = self.show_output;
(
None,
Some((
std::thread::spawn(move || {
read_pipe_to_string(stdout_reader, debug_output)
read_pipe_to_string(stdout_reader, show_output)
}),
std::thread::spawn(move || {
read_pipe_to_string(stderr_reader, debug_output)
read_pipe_to_string(stderr_reader, show_output)
}),
)),
)
Expand All @@ -695,7 +695,7 @@ impl TestCommandBuilder {
drop(command);

let combined = combined_reader.map(|pipe| {
sanitize_output(read_pipe_to_string(pipe, self.debug_output), &args)
sanitize_output(read_pipe_to_string(pipe, self.show_output), &args)
});

let status = process.wait().unwrap();
Expand Down

0 comments on commit e5b2c5e

Please sign in to comment.