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';
|
|
|
|
import { Artifact } from './artifact';
|
|
|
|
import { BrowserContext } from './browserContext';
|
2021-10-25 17:56:57 -08:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
|
|
|
import yauzl from 'yauzl';
|
|
|
|
import yazl from 'yazl';
|
|
|
|
import { assert, calculateSha1 } from '../utils/utils';
|
|
|
|
import { ManualPromise } from '../utils/async';
|
|
|
|
import EventEmitter from 'events';
|
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-25 17:56:57 -08:00
|
|
|
private _sources: Set<string> | undefined;
|
2021-04-24 20:39:48 -07:00
|
|
|
|
|
|
|
constructor(channel: BrowserContext) {
|
|
|
|
this._context = channel;
|
|
|
|
}
|
|
|
|
|
2021-10-25 17:56:57 -08:00
|
|
|
async start(options: { name?: string, snapshots?: boolean, screenshots?: boolean, sources?: boolean } = {}) {
|
|
|
|
this._sources = options.sources ? new Set() : undefined;
|
|
|
|
this._context._connection.setSourceCollector(this._sources);
|
2021-06-28 13:27:38 -07:00
|
|
|
await this._context._wrapApiCall(async (channel: channels.BrowserContextChannel) => {
|
2021-08-31 17:03:31 -07:00
|
|
|
await channel.tracingStart(options);
|
|
|
|
await channel.tracingStartChunk();
|
2021-04-24 20:39:48 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-08-31 17:03:31 -07:00
|
|
|
async startChunk() {
|
2021-10-25 17:56:57 -08:00
|
|
|
this._context._connection.setSourceCollector(this._sources);
|
2021-08-03 16:08:06 -07:00
|
|
|
await this._context._wrapApiCall(async (channel: channels.BrowserContextChannel) => {
|
2021-08-31 17:03:31 -07:00
|
|
|
await channel.tracingStartChunk();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-10-18 21:05:59 -07:00
|
|
|
async stopChunk(options: { path?: string } = {}) {
|
2021-08-31 17:03:31 -07:00
|
|
|
await this._context._wrapApiCall(async (channel: channels.BrowserContextChannel) => {
|
|
|
|
await this._doStopChunk(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-06-28 13:27:38 -07:00
|
|
|
await this._context._wrapApiCall(async (channel: channels.BrowserContextChannel) => {
|
2021-08-31 17:03:31 -07:00
|
|
|
await this._doStopChunk(channel, options.path);
|
2021-08-04 21:11:35 -07:00
|
|
|
await 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;
|
|
|
|
this._context._connection.setSourceCollector(undefined);
|
|
|
|
const skipCompress = !this._context._connection.isRemote();
|
|
|
|
const result = await channel.tracingStopChunk({ save: !!filePath, skipCompress });
|
|
|
|
if (!filePath) {
|
|
|
|
// Not interested in artifacts.
|
2021-08-31 17:03:31 -07:00
|
|
|
return;
|
2021-10-25 17:56:57 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// If we don't have anything locally and we run against remote Playwright, compress on remote side.
|
|
|
|
if (!skipCompress && !sources) {
|
|
|
|
const artifact = Artifact.from(result.artifact!);
|
|
|
|
await artifact.saveAs(filePath);
|
|
|
|
await artifact.delete();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We either have sources to append or we were running locally, compress on client side
|
|
|
|
|
|
|
|
const promise = new ManualPromise<void>();
|
|
|
|
const zipFile = new yazl.ZipFile();
|
|
|
|
(zipFile as any as EventEmitter).on('error', error => promise.reject(error));
|
|
|
|
|
|
|
|
// Add sources.
|
|
|
|
if (sources) {
|
|
|
|
for (const source of sources)
|
|
|
|
zipFile.addFile(source, 'resources/src@' + calculateSha1(source) + '.txt');
|
|
|
|
}
|
|
|
|
|
|
|
|
await fs.promises.mkdir(path.dirname(filePath), { recursive: true });
|
|
|
|
if (skipCompress) {
|
|
|
|
// Local scenario, compress the entries.
|
|
|
|
for (const entry of result.entries!)
|
|
|
|
zipFile.addFile(entry.value, entry.name);
|
|
|
|
zipFile.end(undefined, () => {
|
|
|
|
zipFile.outputStream.pipe(fs.createWriteStream(filePath)).on('close', () => promise.resolve());
|
|
|
|
});
|
|
|
|
return promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remote scenario, repack.
|
|
|
|
const artifact = Artifact.from(result.artifact!);
|
|
|
|
const tmpPath = filePath! + '.tmp';
|
|
|
|
await artifact.saveAs(tmpPath);
|
2021-08-03 16:08:06 -07:00
|
|
|
await artifact.delete();
|
2021-10-25 17:56:57 -08:00
|
|
|
|
|
|
|
yauzl.open(filePath!, (err, inZipFile) => {
|
|
|
|
if (err) {
|
|
|
|
promise.reject(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
assert(inZipFile);
|
|
|
|
let pendingEntries = inZipFile.entryCount;
|
|
|
|
inZipFile.on('entry', entry => {
|
|
|
|
inZipFile.openReadStream(entry, (err, readStream) => {
|
|
|
|
if (err) {
|
|
|
|
promise.reject(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
zipFile.addReadStream(readStream!, entry.fileName);
|
|
|
|
if (--pendingEntries === 0) {
|
|
|
|
zipFile.end();
|
|
|
|
zipFile.outputStream.pipe(fs.createWriteStream(filePath)).on('close', () => {
|
|
|
|
fs.promises.unlink(tmpPath).then(() => {
|
|
|
|
promise.resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
return promise;
|
2021-08-03 16:08:06 -07:00
|
|
|
}
|
2021-04-24 20:39:48 -07:00
|
|
|
}
|