summaryrefslogtreecommitdiff
path: root/test/parallel/test-zlib-deflate-raw-inherits.js
blob: a24726a3fbe4651baed3619682b83c87a765a983 (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
'use strict';

require('../common');
const { DeflateRaw } = require('zlib');
const { inherits } = require('util');
const { Readable } = require('stream');

// validates that zlib.DeflateRaw can be inherited
// with util.inherits

function NotInitialized(options) {
  DeflateRaw.call(this, options);
  this.prop = true;
}
inherits(NotInitialized, DeflateRaw);

const dest = new NotInitialized();

const read = new Readable({
  read() {
    this.push(Buffer.from('a test string'));
    this.push(null);
  }
});

read.pipe(dest);
dest.resume();