2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2024-02-12 19:13:14 -05:00
|
|
|
|
2023-05-22 15:35:59 -04:00
|
|
|
use std::io::BufRead;
|
|
|
|
use std::io::BufReader;
|
|
|
|
use std::time::Duration;
|
|
|
|
use std::time::Instant;
|
2023-02-16 08:30:14 -05:00
|
|
|
use test_util as util;
|
2024-02-12 19:13:14 -05:00
|
|
|
use test_util::itest;
|
2024-02-12 15:46:50 -05:00
|
|
|
use util::deno_config_path;
|
2023-05-24 09:40:41 -04:00
|
|
|
use util::env_vars_for_npm_tests;
|
2023-02-16 08:30:14 -05:00
|
|
|
|
2023-05-22 15:35:59 -04:00
|
|
|
util::unit_test_factory!(
|
|
|
|
node_unit_test,
|
2024-02-09 15:33:05 -05:00
|
|
|
"../tests/unit_node",
|
2023-05-22 15:35:59 -04:00
|
|
|
"**/*_test.ts",
|
|
|
|
[
|
|
|
|
_fs_access_test = _fs / _fs_access_test,
|
|
|
|
_fs_appendFile_test = _fs / _fs_appendFile_test,
|
|
|
|
_fs_chmod_test = _fs / _fs_chmod_test,
|
|
|
|
_fs_chown_test = _fs / _fs_chown_test,
|
|
|
|
_fs_close_test = _fs / _fs_close_test,
|
|
|
|
_fs_copy_test = _fs / _fs_copy_test,
|
|
|
|
_fs_dir_test = _fs / _fs_dir_test,
|
2023-06-13 02:32:02 -04:00
|
|
|
_fs_dirent_test = _fs / _fs_dirent_test,
|
2023-06-21 13:11:06 -04:00
|
|
|
_fs_open_test = _fs / _fs_open_test,
|
2023-06-26 03:27:21 -04:00
|
|
|
_fs_read_test = _fs / _fs_read_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
_fs_exists_test = _fs / _fs_exists_test,
|
|
|
|
_fs_fdatasync_test = _fs / _fs_fdatasync_test,
|
|
|
|
_fs_fstat_test = _fs / _fs_fstat_test,
|
|
|
|
_fs_fsync_test = _fs / _fs_fsync_test,
|
|
|
|
_fs_ftruncate_test = _fs / _fs_ftruncate_test,
|
|
|
|
_fs_futimes_test = _fs / _fs_futimes_test,
|
feat(node_compat): Added base implementation of FileHandle (#19294)
<!--
Before submitting a PR, please read https://deno.com/manual/contributing
1. Give the PR a descriptive title.
Examples of good title:
- fix(std/http): Fix race condition in server
- docs(console): Update docstrings
- feat(doc): Handle nested reexports
Examples of bad title:
- fix #7123
- update docs
- fix bugs
2. Ensure there is a related issue and it is referenced in the PR text.
3. Ensure there are tests that cover the changes.
4. Ensure `cargo test` passes.
5. Ensure `./tools/format.js` passes without changing files.
6. Ensure `./tools/lint.js` passes.
7. Open as a draft PR if your work is still in progress. The CI won't
run
all steps, but you can add '[ci]' to a commit message to force it to.
8. If you would like to run the benchmarks on the CI, add the 'ci-bench'
label.
-->
## WHY
ref: https://github.com/denoland/deno/issues/19165
Node's fs/promises includes a FileHandle class, but deno does not. The
open function in Node's fs/promises returns a FileHandle, which provides
an IO interface to the file. However, deno's open function returns a
resource id.
### deno
```js
> const fs = await import("node:fs/promises");
undefined
> const file3 = await fs.open("./README.md");
undefined
> file3
3
> file3.read
undefined
Node:
```
### Node
```js
> const fs = await import("fs/promises");
undefined
> const file3 = await fs.open("./tests/e2e_unit/testdata/file.txt");
undefined
> file3
FileHandle {
_events: [Object: null prototype] {},
_eventsCount: 0,
_maxListeners: undefined,
close: [Function: close],
[Symbol(kCapture)]: false,
[Symbol(kHandle)]: FileHandle {},
[Symbol(kFd)]: 24,
[Symbol(kRefs)]: 1,
[Symbol(kClosePromise)]: null
}
> file3.read
[Function: read]
```
To be compatible with Node, deno's open function should also return a
FileHandle.
## WHAT
I have implemented the first step in adding a FileHandle.
- Changed the return value of the open function to a FileHandle object
- Implemented the readFile method in FileHandle
- Add test code
## What to do next
This PR is the first step in adding a FileHandle, and there are things
that should be done next.
- Add functionality equivalent to Node's FileHandle to FileHandle
(currently there is only readFile)
---------
Co-authored-by: Matt Mastracci <matthew@mastracci.com>
2023-06-02 10:28:05 -04:00
|
|
|
_fs_handle_test = _fs / _fs_handle_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
_fs_link_test = _fs / _fs_link_test,
|
|
|
|
_fs_lstat_test = _fs / _fs_lstat_test,
|
|
|
|
_fs_mkdir_test = _fs / _fs_mkdir_test,
|
|
|
|
_fs_mkdtemp_test = _fs / _fs_mkdtemp_test,
|
|
|
|
_fs_opendir_test = _fs / _fs_opendir_test,
|
|
|
|
_fs_readFile_test = _fs / _fs_readFile_test,
|
|
|
|
_fs_readdir_test = _fs / _fs_readdir_test,
|
|
|
|
_fs_readlink_test = _fs / _fs_readlink_test,
|
|
|
|
_fs_realpath_test = _fs / _fs_realpath_test,
|
|
|
|
_fs_rename_test = _fs / _fs_rename_test,
|
|
|
|
_fs_rm_test = _fs / _fs_rm_test,
|
|
|
|
_fs_rmdir_test = _fs / _fs_rmdir_test,
|
|
|
|
_fs_stat_test = _fs / _fs_stat_test,
|
2024-03-13 06:57:59 -04:00
|
|
|
_fs_statfs_test = _fs / _fs_statfs_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
_fs_symlink_test = _fs / _fs_symlink_test,
|
|
|
|
_fs_truncate_test = _fs / _fs_truncate_test,
|
|
|
|
_fs_unlink_test = _fs / _fs_unlink_test,
|
|
|
|
_fs_utimes_test = _fs / _fs_utimes_test,
|
|
|
|
_fs_watch_test = _fs / _fs_watch_test,
|
2023-06-19 05:52:25 -04:00
|
|
|
_fs_writeFile_test = _fs / _fs_writeFile_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
_fs_write_test = _fs / _fs_write_test,
|
|
|
|
async_hooks_test,
|
2024-07-08 15:28:39 -04:00
|
|
|
assert_test,
|
2023-06-29 22:22:04 -04:00
|
|
|
assertion_error_test,
|
2023-06-13 15:26:28 -04:00
|
|
|
buffer_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
child_process_test,
|
2024-08-26 05:19:58 -04:00
|
|
|
cluster_test,
|
2024-01-03 23:12:38 -05:00
|
|
|
console_test,
|
2023-09-06 01:31:50 -04:00
|
|
|
crypto_cipher_gcm_test = crypto / crypto_cipher_gcm_test,
|
2024-07-05 04:10:22 -04:00
|
|
|
crypto_cipher_test = crypto / crypto_cipher_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
crypto_hash_test = crypto / crypto_hash_test,
|
2024-07-05 04:10:22 -04:00
|
|
|
crypto_hkdf_test = crypto / crypto_hkdf_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
crypto_key_test = crypto / crypto_key_test,
|
2024-06-24 05:47:12 -04:00
|
|
|
crypto_misc_test = crypto / crypto_misc_test,
|
2024-07-05 04:10:22 -04:00
|
|
|
crypto_pbkdf2_test = crypto / crypto_pbkdf2_test,
|
|
|
|
crypto_scrypt_test = crypto / crypto_scrypt_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
crypto_sign_test = crypto / crypto_sign_test,
|
2023-10-02 08:13:57 -04:00
|
|
|
events_test,
|
2024-01-03 22:21:39 -05:00
|
|
|
dgram_test,
|
2024-04-03 15:37:10 -04:00
|
|
|
domain_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
fs_test,
|
|
|
|
http_test,
|
2023-06-06 06:29:55 -04:00
|
|
|
http2_test,
|
2024-08-14 08:33:42 -04:00
|
|
|
inspector_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
_randomBytes_test = internal / _randomBytes_test,
|
|
|
|
_randomFill_test = internal / _randomFill_test,
|
|
|
|
_randomInt_test = internal / _randomInt_test,
|
|
|
|
module_test,
|
2023-06-29 22:44:14 -04:00
|
|
|
net_test,
|
2023-05-29 09:03:14 -04:00
|
|
|
os_test,
|
2023-07-05 03:13:34 -04:00
|
|
|
path_test,
|
2023-06-30 03:46:48 -04:00
|
|
|
perf_hooks_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
process_test,
|
2024-03-11 18:49:43 -04:00
|
|
|
punycode_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
querystring_test,
|
|
|
|
readline_test,
|
2023-08-04 08:30:48 -04:00
|
|
|
repl_test,
|
2023-07-17 09:10:34 -04:00
|
|
|
stream_test,
|
2023-05-22 15:35:59 -04:00
|
|
|
string_decoder_test,
|
|
|
|
timers_test,
|
|
|
|
tls_test,
|
|
|
|
tty_test,
|
|
|
|
util_test,
|
|
|
|
v8_test,
|
2023-12-11 02:08:45 -05:00
|
|
|
vm_test,
|
2024-08-21 23:33:52 -04:00
|
|
|
wasi_test,
|
2023-06-24 10:12:08 -04:00
|
|
|
worker_threads_test,
|
|
|
|
zlib_test
|
2023-05-22 15:35:59 -04:00
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
fn node_unit_test(test: String) {
|
2023-02-16 08:30:14 -05:00
|
|
|
let _g = util::http_server();
|
|
|
|
|
2023-11-17 10:05:42 -05:00
|
|
|
let mut deno = util::deno_cmd()
|
2023-02-16 08:30:14 -05:00
|
|
|
.current_dir(util::root_path())
|
|
|
|
.arg("test")
|
2024-02-07 11:51:28 -05:00
|
|
|
.arg("--config")
|
2024-02-12 15:46:50 -05:00
|
|
|
.arg(deno_config_path())
|
2024-02-07 11:51:28 -05:00
|
|
|
.arg("--no-lock")
|
2024-09-09 17:44:29 -04:00
|
|
|
.arg("--unstable-broadcast-channel")
|
|
|
|
.arg("--unstable-net")
|
2023-05-22 15:35:59 -04:00
|
|
|
.arg("-A");
|
2024-09-27 10:07:20 -04:00
|
|
|
|
|
|
|
// Some tests require the root CA cert file to be loaded.
|
|
|
|
if test == "http2_test" || test == "http_test" {
|
|
|
|
deno = deno.arg("--cert=./tests/testdata/tls/RootCA.pem");
|
|
|
|
}
|
|
|
|
|
2023-05-22 15:35:59 -04:00
|
|
|
// Parallel tests for crypto
|
|
|
|
if test.starts_with("crypto/") {
|
|
|
|
deno = deno.arg("--parallel");
|
|
|
|
}
|
2024-09-27 10:07:20 -04:00
|
|
|
|
2023-05-22 15:35:59 -04:00
|
|
|
let mut deno = deno
|
|
|
|
.arg(
|
|
|
|
util::tests_path()
|
|
|
|
.join("unit_node")
|
|
|
|
.join(format!("{test}.ts")),
|
|
|
|
)
|
2023-08-29 15:02:54 -04:00
|
|
|
.envs(env_vars_for_npm_tests())
|
2023-11-17 10:05:42 -05:00
|
|
|
.piped_output()
|
2023-02-16 08:30:14 -05:00
|
|
|
.spawn()
|
|
|
|
.expect("failed to spawn script");
|
|
|
|
|
2023-05-22 15:35:59 -04:00
|
|
|
let now = Instant::now();
|
|
|
|
let stdout = deno.stdout.take().unwrap();
|
|
|
|
let test_name = test.clone();
|
|
|
|
let stdout = std::thread::spawn(move || {
|
|
|
|
let reader = BufReader::new(stdout);
|
|
|
|
for line in reader.lines() {
|
|
|
|
if let Ok(line) = line {
|
|
|
|
println!("[{test_name} {:0>6.2}] {line}", now.elapsed().as_secs_f32());
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let now = Instant::now();
|
|
|
|
let stderr = deno.stderr.take().unwrap();
|
|
|
|
let test_name = test.clone();
|
|
|
|
let stderr = std::thread::spawn(move || {
|
|
|
|
let reader = BufReader::new(stderr);
|
|
|
|
for line in reader.lines() {
|
|
|
|
if let Ok(line) = line {
|
|
|
|
eprintln!("[{test_name} {:0>6.2}] {line}", now.elapsed().as_secs_f32());
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const PER_TEST_TIMEOUT: Duration = Duration::from_secs(5 * 60);
|
|
|
|
|
|
|
|
let now = Instant::now();
|
|
|
|
let status = loop {
|
|
|
|
if now.elapsed() > PER_TEST_TIMEOUT {
|
|
|
|
// Last-ditch kill
|
|
|
|
_ = deno.kill();
|
|
|
|
panic!("Test {test} failed to complete in time");
|
|
|
|
}
|
|
|
|
if let Some(status) = deno
|
|
|
|
.try_wait()
|
|
|
|
.expect("failed to wait for the child process")
|
|
|
|
{
|
|
|
|
break status;
|
|
|
|
}
|
|
|
|
std::thread::sleep(Duration::from_millis(100));
|
|
|
|
};
|
|
|
|
|
|
|
|
#[cfg(unix)]
|
|
|
|
assert_eq!(
|
|
|
|
std::os::unix::process::ExitStatusExt::signal(&status),
|
|
|
|
None,
|
|
|
|
"Deno should not have died with a signal"
|
|
|
|
);
|
|
|
|
assert_eq!(Some(0), status.code(), "Deno should have exited cleanly");
|
|
|
|
|
|
|
|
stdout.join().unwrap();
|
|
|
|
stderr.join().unwrap();
|
|
|
|
|
2023-02-16 08:30:14 -05:00
|
|
|
assert!(status.success());
|
|
|
|
}
|
2023-05-24 09:40:41 -04:00
|
|
|
|
|
|
|
// Regression test for https://github.com/denoland/deno/issues/16928
|
|
|
|
itest!(unhandled_rejection_web {
|
|
|
|
args: "run -A node/unhandled_rejection_web.ts",
|
|
|
|
output: "node/unhandled_rejection_web.ts.out",
|
|
|
|
envs: env_vars_for_npm_tests(),
|
|
|
|
http_server: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Ensure that Web `onunhandledrejection` is fired before
|
|
|
|
// Node's `process.on('unhandledRejection')`.
|
|
|
|
itest!(unhandled_rejection_web_process {
|
|
|
|
args: "run -A node/unhandled_rejection_web_process.ts",
|
|
|
|
output: "node/unhandled_rejection_web_process.ts.out",
|
|
|
|
envs: env_vars_for_npm_tests(),
|
|
|
|
http_server: true,
|
|
|
|
});
|
2024-10-28 13:16:43 -04:00
|
|
|
|
|
|
|
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
// The itest macro is deprecated. Please move your new test to ~/tests/specs.
|
|
|
|
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|