Skip to content

Commit 90a9917

Browse files
hiroppyitaloacasas
authored andcommitted
test: add dgram.Socket.prototype.bind's test
Test that an error is thrown when bind() is called on an already bound socket. PR-URL: #10894 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Claudio Rodriguez <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Italo A. Casas <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
1 parent dc826ca commit 90a9917

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

test/parallel/test-dgram-bind.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
'use strict';
2-
require('../common');
2+
const common = require('../common');
33
const assert = require('assert');
44
const dgram = require('dgram');
55

66
const socket = dgram.createSocket('udp4');
77

8-
socket.on('listening', function() {
8+
socket.on('listening', common.mustCall(() => {
9+
assert.throws(() => {
10+
socket.bind();
11+
}, /^Error: Socket is already bound$/);
12+
913
socket.close();
10-
});
14+
}));
1115

1216
const result = socket.bind(); // should not throw
1317

0 commit comments

Comments
 (0)