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.
33 lines
680 B
33 lines
680 B
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const zlib = require('zlib');
|
|
|
|
const gzip = zlib.createGzip();
|
|
const gunz = zlib.createUnzip();
|
|
|
|
gzip.pipe(gunz);
|
|
|
|
var output = '';
|
|
const input = 'A line of data\n';
|
|
gunz.setEncoding('utf8');
|
|
gunz.on('data', function(c) {
|
|
output += c;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(output, input);
|
|
|
|
// Make sure that the flush flag was set back to normal
|
|
assert.equal(gzip._flushFlag, zlib.constants.Z_NO_FLUSH);
|
|
|
|
console.log('ok');
|
|
});
|
|
|
|
// make sure that flush/write doesn't trigger an assert failure
|
|
gzip.flush(); write();
|
|
function write() {
|
|
gzip.write(input);
|
|
gzip.end();
|
|
gunz.read(0);
|
|
}
|
|
|