summaryrefslogtreecommitdiff
path: root/tests/node_compat/test/parallel/test-diagnostics-channel-tracing-channel-sync-error.js
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-06-14 23:07:02 +0100
committerGitHub <noreply@github.com>2024-06-15 00:07:02 +0200
commit78b12a43b307c3405cd63cf4612517210330b487 (patch)
treeef9a6a258f13f7d4151e8152ed9702572126c165 /tests/node_compat/test/parallel/test-diagnostics-channel-tracing-channel-sync-error.js
parent184a85eaecbe7055b5b3969391f49c4723ac44fb (diff)
fix(ext/node): better support for `node:diagnostics_channel` module (#24088)
Closes https://github.com/denoland/deno/issues/24060
Diffstat (limited to 'tests/node_compat/test/parallel/test-diagnostics-channel-tracing-channel-sync-error.js')
-rw-r--r--tests/node_compat/test/parallel/test-diagnostics-channel-tracing-channel-sync-error.js46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/node_compat/test/parallel/test-diagnostics-channel-tracing-channel-sync-error.js b/tests/node_compat/test/parallel/test-diagnostics-channel-tracing-channel-sync-error.js
new file mode 100644
index 000000000..09fc10329
--- /dev/null
+++ b/tests/node_compat/test/parallel/test-diagnostics-channel-tracing-channel-sync-error.js
@@ -0,0 +1,46 @@
+// deno-fmt-ignore-file
+// deno-lint-ignore-file
+
+// Copyright Joyent and Node contributors. All rights reserved. MIT license.
+// Taken from Node 18.12.1
+// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
+
+'use strict';
+
+const common = require('../common');
+const dc = require('diagnostics_channel');
+const assert = require('assert');
+
+const channel = dc.tracingChannel('test');
+
+const expectedError = new Error('test');
+const input = { foo: 'bar' };
+const thisArg = { baz: 'buz' };
+
+function check(found) {
+ assert.deepStrictEqual(found, input);
+}
+
+const handlers = {
+ start: common.mustCall(check),
+ end: common.mustCall(check),
+ asyncStart: common.mustNotCall(),
+ asyncEnd: common.mustNotCall(),
+ error: common.mustCall((found) => {
+ check(found);
+ assert.deepStrictEqual(found.error, expectedError);
+ })
+};
+
+channel.subscribe(handlers);
+try {
+ channel.traceSync(function(err) {
+ assert.deepStrictEqual(this, thisArg);
+ assert.strictEqual(err, expectedError);
+ throw err;
+ }, input, thisArg, expectedError);
+
+ throw new Error('It should not reach this error');
+} catch (error) {
+ assert.deepStrictEqual(error, expectedError);
+}