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

test-trace-event.js « parallel « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18734705834407299e105579502cf5cca34ab381 (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
'use strict';
const common = require('../common');
const assert = require('assert');
const cp = require('child_process');
const fs = require('fs');

const CODE = 'for (var i = 0; i < 100000; i++) { "test" + i }';
const FILE_NAME = 'node_trace.1.log';

common.refreshTmpDir();
process.chdir(common.tmpDir);

const proc_no_categories = cp.spawn(process.execPath,
  [ '--trace-events-enabled', '--trace-event-categories', '""', '-e', CODE ]);

proc_no_categories.once('exit', common.mustCall(() => {
  assert(!common.fileExists(FILE_NAME));

  const proc = cp.spawn(process.execPath,
  [ '--trace-events-enabled', '-e', CODE ]);

  proc.once('exit', common.mustCall(() => {
    assert(common.fileExists(FILE_NAME));
    fs.readFile(FILE_NAME, (err, data) => {
      const traces = JSON.parse(data.toString()).traceEvents;
      assert(traces.length > 0);
      // Values that should be present on all runs to approximate correctness.
      assert(traces.some((trace) => { return trace.pid === proc.pid; }));
      assert(traces.some((trace) => { return trace.cat === 'v8'; }));
      assert(traces.some((trace) => {
        return trace.name === 'V8.ScriptCompiler';
      }));
    });
  }));
}));