Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-heapdump-inspector.js « pummel « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b08e33fdb2bce2a1e6173391911ff04b8759764 (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
// Flags: --expose-internals
'use strict';
const common = require('../common');

common.skipIfInspectorDisabled();

const { validateSnapshotNodes } = require('../common/heap');
const inspector = require('inspector');

const snapshotNode = {
  children: [
    { node_name: 'Node / InspectorSession', edge_name: 'session' },
  ]
};

// Starts with no JSBindingsConnection (or 1 if coverage enabled).
{
  const expected = [];
  if (process.env.NODE_V8_COVERAGE) {
    expected.push(snapshotNode);
  }
  validateSnapshotNodes('Node / JSBindingsConnection', expected);
}

// JSBindingsConnection should be added.
{
  const session = new inspector.Session();
  session.connect();
  const expected = [
    {
      children: [
        { node_name: 'Node / InspectorSession', edge_name: 'session' },
        { node_name: 'Connection', edge_name: 'wrapped' },
        (edge) => edge.name === 'callback' &&
          (edge.to.type === undefined || // embedded graph
           edge.to.type === 'closure'), // snapshot
      ]
    },
  ];
  if (process.env.NODE_V8_COVERAGE) {
    expected.push(snapshotNode);
  }
  validateSnapshotNodes('Node / JSBindingsConnection', expected);
}