summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-session-gc-while-write-scheduled.js
blob: aef9d9571d555937832a13587690198dfd560c9f (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
// Flags: --expose-gc

'use strict';
const common = require('../common');
if (!common.hasCrypto)
  common.skip('missing crypto');
const http2 = require('http2');
const makeDuplexPair = require('../common/duplexpair');
const tick = require('../common/tick');

// This tests that running garbage collection while an Http2Session has
// a write *scheduled*, it will survive that garbage collection.

{
  // This creates a session and schedules a write (for the settings frame).
  let client = http2.connect('http://localhost:80', {
    createConnection: common.mustCall(() => makeDuplexPair().clientSide)
  });

  // First, wait for any nextTicks() and their responses
  // from the `connect()` call to run.
  tick(10, () => {
    // This schedules a write.
    client.settings(http2.getDefaultSettings());
    client = null;
    global.gc();
  });
}