summaryrefslogtreecommitdiff
path: root/cli/tests/node_compat/test/parallel/test-dgram-send-callback-recursive.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/node_compat/test/parallel/test-dgram-send-callback-recursive.js')
-rw-r--r--cli/tests/node_compat/test/parallel/test-dgram-send-callback-recursive.js50
1 files changed, 0 insertions, 50 deletions
diff --git a/cli/tests/node_compat/test/parallel/test-dgram-send-callback-recursive.js b/cli/tests/node_compat/test/parallel/test-dgram-send-callback-recursive.js
deleted file mode 100644
index 6752cbf4a..000000000
--- a/cli/tests/node_compat/test/parallel/test-dgram-send-callback-recursive.js
+++ /dev/null
@@ -1,50 +0,0 @@
-// 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 "node/_tools/setup.ts". Do not modify this file manually
-
-'use strict';
-const common = require('../common');
-const assert = require('assert');
-
-const dgram = require('dgram');
-const client = dgram.createSocket('udp4');
-const chunk = 'abc';
-let received = 0;
-let sent = 0;
-const limit = 10;
-let async = false;
-let port;
-
-function onsend() {
- if (sent++ < limit) {
- client.send(chunk, 0, chunk.length, port, common.localhostIPv4, onsend);
- } else {
- assert.strictEqual(async, true);
- }
-}
-
-client.on('listening', function() {
- port = this.address().port;
-
- process.nextTick(() => {
- async = true;
- });
-
- onsend();
-});
-
-client.on('message', (buf, info) => {
- received++;
- if (received === limit) {
- client.close();
- }
-});
-
-client.on('close', common.mustCall(function() {
- assert.strictEqual(received, limit);
-}));
-
-client.bind(0);