/** * 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. */ import * as fs from 'fs'; import * as path from 'path'; import * as playwright from '../../..'; import * as util from 'util'; import { ScreenshotGenerator } from './screenshotGenerator'; import { SnapshotRouter } from './snapshotRouter'; import { readTraceFile, TraceModel } from './traceModel'; import type { ActionTraceEvent, PageSnapshot, TraceEvent } from '../../trace/traceTypes'; const fsReadFileAsync = util.promisify(fs.readFile.bind(fs)); type TraceViewerDocument = { resourcesDir: string; model: TraceModel; snapshotRouter: SnapshotRouter; screenshotGenerator: ScreenshotGenerator; }; const emptyModel: TraceModel = { contexts: [ { startTime: 0, endTime: 1, created: { timestamp: Date.now(), type: 'context-created', browserName: 'none', contextId: '', deviceScaleFactor: 1, isMobile: false, viewportSize: { width: 800, height: 600 }, }, destroyed: { timestamp: Date.now(), type: 'context-destroyed', contextId: '', }, name: '', filePath: '', pages: [], resourcesByUrl: new Map() } ] }; class TraceViewer { private _document: TraceViewerDocument | undefined; constructor() { } async load(traceDir: string) { const resourcesDir = path.join(traceDir, 'resources'); const model = { contexts: [] }; this._document = { model, resourcesDir, snapshotRouter: new SnapshotRouter(resourcesDir), screenshotGenerator: new ScreenshotGenerator(resourcesDir, model), }; for (const name of fs.readdirSync(traceDir)) { if (!name.endsWith('.trace')) continue; const filePath = path.join(traceDir, name); const traceContent = await fsReadFileAsync(filePath, 'utf8'); const events = traceContent.split('\n').map(line => line.trim()).filter(line => !!line).map(line => JSON.parse(line)) as TraceEvent[]; readTraceFile(events, model, filePath); } } async show() { const browser = await playwright.chromium.launch({ headless: false }); const uiPage = await browser.newPage({ viewport: null }); uiPage.on('close', () => process.exit(0)); await uiPage.exposeBinding('readFile', async (_, path: string) => { return fs.readFileSync(path).toString(); }); await uiPage.exposeBinding('renderSnapshot', async (_, action: ActionTraceEvent) => { if (!this._document) return; try { if (!action.snapshot) { const snapshotFrame = uiPage.frames()[1]; await snapshotFrame.goto('data:text/html,No snapshot available'); return; } const snapshot = await fsReadFileAsync(path.join(this._document.resourcesDir, action.snapshot!.sha1), 'utf8'); const snapshotObject = JSON.parse(snapshot) as PageSnapshot; const contextEntry = this._document.model.contexts.find(entry => entry.created.contextId === action.contextId)!; this._document.snapshotRouter.selectSnapshot(snapshotObject, contextEntry); // TODO: fix Playwright bug where frame.name is lost (empty). const snapshotFrame = uiPage.frames()[1]; try { await snapshotFrame.goto(snapshotObject.frames[0].url); } catch (e) { if (!e.message.includes('frame was detached')) console.error(e); return; } const element = await snapshotFrame.$(action.selector || '*[__playwright_target__]').catch(e => undefined); if (element) { await element.evaluate(e => { e.style.backgroundColor = '#ff69b460'; }); } } catch (e) { console.log(e); // eslint-disable-line no-console } }); await uiPage.exposeBinding('getTraceModel', () => this._document ? this._document.model : emptyModel); await uiPage.route('**/*', (route, request) => { if (request.frame().parentFrame() && this._document) { this._document.snapshotRouter.route(route); return; } try { const url = new URL(request.url()); if (this._document && request.url().includes('action-preview')) { const fullPath = url.pathname.substring('/action-preview/'.length); const actionId = fullPath.substring(0, fullPath.indexOf('.png')); this._document.screenshotGenerator.generateScreenshot(actionId).then(body => { if (body) route.fulfill({ contentType: 'image/png', body }); else route.fulfill({ status: 404 }); }); return; } const filePath = path.join(__dirname, 'web', url.pathname.substring(1)); const body = fs.readFileSync(filePath); route.fulfill({ contentType: extensionToMime[path.extname(url.pathname).substring(1)] || 'text/plain', body, }); } catch (e) { console.log(e); // eslint-disable-line no-console route.fulfill({ status: 404 }); } }); await uiPage.goto('http://trace-viewer/index.html'); } } export async function showTraceViewer(traceDir: string) { const traceViewer = new TraceViewer(); if (traceDir) await traceViewer.load(traceDir); await traceViewer.show(); } const extensionToMime: { [key: string]: string } = { 'css': 'text/css', 'html': 'text/html', 'jpeg': 'image/jpeg', 'jpg': 'image/jpeg', 'js': 'application/javascript', 'png': 'image/png', 'ttf': 'font/ttf', 'svg': 'image/svg+xml', 'webp': 'image/webp', 'woff': 'font/woff', 'woff2': 'font/woff2', };