mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
526 B
18 lines
526 B
10 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const fs = require('fs');
|
||
|
const path = require('path');
|
||
|
const stream = require('stream');
|
||
|
const encoding = 'base64';
|
||
|
|
||
|
const example = path.join(common.fixturesDir, 'x.txt');
|
||
|
const assertStream = new stream.Writable({
|
||
|
write: function(chunk, enc, next) {
|
||
|
const expected = new Buffer('xyz');
|
||
|
assert(chunk.equals(expected));
|
||
|
}
|
||
|
});
|
||
|
assertStream.setDefaultEncoding(encoding);
|
||
|
fs.createReadStream(example, encoding).pipe(assertStream);
|