blob: 64390a3137d994aaa078eaa60bf7eb56e1e7235b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
'use strict';
const common = require('../common');
const zlib = require('zlib');
zlib.createGzip({ flush: zlib.constants.Z_SYNC_FLUSH });
common.expectsError(
() => zlib.createGzip({ flush: 'foobar' }),
{
code: 'ERR_INVALID_ARG_TYPE',
type: TypeError,
message: 'The "options.flush" property must be of type number. ' +
"Received type string ('foobar')"
}
);
common.expectsError(
() => zlib.createGzip({ flush: 10000 }),
{
code: 'ERR_OUT_OF_RANGE',
type: RangeError,
message: 'The value of "options.flush" is out of range. It must ' +
'be >= 0 and <= 5. Received 10000'
}
);
zlib.createGzip({ finishFlush: zlib.constants.Z_SYNC_FLUSH });
common.expectsError(
() => zlib.createGzip({ finishFlush: 'foobar' }),
{
code: 'ERR_INVALID_ARG_TYPE',
type: TypeError,
message: 'The "options.finishFlush" property must be of type number. ' +
"Received type string ('foobar')"
}
);
common.expectsError(
() => zlib.createGzip({ finishFlush: 10000 }),
{
code: 'ERR_OUT_OF_RANGE',
type: RangeError,
message: 'The value of "options.finishFlush" is out of range. It must ' +
'be >= 0 and <= 5. Received 10000'
}
);
|