mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 18:02:21 +00:00

Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
56 lines
1011 B
JavaScript
56 lines
1011 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var Stream = require('stream');
|
|
var Readable = Stream.Readable;
|
|
|
|
var r = new Readable();
|
|
var N = 256;
|
|
var reads = 0;
|
|
r._read = function(n) {
|
|
return r.push(++reads === N ? null : new Buffer(1));
|
|
};
|
|
|
|
var rended = false;
|
|
r.on('end', function() {
|
|
rended = true;
|
|
});
|
|
|
|
var w = new Stream();
|
|
w.writable = true;
|
|
var writes = 0;
|
|
var buffered = 0;
|
|
w.write = function(c) {
|
|
writes += c.length;
|
|
buffered += c.length;
|
|
process.nextTick(drain);
|
|
return false;
|
|
};
|
|
|
|
function drain() {
|
|
assert(buffered <= 3);
|
|
buffered = 0;
|
|
w.emit('drain');
|
|
}
|
|
|
|
|
|
var wended = false;
|
|
w.end = function() {
|
|
wended = true;
|
|
};
|
|
|
|
// Just for kicks, let's mess with the drain count.
|
|
// This verifies that even if it gets negative in the
|
|
// pipe() cleanup function, we'll still function properly.
|
|
r.on('readable', function() {
|
|
w.emit('drain');
|
|
});
|
|
|
|
r.pipe(w);
|
|
process.on('exit', function() {
|
|
assert(rended);
|
|
assert(wended);
|
|
console.error('ok');
|
|
});
|