2021-04-24 20:39:48 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-05-12 12:21:54 -07:00
|
|
|
import * as api from '../../types/types';
|
2021-04-24 20:39:48 -07:00
|
|
|
import * as channels from '../protocol/channels';
|
2021-12-09 17:21:17 -08:00
|
|
|
import { ParsedStackTrace } from '../utils/stackTrace';
|
|
|
|
import { calculateSha1 } from '../utils/utils';
|
2021-04-24 20:39:48 -07:00
|
|
|
import { Artifact } from './artifact';
|
|
|
|
import { BrowserContext } from './browserContext';
|
2021-10-26 10:13:35 -08:00
|
|
|
import { ClientInstrumentationListener } from './clientInstrumentation';
|
2021-04-24 20:39:48 -07:00
|
|
|
|
2021-05-12 12:21:54 -07:00
|
|
|
export class Tracing implements api.Tracing {
|
2021-04-24 20:39:48 -07:00
|
|
|
private _context: BrowserContext;
|
2021-10-26 10:13:35 -08:00
|
|
|
private _sources = new Set<string>();
|
|
|
|
private _instrumentationListener: ClientInstrumentationListener;
|
2021-04-24 20:39:48 -07:00
|
|
|
|
|
|
|
constructor(channel: BrowserContext) {
|
|
|
|
this._context = channel;
|
2021-10-26 10:13:35 -08:00
|
|
|
this._instrumentationListener = {
|
|
|
|
onApiCallBegin: (apiCall: string, stackTrace: ParsedStackTrace | null) => {
|
|
|
|
for (const frame of stackTrace?.frames || [])
|
|
|
|
this._sources.add(frame.file);
|
|
|
|
}
|
|
|
|
};
|
2021-04-24 20:39:48 -07:00
|
|
|
}
|
|
|
|
|
2021-11-01 20:23:35 -08:00
|
|
|
async start(options: { name?: string, title?: string, snapshots?: boolean, screenshots?: boolean, sources?: boolean } = {}) {
|
2021-10-26 10:13:35 -08:00
|
|
|
if (options.sources)
|
|
|
|
this._context._instrumentation!.addListener(this._instrumentationListener);
|
2021-11-19 16:28:11 -08:00
|
|
|
await this._context._wrapApiCall(async () => {
|
|
|
|
await this._context._channel.tracingStart(options);
|
|
|
|
await this._context._channel.tracingStartChunk({ title: options.title });
|
2021-04-24 20:39:48 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-11-01 20:23:35 -08:00
|
|
|
async startChunk(options: { title?: string } = {}) {
|
2021-10-26 10:13:35 -08:00
|
|
|
this._sources = new Set();
|
2021-11-19 16:28:11 -08:00
|
|
|
await this._context._channel.tracingStartChunk(options);
|
2021-08-31 17:03:31 -07:00
|
|
|
}
|
|
|
|
|
2021-10-18 21:05:59 -07:00
|
|
|
async stopChunk(options: { path?: string } = {}) {
|
2021-11-19 16:28:11 -08:00
|
|
|
await this._doStopChunk(this._context._channel, options.path);
|
2021-08-03 16:08:06 -07:00
|
|
|
}
|
|
|
|
|
2021-06-02 10:04:25 -07:00
|
|
|
async stop(options: { path?: string } = {}) {
|
2021-11-19 16:28:11 -08:00
|
|
|
await this._context._wrapApiCall(async () => {
|
|
|
|
await this._doStopChunk(this._context._channel, options.path);
|
|
|
|
await this._context._channel.tracingStop();
|
2021-04-24 20:39:48 -07:00
|
|
|
});
|
|
|
|
}
|
2021-08-03 16:08:06 -07:00
|
|
|
|
2021-10-25 17:56:57 -08:00
|
|
|
private async _doStopChunk(channel: channels.BrowserContextChannel, filePath: string | undefined) {
|
|
|
|
const sources = this._sources;
|
2021-10-26 10:13:35 -08:00
|
|
|
this._sources = new Set();
|
|
|
|
this._context._instrumentation!.removeListener(this._instrumentationListener);
|
2021-12-09 17:21:17 -08:00
|
|
|
const isLocal = !this._context._connection.isRemote();
|
|
|
|
|
|
|
|
const result = await channel.tracingStopChunk({ save: !!filePath, skipCompress: isLocal });
|
2021-10-25 17:56:57 -08:00
|
|
|
if (!filePath) {
|
|
|
|
// Not interested in artifacts.
|
2021-08-31 17:03:31 -07:00
|
|
|
return;
|
2021-10-25 17:56:57 -08:00
|
|
|
}
|
|
|
|
|
2021-12-09 17:21:17 -08:00
|
|
|
const sourceEntries: channels.NameValue[] = [];
|
|
|
|
for (const value of sources)
|
|
|
|
sourceEntries.push({ name: 'resources/src@' + calculateSha1(value) + '.txt', value });
|
|
|
|
|
|
|
|
if (!isLocal) {
|
|
|
|
// We run against remote Playwright, compress on remote side.
|
2021-10-25 17:56:57 -08:00
|
|
|
const artifact = Artifact.from(result.artifact!);
|
|
|
|
await artifact.saveAs(filePath);
|
|
|
|
await artifact.delete();
|
|
|
|
}
|
|
|
|
|
2021-12-09 17:21:17 -08:00
|
|
|
if (isLocal || sourceEntries)
|
|
|
|
await this._context._localUtils.zip(filePath, sourceEntries.concat(result.entries));
|
2021-08-03 16:08:06 -07:00
|
|
|
}
|
2021-04-24 20:39:48 -07:00
|
|
|
}
|