mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 22:46:31 +01:00
0df54303c1
This commit changes many test styles to change all references from require('./common.js'); to require('./common');. The latter is much more common, with the former only being used in 50 tests. It is just a stylistic change, and it seems that `common.js` was introduced by a rogue test and copied and pasted into the rest. Semver: patch PR-URL: https://github.com/iojs/io.js/pull/917 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var zlib = require('zlib');
|
|
var path = require('path');
|
|
var fs = require('fs');
|
|
|
|
var file = fs.readFileSync(path.resolve(common.fixturesDir, 'person.jpg')),
|
|
chunkSize = 16,
|
|
opts = { level: 0 },
|
|
deflater = zlib.createDeflate(opts);
|
|
|
|
var chunk = file.slice(0, chunkSize),
|
|
expectedNone = new Buffer([0x78, 0x01]),
|
|
blkhdr = new Buffer([0x00, 0x10, 0x00, 0xef, 0xff]),
|
|
adler32 = new Buffer([0x00, 0x00, 0x00, 0xff, 0xff]),
|
|
expectedFull = Buffer.concat([blkhdr, chunk, adler32]),
|
|
actualNone,
|
|
actualFull;
|
|
|
|
deflater.write(chunk, function() {
|
|
deflater.flush(zlib.Z_NO_FLUSH, function() {
|
|
actualNone = deflater.read();
|
|
deflater.flush(function() {
|
|
var bufs = [], buf;
|
|
while (buf = deflater.read())
|
|
bufs.push(buf);
|
|
actualFull = Buffer.concat(bufs);
|
|
});
|
|
});
|
|
});
|
|
|
|
process.once('exit', function() {
|
|
assert.deepEqual(actualNone, expectedNone);
|
|
assert.deepEqual(actualFull, expectedFull);
|
|
});
|