Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core(fr): add fetcher to transitional driver #12419

Merged
merged 2 commits into from
Apr 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions lighthouse-core/fraggle-rock/gather/driver.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

const ProtocolSession = require('./session.js');
const ExecutionContext = require('../../gather/driver/execution-context.js');
const Fetcher = require('../../gather/fetcher.js');

/** @return {*} */
const throwNotConnectedFn = () => {
Expand Down Expand Up @@ -37,6 +38,8 @@ class Driver {
this._session = undefined;
/** @type {ExecutionContext|undefined} */
this._executionContext = undefined;
/** @type {Fetcher|undefined} */
this._fetcher = undefined;

this.defaultSession = defaultSession;
}
Expand All @@ -47,6 +50,12 @@ class Driver {
return this._executionContext;
}

/** @return {Fetcher} */
get fetcher() {
if (!this._fetcher) return throwNotConnectedFn();
return this._fetcher;
}

/** @return {Promise<string>} */
async url() {
return this._page.url();
Expand All @@ -58,6 +67,7 @@ class Driver {
const session = await this._page.target().createCDPSession();
this._session = this.defaultSession = new ProtocolSession(session);
this._executionContext = new ExecutionContext(this._session);
this._fetcher = new Fetcher(this._session, this._executionContext);
}
}

Expand Down
6 changes: 3 additions & 3 deletions lighthouse-core/gather/driver.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ class Driver {

online = true;

// eslint-disable-next-line no-invalid-this
fetcher = new Fetcher(this);

// eslint-disable-next-line no-invalid-this
executionContext = new ExecutionContext(this);

// eslint-disable-next-line no-invalid-this
defaultSession = this;

// eslint-disable-next-line no-invalid-this
fetcher = new Fetcher(this.defaultSession, this.executionContext);

/**
* @param {Connection} connection
*/
Expand Down
43 changes: 23 additions & 20 deletions lighthouse-core/gather/fetcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@
/* global document */

const log = require('lighthouse-logger');
const {getBrowserVersion} = require('./driver/environment.js');

class Fetcher {
/**
* @param {import('./driver.js')} driver
* @param {LH.Gatherer.FRProtocolSession} session
* @param {import('./driver/execution-context.js')} executionContext
*/
constructor(driver) {
this.driver = driver;
constructor(session, executionContext) {
this.session = session;
this.executionContext = executionContext;
/** @type {Map<string, (event: LH.Crdp.Fetch.RequestPausedEvent) => void>} */
this._onRequestPausedHandlers = new Map();
this._onRequestPaused = this._onRequestPaused.bind(this);
Expand Down Expand Up @@ -49,18 +52,18 @@ class Fetcher {
if (this._enabled) return;

this._enabled = true;
await this.driver.sendCommand('Fetch.enable', {
await this.session.sendCommand('Fetch.enable', {
patterns: [{requestStage: 'Request'}, {requestStage: 'Response'}],
});
await this.driver.on('Fetch.requestPaused', this._onRequestPaused);
await this.session.on('Fetch.requestPaused', this._onRequestPaused);
}

async disable() {
if (!this._enabled) return;

this._enabled = false;
await this.driver.off('Fetch.requestPaused', this._onRequestPaused);
await this.driver.sendCommand('Fetch.disable');
await this.session.off('Fetch.requestPaused', this._onRequestPaused);
await this.session.sendCommand('Fetch.disable');
this._onRequestPausedHandlers.clear();
}

Expand All @@ -81,7 +84,7 @@ class Fetcher {
handler(event);
} else {
// Nothing cares about this URL, so continue.
this.driver.sendCommand('Fetch.continueRequest', {requestId: event.requestId}).catch(err => {
this.session.sendCommand('Fetch.continueRequest', {requestId: event.requestId}).catch(err => {
log.error('Fetcher', `Failed to continueRequest: ${err.message}`);
});
}
Expand All @@ -104,7 +107,7 @@ class Fetcher {
// `Network.loadNetworkResource` was introduced in M88.
// The long timeout bug with `IO.read` was fixed in M92:
// https://bugs.chromium.org/p/chromium/issues/detail?id=1191757
const milestone = await this.driver.getBrowserVersion().then(v => v.milestone);
const milestone = await getBrowserVersion(this.session).then(v => v.milestone);
if (milestone >= 92) {
return await this._fetchResourceOverProtocol(url, options);
}
Expand All @@ -126,7 +129,7 @@ class Fetcher {
if (elapsedTime > options.timeout) {
throw new Error('Waiting for the end of the IO stream exceeded the allotted time.');
}
ioResponse = await this.driver.sendCommand('IO.read', {handle});
ioResponse = await this.session.sendCommand('IO.read', {handle});
const responseData = ioResponse.base64Encoded ?
Buffer.from(ioResponse.data, 'base64').toString('utf-8') :
ioResponse.data;
Expand All @@ -141,17 +144,17 @@ class Fetcher {
* @return {Promise<LH.Crdp.IO.StreamHandle>}
*/
async _loadNetworkResource(url) {
await this.driver.sendCommand('Network.enable');
const frameTreeResponse = await this.driver.sendCommand('Page.getFrameTree');
const networkResponse = await this.driver.sendCommand('Network.loadNetworkResource', {
await this.session.sendCommand('Network.enable');
const frameTreeResponse = await this.session.sendCommand('Page.getFrameTree');
const networkResponse = await this.session.sendCommand('Network.loadNetworkResource', {
frameId: frameTreeResponse.frameTree.frame.id,
url,
options: {
disableCache: true,
includeCredentials: true,
},
});
await this.driver.sendCommand('Network.disable');
await this.session.sendCommand('Network.disable');

if (!networkResponse.resource.success || !networkResponse.resource.stream) {
const statusCode = networkResponse.resource.httpStatusCode || '';
Expand Down Expand Up @@ -206,7 +209,7 @@ class Fetcher {
return {name, value};
});

await this.driver.sendCommand('Fetch.continueRequest', {
await this.session.sendCommand('Fetch.continueRequest', {
requestId,
headers,
});
Expand All @@ -219,15 +222,15 @@ class Fetcher {
return;
}

const responseBody = await this.driver.sendCommand('Fetch.getResponseBody', {requestId});
const responseBody = await this.session.sendCommand('Fetch.getResponseBody', {requestId});
if (responseBody.base64Encoded) {
resolve(Buffer.from(responseBody.body, 'base64').toString());
} else {
resolve(responseBody.body);
}

// Fail the request (from the page's perspective) so that the iframe never loads.
await this.driver.sendCommand('Fetch.failRequest', {requestId, errorReason: 'Aborted'});
await this.session.sendCommand('Fetch.failRequest', {requestId, errorReason: 'Aborted'});
};
this._setOnRequestPausedHandler(url, event => handlerAsync(event).catch(reject));
});
Expand Down Expand Up @@ -270,19 +273,19 @@ class Fetcher {
]).finally(() => clearTimeout(timeoutHandle));

// Temporarily disable auto-attaching for this iframe.
await this.driver.sendCommand('Target.setAutoAttach', {
await this.session.sendCommand('Target.setAutoAttach', {
autoAttach: false,
waitForDebuggerOnStart: false,
});

const injectionPromise = this.driver.executionContext.evaluate(injectIframe, {
const injectionPromise = this.executionContext.evaluate(injectIframe, {
args: [url],
useIsolation: true,
});

const [fetchResult] = await Promise.all([racePromise, injectionPromise]);

await this.driver.sendCommand('Target.setAutoAttach', {
await this.session.sendCommand('Target.setAutoAttach', {
flatten: true,
autoAttach: true,
waitForDebuggerOnStart: true,
Expand Down
11 changes: 11 additions & 0 deletions lighthouse-core/test/fraggle-rock/gather/driver-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,14 @@ describe('.executionContext', () => {
expect(driver.executionContext).toBeTruthy();
});
});

describe('.fetcher', () => {
it('should fail if called before connect', () => {
expect(() => driver.fetcher).toThrow();
});

it('should create a fetcher on connect', async () => {
await driver.connect();
expect(driver.fetcher).toBeTruthy();
});
});
20 changes: 12 additions & 8 deletions lighthouse-core/test/gather/fetcher-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,34 @@
*/
'use strict';

/* eslint-env jest */

/** @type {number} */
let browserMilestone;

jest.mock('../../gather/driver/environment.js', () => ({
getBrowserVersion: jest.fn().mockImplementation(() => {
return Promise.resolve({milestone: browserMilestone});
}),
}));

const Fetcher = require('../../gather/fetcher.js');
const Driver = require('../../gather/driver.js');
const Connection = require('../../gather/connections/connection.js');
const {createMockSendCommandFn} = require('../test-utils.js');

/* eslint-env jest */

/** @type {Connection} */
let connectionStub;
/** @type {Driver} */
let driver;
/** @type {Fetcher} */
let fetcher;
/** @type {number} */
let browserMilestone;

beforeEach(() => {
connectionStub = new Connection();
driver = new Driver(connectionStub);
fetcher = new Fetcher(driver);
fetcher = new Fetcher(driver.defaultSession, driver.executionContext);
browserMilestone = 92;
driver.getBrowserVersion = jest.fn().mockImplementation(() => {
return Promise.resolve({milestone: browserMilestone});
});
});

describe('.fetchResource', () => {
Expand Down
2 changes: 2 additions & 0 deletions types/gatherer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import _CPUNode = require('../lighthouse-core/lib/dependency-graph/cpu-node');
import _Simulator = require('../lighthouse-core/lib/dependency-graph/simulator/simulator');
import Driver = require('../lighthouse-core/gather/driver');
import ExecutionContext = require('../lighthouse-core/gather/driver/execution-context');
import Fetcher = require('../lighthouse-core/gather/fetcher');

declare global {
module LH.Gatherer {
Expand All @@ -29,6 +30,7 @@ declare global {
export interface FRTransitionalDriver {
defaultSession: FRProtocolSession;
executionContext: ExecutionContext;
fetcher: Fetcher;
}

/** The limited context interface shared between pre and post Fraggle Rock Lighthouse. */
Expand Down