summaryrefslogtreecommitdiff
path: root/tests/unit_node/util_test.ts
diff options
context:
space:
mode:
authorLuca Casonato <hello@lcas.dev>2024-09-05 09:22:52 +0200
committerGitHub <noreply@github.com>2024-09-05 09:22:52 +0200
commit49e3ee010c7d4423fbab89bf12749235e156c9be (patch)
tree92185d6cf32a94ae4b241a23a64309bec3f92e59 /tests/unit_node/util_test.ts
parent17b5e98b822dc23407a0292dcf61e624fbf2a4b1 (diff)
feat(ext/node): add abort helpers, process & streams fix (#25262)
This commit adds: - `addAbortListener` in `node:events` - `aborted` in `node:util` - `execPath` and `execvArgs` named export from `node:process` - `getDefaultHighWaterMark` from `node:stream` The `execPath` is very hacky - because module namespaces can not have real getters, `execPath` is an object with a `toString()` method that on call returns the actual `execPath`, and replaces the `execPath` binding with the string. This is done so that we don't require the `execPath` permission on startup.
Diffstat (limited to 'tests/unit_node/util_test.ts')
-rw-r--r--tests/unit_node/util_test.ts18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/unit_node/util_test.ts b/tests/unit_node/util_test.ts
index 2b639538c..edd500262 100644
--- a/tests/unit_node/util_test.ts
+++ b/tests/unit_node/util_test.ts
@@ -330,3 +330,21 @@ Deno.test("[util] debuglog() and debug()", () => {
assertEquals(util.debuglog, util.debug);
assertEquals(utilDefault.debuglog, utilDefault.debug);
});
+
+Deno.test("[util] aborted()", async () => {
+ const abortController = new AbortController();
+ let done = false;
+ const promise = util.aborted(
+ // deno-lint-ignore no-explicit-any
+ abortController.signal as any,
+ abortController.signal,
+ );
+ promise.then(() => {
+ done = true;
+ });
+ await new Promise((r) => setTimeout(r, 100));
+ assertEquals(done, false);
+ abortController.abort();
+ await promise;
+ assertEquals(done, true);
+});