2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2011-10-13 16:37:49 -07:00
|
|
|
// test unzipping a file that was created with a non-node gzip lib,
|
|
|
|
// piped in as fast as possible.
|
|
|
|
|
2015-02-21 18:47:04 -08:00
|
|
|
var common = require('../common');
|
2011-10-13 16:37:49 -07:00
|
|
|
var assert = require('assert');
|
|
|
|
var zlib = require('zlib');
|
|
|
|
var path = require('path');
|
|
|
|
|
2015-06-09 11:40:55 -07:00
|
|
|
common.refreshTmpDir();
|
|
|
|
|
2011-10-13 16:37:49 -07:00
|
|
|
var gunzip = zlib.createGunzip();
|
|
|
|
|
|
|
|
var fs = require('fs');
|
|
|
|
|
|
|
|
var fixture = path.resolve(common.fixturesDir, 'person.jpg.gz');
|
|
|
|
var unzippedFixture = path.resolve(common.fixturesDir, 'person.jpg');
|
|
|
|
var outputFile = path.resolve(common.tmpDir, 'person.jpg');
|
|
|
|
var expect = fs.readFileSync(unzippedFixture);
|
|
|
|
var inp = fs.createReadStream(fixture);
|
|
|
|
var out = fs.createWriteStream(outputFile);
|
|
|
|
|
|
|
|
inp.pipe(gunzip).pipe(out);
|
|
|
|
out.on('close', function() {
|
|
|
|
var actual = fs.readFileSync(outputFile);
|
|
|
|
assert.equal(actual.length, expect.length, 'length should match');
|
|
|
|
for (var i = 0, l = actual.length; i < l; i++) {
|
2012-01-17 19:43:34 +01:00
|
|
|
assert.equal(actual[i], expect[i], 'byte[' + i + ']');
|
2011-10-13 16:37:49 -07:00
|
|
|
}
|
|
|
|
});
|