2020-08-05 01:57:25 +03:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2020-08-11 02:48:34 +03:00
|
|
|
import '../base.fixture';
|
2020-08-14 03:32:27 +03:00
|
|
|
import { registerFixture } from '../runner/fixtures';
|
2020-08-05 01:57:25 +03:00
|
|
|
|
2020-08-07 21:19:15 +03:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
|
|
|
import { ChromiumBrowser } from '../..';
|
2020-08-14 02:00:23 +03:00
|
|
|
const {FFOX, CHROMIUM, WEBKIT} = testOptions;
|
2020-08-07 21:19:15 +03:00
|
|
|
declare global {
|
|
|
|
interface FixtureState {
|
|
|
|
outputFile: string;
|
|
|
|
}
|
|
|
|
}
|
2020-08-14 03:32:27 +03:00
|
|
|
registerFixture('outputFile', async ({tmpDir}, test) => {
|
|
|
|
const outputFile = path.join(tmpDir, `trace.json`);
|
2020-08-05 01:57:25 +03:00
|
|
|
await test(outputFile);
|
|
|
|
if (fs.existsSync(outputFile))
|
|
|
|
fs.unlinkSync(outputFile);
|
|
|
|
});
|
|
|
|
|
|
|
|
it.skip(!CHROMIUM)('should output a trace', async({browser, page, server, outputFile}) => {
|
2020-08-07 21:19:15 +03:00
|
|
|
await (browser as ChromiumBrowser).startTracing(page, {screenshots: true, path: outputFile});
|
2020-08-05 01:57:25 +03:00
|
|
|
await page.goto(server.PREFIX + '/grid.html');
|
2020-08-07 21:19:15 +03:00
|
|
|
await (browser as ChromiumBrowser).stopTracing();
|
2020-08-05 01:57:25 +03:00
|
|
|
expect(fs.existsSync(outputFile)).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it.skip(!CHROMIUM)('should run with custom categories if provided', async({browser, page, outputFile}) => {
|
2020-08-07 21:19:15 +03:00
|
|
|
await (browser as ChromiumBrowser).startTracing(page, {path: outputFile, categories: ['disabled-by-default-v8.cpu_profiler.hires']});
|
|
|
|
await (browser as ChromiumBrowser).stopTracing();
|
2020-08-05 01:57:25 +03:00
|
|
|
|
|
|
|
const traceJson = JSON.parse(fs.readFileSync(outputFile).toString());
|
2020-08-07 21:19:15 +03:00
|
|
|
expect(traceJson.metadata['trace-config']).toContain('disabled-by-default-v8.cpu_profiler.hires');
|
2020-08-05 01:57:25 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it.skip(!CHROMIUM)('should throw if tracing on two pages', async({browser, page, outputFile}) => {
|
2020-08-07 21:19:15 +03:00
|
|
|
await (browser as ChromiumBrowser).startTracing(page, {path: outputFile});
|
2020-08-05 01:57:25 +03:00
|
|
|
const newPage = await browser.newPage();
|
|
|
|
let error = null;
|
2020-08-07 21:19:15 +03:00
|
|
|
await (browser as ChromiumBrowser).startTracing(newPage, {path: outputFile}).catch(e => error = e);
|
2020-08-05 01:57:25 +03:00
|
|
|
await newPage.close();
|
|
|
|
expect(error).toBeTruthy();
|
2020-08-07 21:19:15 +03:00
|
|
|
await (browser as ChromiumBrowser).stopTracing();
|
2020-08-05 01:57:25 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it.skip(!CHROMIUM)('should return a buffer', async({browser, page, server, outputFile}) => {
|
2020-08-07 21:19:15 +03:00
|
|
|
await (browser as ChromiumBrowser).startTracing(page, {screenshots: true, path: outputFile});
|
2020-08-05 01:57:25 +03:00
|
|
|
await page.goto(server.PREFIX + '/grid.html');
|
2020-08-07 21:19:15 +03:00
|
|
|
const trace = await (browser as ChromiumBrowser).stopTracing();
|
2020-08-05 01:57:25 +03:00
|
|
|
const buf = fs.readFileSync(outputFile);
|
2020-08-07 21:19:15 +03:00
|
|
|
expect(trace.toString()).toEqual(buf.toString());
|
2020-08-05 01:57:25 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it.skip(!CHROMIUM)('should work without options', async({browser, page, server}) => {
|
2020-08-07 21:19:15 +03:00
|
|
|
await (browser as ChromiumBrowser).startTracing(page);
|
2020-08-05 01:57:25 +03:00
|
|
|
await page.goto(server.PREFIX + '/grid.html');
|
2020-08-07 21:19:15 +03:00
|
|
|
const trace = await (browser as ChromiumBrowser).stopTracing();
|
2020-08-05 01:57:25 +03:00
|
|
|
expect(trace).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
|
|
|
it.skip(!CHROMIUM)('should support a buffer without a path', async({browser, page, server}) => {
|
2020-08-07 21:19:15 +03:00
|
|
|
await (browser as ChromiumBrowser).startTracing(page, {screenshots: true});
|
2020-08-05 01:57:25 +03:00
|
|
|
await page.goto(server.PREFIX + '/grid.html');
|
2020-08-07 21:19:15 +03:00
|
|
|
const trace = await (browser as ChromiumBrowser).stopTracing();
|
|
|
|
expect(trace.toString()).toContain('screenshot');
|
2020-08-05 01:57:25 +03:00
|
|
|
});
|