nodejs/test/parallel/test-dgram-empty-packet.js
James M Snell 85ab4a5f12 buffer: add .from(), .alloc() and .allocUnsafe()
Several changes:

* Soft-Deprecate Buffer() constructors
* Add `Buffer.from()`, `Buffer.alloc()`, and `Buffer.allocUnsafe()`
* Add `--zero-fill-buffers` command line option
* Add byteOffset and length to `new Buffer(arrayBuffer)` constructor
* buffer.fill('') previously had no effect, now zero-fills
* Update the docs

PR-URL: https://github.com/nodejs/node/pull/4682
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
2016-03-16 08:34:02 -07:00

40 lines
761 B
JavaScript

'use strict';
var common = require('../common');
var dgram = require('dgram');
var callbacks = 0;
var client;
var timer;
if (process.platform === 'darwin') {
console.log('1..0 # Skipped: because of 17894467 Apple bug');
return;
}
client = dgram.createSocket('udp4');
client.bind(common.PORT);
function callback() {
callbacks++;
if (callbacks == 2) {
clearTimeout(timer);
client.close();
} else if (callbacks > 2) {
throw new Error('the callbacks should be called only two times');
}
}
client.on('message', function(buffer, bytes) {
callback();
});
client.send(
Buffer.allocUnsafe(1), 0, 0, common.PORT, '127.0.0.1', (err, len) => {
callback();
});
timer = setTimeout(function() {
throw new Error('Timeout');
}, 200);