summaryrefslogtreecommitdiff
path: root/test/parallel/test-trace-events-file-pattern.js
blob: d9cd8e66d2364607481c74f99059b5c89cd741c1 (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
'use strict';
const common = require('../common');
const tmpdir = require('../common/tmpdir');
const assert = require('assert');
const cp = require('child_process');
const fs = require('fs');
const path = require('path');

tmpdir.refresh();

const CODE =
  'setTimeout(() => { for (let i = 0; i < 100000; i++) { "test" + i } }, 1)';

const proc = cp.spawn(process.execPath, [
  '--trace-events-enabled',
  '--trace-event-file-pattern',
  // eslint-disable-next-line no-template-curly-in-string
  '${pid}-${rotation}-${pid}-${rotation}.tracing.log',
  '-e', CODE
], { cwd: tmpdir.path });

proc.once('exit', common.mustCall(() => {
  const expectedFilename = path.join(tmpdir.path,
                                     `${proc.pid}-1-${proc.pid}-1.tracing.log`);

  assert(fs.existsSync(expectedFilename));
  fs.readFile(expectedFilename, common.mustCall((err, data) => {
    const traces = JSON.parse(data.toString()).traceEvents;
    assert(traces.length > 0);
  }));
}));