-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dgram: handle default address case when offset and length are specified
Fixes a regression introduced by: #4374. Adds a new test to avoid similar issue in the future. The test is disabled on windows, because this feature never worked there. Fixes: #5398 Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Rod Vagg <[email protected]> Reviewed-By: Evan Lucas <[email protected]>
- Loading branch information
1 parent
6aebe16
commit d3f9b84
Showing
2 changed files
with
51 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const dgram = require('dgram'); | ||
|
||
if (common.isWindows) { | ||
// on Windows this test will fail | ||
// see https://github.com/nodejs/node/pull/5407 | ||
console.log('1..0 # Skipped: This test does not apply on Windows.'); | ||
return; | ||
} | ||
|
||
const client = dgram.createSocket('udp4'); | ||
|
||
const timer = setTimeout(function() { | ||
throw new Error('Timeout'); | ||
}, common.platformTimeout(2000)); | ||
|
||
const toSend = [new Buffer(256), new Buffer(256), new Buffer(256), 'hello']; | ||
|
||
toSend[0].fill('x'); | ||
toSend[1].fill('y'); | ||
toSend[2].fill('z'); | ||
|
||
client.on('listening', function() { | ||
client.send(toSend[0], 0, toSend[0].length, common.PORT); | ||
client.send(toSend[1], common.PORT); | ||
client.send([toSend[2]], common.PORT); | ||
client.send(toSend[3], 0, toSend[3].length, common.PORT); | ||
}); | ||
|
||
client.on('message', function(buf, info) { | ||
const expected = toSend.shift().toString(); | ||
assert.ok(buf.toString() === expected, 'message was received correctly'); | ||
|
||
if (toSend.length === 0) { | ||
client.close(); | ||
clearTimeout(timer); | ||
} | ||
}); | ||
|
||
client.bind(common.PORT); |
d3f9b84
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR-URL: #5407