aboutsummaryrefslogtreecommitdiff
path: root/test/internet
diff options
context:
space:
mode:
Diffstat (limited to 'test/internet')
-rw-r--r--test/internet/test-dgram-send-cb-quelches-error.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/test/internet/test-dgram-send-cb-quelches-error.js b/test/internet/test-dgram-send-cb-quelches-error.js
deleted file mode 100644
index 106d2870c2..0000000000
--- a/test/internet/test-dgram-send-cb-quelches-error.js
+++ /dev/null
@@ -1,37 +0,0 @@
-'use strict';
-const common = require('../common');
-const mustCall = common.mustCall;
-const assert = require('assert');
-const dgram = require('dgram');
-const dns = require('dns');
-
-const socket = dgram.createSocket('udp4');
-const buffer = Buffer.from('gary busey');
-
-dns.setServers([]);
-
-socket.once('error', onEvent);
-
-// assert that:
-// * callbacks act as "error" listeners if given.
-// * error is never emitter for missing dns entries
-// if a callback that handles error is present
-// * error is emitted if a callback with no argument is passed
-socket.send(buffer, 0, buffer.length, 100,
- 'dne.example.com', mustCall(callbackOnly));
-
-function callbackOnly(err) {
- assert.ok(err);
- socket.removeListener('error', onEvent);
- socket.on('error', mustCall(onError));
- socket.send(buffer, 0, buffer.length, 100, 'dne.invalid');
-}
-
-function onEvent(err) {
- assert.fail(`Error should not be emitted if there is callback: ${err}`);
-}
-
-function onError(err) {
- assert.ok(err);
- socket.close();
-}