Similarly to how we handle stdio, this captures all protocol messages and logs them when a test fails. Great for when debugging tests in parallel or for bot failures! Currently I made `DEBUGP=true` turn this on locally, and turned it on always for the CI. Open to suggestions for a better environment variable. I would turn it on by default always, like the stdio logging, but it adds an enormous amount of noise to our error messages.
195 lines
7.5 KiB
TypeScript
195 lines
7.5 KiB
TypeScript
/**
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
* Modifications 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 platform from '../platform';
|
|
import { ConnectionTransport } from '../transport';
|
|
import { assert } from '../helper';
|
|
import { Protocol } from './protocol';
|
|
|
|
export const ConnectionEvents = {
|
|
Disconnected: Symbol('ConnectionEvents.Disconnected')
|
|
};
|
|
|
|
// CRPlaywright uses this special id to issue Browser.close command which we
|
|
// should ignore.
|
|
export const kBrowserCloseMessageId = -9999;
|
|
|
|
export class CRConnection extends platform.EventEmitter {
|
|
private _lastId = 0;
|
|
private _transport: ConnectionTransport;
|
|
private _sessions = new Map<string, CRSession>();
|
|
readonly rootSession: CRSession;
|
|
_closed = false;
|
|
_debugProtocol: (message: string) => void;
|
|
|
|
constructor(transport: ConnectionTransport) {
|
|
super();
|
|
this._transport = transport;
|
|
this._transport.onmessage = this._onMessage.bind(this);
|
|
this._transport.onclose = this._onClose.bind(this);
|
|
this.rootSession = new CRSession(this, 'browser', '');
|
|
this._sessions.set('', this.rootSession);
|
|
this._debugProtocol = platform.debug('pw:protocol');
|
|
}
|
|
|
|
static fromSession(session: CRSession): CRConnection {
|
|
return session._connection!;
|
|
}
|
|
|
|
session(sessionId: string): CRSession | null {
|
|
return this._sessions.get(sessionId) || null;
|
|
}
|
|
|
|
_rawSend(sessionId: string, message: any): number {
|
|
const id = ++this._lastId;
|
|
message.id = id;
|
|
if (sessionId)
|
|
message.sessionId = sessionId;
|
|
const data = JSON.stringify(message);
|
|
this._debugProtocol('SEND ► ' + data);
|
|
this._transport.send(data);
|
|
return id;
|
|
}
|
|
|
|
async _onMessage(message: string) {
|
|
this._debugProtocol('◀ RECV ' + message);
|
|
const object = JSON.parse(message);
|
|
if (object.id === kBrowserCloseMessageId)
|
|
return;
|
|
if (object.method === 'Target.attachedToTarget') {
|
|
const sessionId = object.params.sessionId;
|
|
const session = new CRSession(this, object.params.targetInfo.type, sessionId);
|
|
this._sessions.set(sessionId, session);
|
|
} else if (object.method === 'Target.detachedFromTarget') {
|
|
const session = this._sessions.get(object.params.sessionId);
|
|
if (session) {
|
|
session._onClosed();
|
|
this._sessions.delete(object.params.sessionId);
|
|
}
|
|
}
|
|
const session = this._sessions.get(object.sessionId || '');
|
|
if (session)
|
|
session._onMessage(object);
|
|
}
|
|
|
|
_onClose() {
|
|
this._closed = true;
|
|
this._transport.onmessage = undefined;
|
|
this._transport.onclose = undefined;
|
|
for (const session of this._sessions.values())
|
|
session._onClosed();
|
|
this._sessions.clear();
|
|
Promise.resolve().then(() => this.emit(ConnectionEvents.Disconnected));
|
|
}
|
|
|
|
close() {
|
|
if (!this._closed)
|
|
this._transport.close();
|
|
}
|
|
|
|
async createSession(targetInfo: Protocol.Target.TargetInfo): Promise<CRSession> {
|
|
const { sessionId } = await this.rootSession.send('Target.attachToTarget', { targetId: targetInfo.targetId, flatten: true });
|
|
return this._sessions.get(sessionId)!;
|
|
}
|
|
|
|
async createBrowserSession(): Promise<CRSession> {
|
|
const { sessionId } = await this.rootSession.send('Target.attachToBrowserTarget');
|
|
return this._sessions.get(sessionId)!;
|
|
}
|
|
}
|
|
|
|
export const CRSessionEvents = {
|
|
Disconnected: Symbol('Events.CDPSession.Disconnected')
|
|
};
|
|
|
|
export class CRSession extends platform.EventEmitter {
|
|
_connection: CRConnection | null;
|
|
private _callbacks = new Map<number, {resolve: (o: any) => void, reject: (e: Error) => void, error: Error, method: string}>();
|
|
private _targetType: string;
|
|
private _sessionId: string;
|
|
on: <T extends keyof Protocol.Events | symbol>(event: T, listener: (payload: T extends symbol ? any : Protocol.Events[T extends keyof Protocol.Events ? T : never]) => void) => this;
|
|
addListener: <T extends keyof Protocol.Events | symbol>(event: T, listener: (payload: T extends symbol ? any : Protocol.Events[T extends keyof Protocol.Events ? T : never]) => void) => this;
|
|
off: <T extends keyof Protocol.Events | symbol>(event: T, listener: (payload: T extends symbol ? any : Protocol.Events[T extends keyof Protocol.Events ? T : never]) => void) => this;
|
|
removeListener: <T extends keyof Protocol.Events | symbol>(event: T, listener: (payload: T extends symbol ? any : Protocol.Events[T extends keyof Protocol.Events ? T : never]) => void) => this;
|
|
once: <T extends keyof Protocol.Events | symbol>(event: T, listener: (payload: T extends symbol ? any : Protocol.Events[T extends keyof Protocol.Events ? T : never]) => void) => this;
|
|
|
|
constructor(connection: CRConnection, targetType: string, sessionId: string) {
|
|
super();
|
|
this._connection = connection;
|
|
this._targetType = targetType;
|
|
this._sessionId = sessionId;
|
|
|
|
this.on = super.on;
|
|
this.addListener = super.addListener;
|
|
this.off = super.removeListener;
|
|
this.removeListener = super.removeListener;
|
|
this.once = super.once;
|
|
}
|
|
|
|
send<T extends keyof Protocol.CommandParameters>(
|
|
method: T,
|
|
params?: Protocol.CommandParameters[T]
|
|
): Promise<Protocol.CommandReturnValues[T]> {
|
|
if (!this._connection)
|
|
return Promise.reject(new Error(`Protocol error (${method}): Session closed. Most likely the ${this._targetType} has been closed.`));
|
|
const id = this._connection._rawSend(this._sessionId, { method, params });
|
|
return new Promise((resolve, reject) => {
|
|
this._callbacks.set(id, {resolve, reject, error: new Error(), method});
|
|
});
|
|
}
|
|
|
|
_onMessage(object: { id?: number; method: string; params: any; error: { message: string; data: any; }; result?: any; }) {
|
|
if (object.id && this._callbacks.has(object.id)) {
|
|
const callback = this._callbacks.get(object.id)!;
|
|
this._callbacks.delete(object.id);
|
|
if (object.error)
|
|
callback.reject(createProtocolError(callback.error, callback.method, object));
|
|
else
|
|
callback.resolve(object.result);
|
|
} else {
|
|
assert(!object.id);
|
|
Promise.resolve().then(() => this.emit(object.method, object.params));
|
|
}
|
|
}
|
|
|
|
async detach() {
|
|
if (!this._connection)
|
|
throw new Error(`Session already detached. Most likely the ${this._targetType} has been closed.`);
|
|
await this._connection.rootSession.send('Target.detachFromTarget', { sessionId: this._sessionId });
|
|
}
|
|
|
|
_onClosed() {
|
|
for (const callback of this._callbacks.values())
|
|
callback.reject(rewriteError(callback.error, `Protocol error (${callback.method}): Target closed.`));
|
|
this._callbacks.clear();
|
|
this._connection = null;
|
|
Promise.resolve().then(() => this.emit(CRSessionEvents.Disconnected));
|
|
}
|
|
}
|
|
|
|
function createProtocolError(error: Error, method: string, object: { error: { message: string; data: any; }; }): Error {
|
|
let message = `Protocol error (${method}): ${object.error.message}`;
|
|
if ('data' in object.error)
|
|
message += ` ${object.error.data}`;
|
|
return rewriteError(error, message);
|
|
}
|
|
|
|
function rewriteError(error: Error, message: string): Error {
|
|
error.message = message;
|
|
return error;
|
|
}
|