Skip to content

Commit

Permalink
fix: use non-deprecated tracing categories api (#7413)
Browse files Browse the repository at this point in the history
  • Loading branch information
Janpot committed Sep 10, 2021
1 parent f04ffdb commit 040a0e5
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 4 deletions.
10 changes: 9 additions & 1 deletion src/common/Tracing.ts
Expand Up @@ -87,11 +87,19 @@ export class Tracing {

if (screenshots) categories.push('disabled-by-default-devtools.screenshot');

const excludedCategories = categories
.filter((cat) => cat.startsWith('-'))
.map((cat) => cat.slice(1));
const includedCategories = categories.filter((cat) => !cat.startsWith('-'));

this._path = path;
this._recording = true;
await this._client.send('Tracing.start', {
transferMode: 'ReturnAsStream',
categories: categories.join(','),
traceConfig: {
excludedCategories,
includedCategories,
},
});
}

Expand Down
29 changes: 26 additions & 3 deletions test/tracing.spec.ts
Expand Up @@ -56,15 +56,38 @@ describeChromeOnly('Tracing', function () {
it('should run with custom categories if provided', async () => {
await page.tracing.start({
path: outputFile,
categories: ['disabled-by-default-v8.cpu_profiler.hires'],
categories: ['-*', 'disabled-by-default-v8.cpu_profiler.hires'],
});
await page.tracing.stop();

const traceJson = JSON.parse(
fs.readFileSync(outputFile, { encoding: 'utf8' })
);
expect(traceJson.metadata['trace-config']).toContain(
'disabled-by-default-v8.cpu_profiler.hires'
const traceConfig = JSON.parse(traceJson.metadata['trace-config']);
expect(traceConfig.included_categories).toEqual([
'disabled-by-default-v8.cpu_profiler.hires',
]);
expect(traceConfig.excluded_categories).toEqual(['*']);
expect(traceJson.traceEvents).not.toContainEqual(
expect.objectContaining({
cat: 'toplevel',
})
);
});

it('should run with default categories', async () => {
await page.tracing.start({
path: outputFile,
});
await page.tracing.stop();

const traceJson = JSON.parse(
fs.readFileSync(outputFile, { encoding: 'utf8' })
);
expect(traceJson.traceEvents).toContainEqual(
expect.objectContaining({
cat: 'toplevel',
})
);
});
it('should throw if tracing on two pages', async () => {
Expand Down

0 comments on commit 040a0e5

Please sign in to comment.