0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/sequential/test-stream2-fs.js

50 lines
1.0 KiB
JavaScript
Raw Normal View History

'use strict';
const common = require('../common');
const assert = require('assert');
2012-10-07 22:26:03 +02:00
const fs = require('fs');
const FSReadable = fs.ReadStream;
2012-10-07 22:26:03 +02:00
const path = require('path');
const file = path.resolve(common.fixturesDir, 'x1024.txt');
2012-10-07 22:26:03 +02:00
const size = fs.statSync(file).size;
2012-10-07 22:26:03 +02:00
const expectLengths = [1024];
2012-10-07 22:26:03 +02:00
const util = require('util');
const Stream = require('stream');
2012-10-07 22:26:03 +02:00
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);
};
2012-10-07 22:26:03 +02:00
const r = new FSReadable(file);
const w = new TestWriter();
2012-10-07 22:26:03 +02:00
w.on('results', function(res) {
console.error(res, w.length);
assert.strictEqual(w.length, size);
assert.deepStrictEqual(res.map(function(c) {
2012-10-07 22:26:03 +02:00
return c.length;
}), expectLengths);
console.log('ok');
});
r.pipe(w);