Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNicolas LaCasse <nlacasse@borderstylo.com>2012-01-20 18:36:28 +0400
committerisaacs <i@izs.me>2012-01-21 01:12:32 +0400
commit40c93486e8b08f7f37dfd8be95ff03990ab858bd (patch)
tree53e7cf7acc635358cb11a1d718ac03e4835a1fd1 /test
parentf25ec0782e379469d2dd097b6168a5a120f624e4 (diff)
Fix #2365 zlib crashing on invalid input
Fix zlib crashes on error due to improper use of removeListener in the error handler
Diffstat (limited to 'test')
-rw-r--r--test/simple/test-zlib-invalid-input.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/simple/test-zlib-invalid-input.js b/test/simple/test-zlib-invalid-input.js
new file mode 100644
index 00000000000..4c581e1c33d
--- /dev/null
+++ b/test/simple/test-zlib-invalid-input.js
@@ -0,0 +1,38 @@
+// Copyright Joyent, Inc. and other Node contributors.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a
+// copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to permit
+// persons to whom the Software is furnished to do so, subject to the
+// following conditions:
+//
+// The above copyright notice and this permission notice shall be included
+// in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+// USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+// test uncompressing invalid input
+
+var common = require('../common.js'),
+ assert = require('assert'),
+ zlib = require('zlib');
+
+var nonStringInputs = [1, true, {a: 1}, ['a']];
+
+nonStringInputs.forEach(function(input) {
+ // zlib.gunzip should not throw an error when called with bad input.
+ assert.doesNotThrow(function () {
+ zlib.gunzip(input, function (err, buffer) {
+ // zlib.gunzip should pass the error to the callback.
+ assert.ok(err);
+ });
+ });
+});