mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
a7335bd1f0
In preparation for a lint rule that will enforce assert.deepStrictEqual() over assert.deepEqual(), change tests and benchmarks accordingly. For tests and benchmarks that are testing or benchmarking assert.deepEqual() itself, apply a comment to ignore the upcoming rule. PR-URL: https://github.com/nodejs/node/pull/6213 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
50 lines
1002 B
JavaScript
50 lines
1002 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var fs = require('fs');
|
|
var FSReadable = fs.ReadStream;
|
|
|
|
var path = require('path');
|
|
var file = path.resolve(common.fixturesDir, 'x1024.txt');
|
|
|
|
var size = fs.statSync(file).size;
|
|
|
|
var expectLengths = [1024];
|
|
|
|
var util = require('util');
|
|
var Stream = require('stream');
|
|
|
|
util.inherits(TestWriter, Stream);
|
|
|
|
function TestWriter() {
|
|
Stream.apply(this);
|
|
this.buffer = [];
|
|
this.length = 0;
|
|
}
|
|
|
|
TestWriter.prototype.write = function(c) {
|
|
this.buffer.push(c.toString());
|
|
this.length += c.length;
|
|
return true;
|
|
};
|
|
|
|
TestWriter.prototype.end = function(c) {
|
|
if (c) this.buffer.push(c.toString());
|
|
this.emit('results', this.buffer);
|
|
};
|
|
|
|
var r = new FSReadable(file);
|
|
var w = new TestWriter();
|
|
|
|
w.on('results', function(res) {
|
|
console.error(res, w.length);
|
|
assert.equal(w.length, size);
|
|
assert.deepStrictEqual(res.map(function(c) {
|
|
return c.length;
|
|
}), expectLengths);
|
|
console.log('ok');
|
|
});
|
|
|
|
r.pipe(w);
|