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.
19 lines
746 B
19 lines
746 B
'use strict';
|
|
|
|
// Check the error condition testing for passing something other than a string
|
|
// or buffer.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const zlib = require('zlib');
|
|
|
|
const expected = /^TypeError: Not a string or buffer$/;
|
|
|
|
assert.throws(() => { zlib.deflateSync(undefined); }, expected);
|
|
assert.throws(() => { zlib.deflateSync(null); }, expected);
|
|
assert.throws(() => { zlib.deflateSync(true); }, expected);
|
|
assert.throws(() => { zlib.deflateSync(false); }, expected);
|
|
assert.throws(() => { zlib.deflateSync(0); }, expected);
|
|
assert.throws(() => { zlib.deflateSync(1); }, expected);
|
|
assert.throws(() => { zlib.deflateSync([1, 2, 3]); }, expected);
|
|
assert.throws(() => { zlib.deflateSync({foo: 'bar'}); }, expected);
|
|
|