summaryrefslogtreecommitdiff
path: root/test/parallel/test-zlib-flush-flags.js
blob: fa9293cfc43175d7f8df4346102431951fa3e4f3 (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
'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_OPT_VALUE',
    type: RangeError
  }
);

common.expectsError(
  () => zlib.createGzip({ flush: 10000 }),
  {
    code: 'ERR_INVALID_OPT_VALUE',
    type: RangeError
  }
);

zlib.createGzip({ finishFlush: zlib.constants.Z_SYNC_FLUSH });

common.expectsError(
  () => zlib.createGzip({ finishFlush: 'foobar' }),
  {
    code: 'ERR_INVALID_OPT_VALUE',
    type: RangeError
  }
);

common.expectsError(
  () => zlib.createGzip({ finishFlush: 10000 }),
  {
    code: 'ERR_INVALID_OPT_VALUE',
    type: RangeError
  }
);