mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
7c79490bfb
Expose `common.refreshTmpDir()` and only call it for tests that use common.tmpDir or common.PIPE. A positive side effect is the removal of a code smell where child processes were detected by the presence of `.send()`. Now each process can decide for itself if it needs to refresh tmpDir. PR-URL: https://github.com/nodejs/io.js/pull/1954 Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
31 lines
940 B
JavaScript
31 lines
940 B
JavaScript
'use strict';
|
|
// test unzipping a file that was created with a non-node gzip lib,
|
|
// piped in as fast as possible.
|
|
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var zlib = require('zlib');
|
|
var path = require('path');
|
|
|
|
common.refreshTmpDir();
|
|
|
|
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++) {
|
|
assert.equal(actual[i], expect[i], 'byte[' + i + ']');
|
|
}
|
|
});
|