mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
210 lines
7.5 KiB
TypeScript
210 lines
7.5 KiB
TypeScript
/**
|
|
* 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 type { Language } from '@isomorphic/locatorGenerators';
|
|
import type { ResourceSnapshot } from '@trace/snapshot';
|
|
import type * as trace from '@trace/trace';
|
|
import type { ActionTraceEvent, EventTraceEvent } from '@trace/trace';
|
|
import type { ContextEntry, PageEntry } from '../entries';
|
|
import type { SerializedError, StackFrame } from '@protocol/channels';
|
|
|
|
const contextSymbol = Symbol('context');
|
|
const nextInContextSymbol = Symbol('next');
|
|
const prevInListSymbol = Symbol('prev');
|
|
const eventsSymbol = Symbol('events');
|
|
const resourcesSymbol = Symbol('resources');
|
|
|
|
export type SourceModel = {
|
|
errors: { error: SerializedError['error'], location: StackFrame }[];
|
|
content: string | undefined;
|
|
};
|
|
|
|
export class MultiTraceModel {
|
|
readonly startTime: number;
|
|
readonly endTime: number;
|
|
readonly browserName: string;
|
|
readonly platform?: string;
|
|
readonly wallTime?: number;
|
|
readonly title?: string;
|
|
readonly options: trace.BrowserContextEventOptions;
|
|
readonly pages: PageEntry[];
|
|
readonly actions: trace.ActionTraceEvent[];
|
|
readonly events: trace.EventTraceEvent[];
|
|
readonly hasSource: boolean;
|
|
readonly sdkLanguage: Language | undefined;
|
|
readonly testIdAttributeName: string | undefined;
|
|
readonly sources: Map<string, SourceModel>;
|
|
|
|
|
|
constructor(contexts: ContextEntry[]) {
|
|
contexts.forEach(contextEntry => indexModel(contextEntry));
|
|
|
|
this.browserName = contexts[0]?.browserName || '';
|
|
this.sdkLanguage = contexts[0]?.sdkLanguage;
|
|
this.testIdAttributeName = contexts[0]?.testIdAttributeName;
|
|
this.platform = contexts[0]?.platform || '';
|
|
this.title = contexts[0]?.title || '';
|
|
this.options = contexts[0]?.options || {};
|
|
this.wallTime = contexts.map(c => c.wallTime).reduce((prev, cur) => Math.min(prev || Number.MAX_VALUE, cur!), Number.MAX_VALUE);
|
|
this.startTime = contexts.map(c => c.startTime).reduce((prev, cur) => Math.min(prev, cur), Number.MAX_VALUE);
|
|
this.endTime = contexts.map(c => c.endTime).reduce((prev, cur) => Math.max(prev, cur), Number.MIN_VALUE);
|
|
this.pages = ([] as PageEntry[]).concat(...contexts.map(c => c.pages));
|
|
this.actions = mergeActions(contexts);
|
|
this.events = ([] as EventTraceEvent[]).concat(...contexts.map(c => c.events));
|
|
this.hasSource = contexts.some(c => c.hasSource);
|
|
|
|
this.events.sort((a1, a2) => a1.time - a2.time);
|
|
this.sources = collectSources(this.actions);
|
|
}
|
|
}
|
|
|
|
function indexModel(context: ContextEntry) {
|
|
for (const page of context.pages)
|
|
(page as any)[contextSymbol] = context;
|
|
for (let i = 0; i < context.actions.length; ++i) {
|
|
const action = context.actions[i] as any;
|
|
action[contextSymbol] = context;
|
|
action[nextInContextSymbol] = context.actions[i + 1];
|
|
}
|
|
for (const event of context.events)
|
|
(event as any)[contextSymbol] = context;
|
|
}
|
|
|
|
function mergeActions(contexts: ContextEntry[]) {
|
|
const map = new Map<string, ActionTraceEvent>();
|
|
|
|
// Protocol call aka isPrimary contexts have startTime/endTime as server-side times.
|
|
// Step aka non-isPrimary contexts have startTime/endTime are client-side times.
|
|
// Adjust expect startTime/endTime on non-primary contexts to put them on a single timeline.
|
|
let offset = 0;
|
|
const primaryContexts = contexts.filter(context => context.isPrimary);
|
|
const nonPrimaryContexts = contexts.filter(context => !context.isPrimary);
|
|
|
|
for (const context of primaryContexts) {
|
|
for (const action of context.actions)
|
|
map.set(`${action.apiName}@${action.wallTime}`, action);
|
|
if (!offset && context.actions.length)
|
|
offset = context.actions[0].startTime - context.actions[0].wallTime;
|
|
}
|
|
|
|
for (const context of nonPrimaryContexts) {
|
|
for (const action of context.actions) {
|
|
if (offset) {
|
|
const duration = action.endTime - action.startTime;
|
|
if (action.startTime)
|
|
action.startTime = action.wallTime + offset;
|
|
if (action.endTime)
|
|
action.endTime = action.startTime + duration;
|
|
}
|
|
|
|
const key = `${action.apiName}@${action.wallTime}`;
|
|
const existing = map.get(key);
|
|
if (existing && existing.apiName === action.apiName) {
|
|
if (action.error)
|
|
existing.error = action.error;
|
|
if (action.attachments)
|
|
existing.attachments = action.attachments;
|
|
continue;
|
|
}
|
|
map.set(key, action);
|
|
}
|
|
}
|
|
|
|
const result = [...map.values()];
|
|
result.sort((a1, a2) => a1.wallTime - a2.wallTime);
|
|
for (let i = 1; i < result.length; ++i)
|
|
(result[i] as any)[prevInListSymbol] = result[i - 1];
|
|
|
|
return result;
|
|
}
|
|
|
|
export function idForAction(action: ActionTraceEvent) {
|
|
return `${action.pageId || 'none'}:${action.callId}`;
|
|
}
|
|
|
|
export function context(action: ActionTraceEvent): ContextEntry {
|
|
return (action as any)[contextSymbol];
|
|
}
|
|
|
|
function nextInContext(action: ActionTraceEvent): ActionTraceEvent {
|
|
return (action as any)[nextInContextSymbol];
|
|
}
|
|
|
|
export function prevInList(action: ActionTraceEvent): ActionTraceEvent {
|
|
return (action as any)[prevInListSymbol];
|
|
}
|
|
|
|
export function stats(action: ActionTraceEvent): { errors: number, warnings: number } {
|
|
let errors = 0;
|
|
let warnings = 0;
|
|
const c = context(action);
|
|
for (const event of eventsForAction(action)) {
|
|
if (event.method === 'console') {
|
|
const { guid } = event.params.message;
|
|
const type = c.initializers[guid]?.type;
|
|
if (type === 'warning')
|
|
++warnings;
|
|
else if (type === 'error')
|
|
++errors;
|
|
}
|
|
if (event.method === 'pageError')
|
|
++errors;
|
|
}
|
|
return { errors, warnings };
|
|
}
|
|
|
|
export function eventsForAction(action: ActionTraceEvent): EventTraceEvent[] {
|
|
let result: EventTraceEvent[] = (action as any)[eventsSymbol];
|
|
if (result)
|
|
return result;
|
|
|
|
const nextAction = nextInContext(action);
|
|
result = context(action).events.filter(event => {
|
|
return event.time >= action.startTime && (!nextAction || event.time < nextAction.startTime);
|
|
});
|
|
(action as any)[eventsSymbol] = result;
|
|
return result;
|
|
}
|
|
|
|
export function resourcesForAction(action: ActionTraceEvent): ResourceSnapshot[] {
|
|
let result: ResourceSnapshot[] = (action as any)[resourcesSymbol];
|
|
if (result)
|
|
return result;
|
|
|
|
const nextAction = nextInContext(action);
|
|
result = context(action).resources.filter(resource => {
|
|
return typeof resource._monotonicTime === 'number' && resource._monotonicTime > action.startTime && (!nextAction || resource._monotonicTime < nextAction.startTime);
|
|
});
|
|
(action as any)[resourcesSymbol] = result;
|
|
return result;
|
|
}
|
|
|
|
function collectSources(actions: trace.ActionTraceEvent[]): Map<string, SourceModel> {
|
|
const result = new Map<string, SourceModel>();
|
|
for (const action of actions) {
|
|
for (const frame of action.stack || []) {
|
|
let source = result.get(frame.file);
|
|
if (!source) {
|
|
source = { errors: [], content: undefined };
|
|
result.set(frame.file, source);
|
|
}
|
|
}
|
|
if (action.error && action.stack?.[0])
|
|
result.get(action.stack[0].file)!.errors.push({ error: action.error, location: action.stack?.[0] });
|
|
}
|
|
return result;
|
|
}
|