summaryrefslogtreecommitdiff
path: root/test/parallel/test-zlib-deflate-raw-inherits.js
blob: 34bf31058a1d6b3e554d3f7b8a23f4b267a3bddb (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 { Readable } = require('stream');

// Validates that zlib.DeflateRaw can be inherited
// with Object.setPrototypeOf

function NotInitialized(options) {
  DeflateRaw.call(this, options);
  this.prop = true;
}
Object.setPrototypeOf(NotInitialized.prototype, DeflateRaw.prototype);
Object.setPrototypeOf(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();