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(start-url): reorganize start_url gatherer #4838

Merged
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
134 changes: 75 additions & 59 deletions lighthouse-core/gather/gatherers/start-url.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,76 +9,92 @@ const Gatherer = require('./gatherer');
const manifestParser = require('../../lib/manifest-parser');

class StartUrl extends Gatherer {
executeFetchRequest(driver, url) {
return driver.evaluateAsync(
`fetch('${url}')`
);
}

/**
* Grab the manifest, extract it's start_url, attempt to `fetch()` it while offline
* @param {*} options
* @return {{statusCode: number, debugString?: string}}
*/
afterPass(options) {
return options.driver.goOnline(options)
.then(() => options.driver.getAppManifest())
const driver = options.driver;
return driver.goOnline(options)
.then(() => driver.getAppManifest())
.then(response => driver.goOffline(options).then(() => response))
.then(response => response && manifestParser(response.data, response.url, options.url))
.then(manifest => {
if (!manifest || !manifest.value) {
const detailedMsg = manifest && manifest.debugString;

if (detailedMsg) {
const debugString = `Error fetching web app manifest: ${detailedMsg}`;
return {
statusCode: -1,
debugString,
};
} else {
const debugString = `No usable web app manifest found on page ${options.url}`;
return {
statusCode: -1,
debugString,
};
}
const {isReadFailure, reason, startUrl} = this._readManifestStartUrl(manifest);
if (isReadFailure) {
return {statusCode: -1, debugString: reason};
}

if (manifest.value.start_url.debugString) {
// Even if the start URL had an error, the browser will still supply a fallback URL.
// Therefore, we only set the debugString here and continue with the fetch.
return {
statusCode: -1,
debugString: manifest.value.start_url.debugString,
};
}
return this._attemptManifestFetch(options.driver, startUrl);
}).catch(() => {
return {statusCode: -1, debugString: 'Unable to fetch start URL via service worker'};
});
}

const startUrl = manifest.value.start_url.value;
/**
* Read the parsed manifest and return failure reasons or the startUrl
* @param {Manifest} manifest
* @return {{isReadFailure: true, reason: string}|{isReadFailure: false, startUrl: string}}
*/
_readManifestStartUrl(manifest) {
if (!manifest || !manifest.value) {
const detailedMsg = manifest && manifest.debugString;

return (new Promise(resolve => {
options.driver.on('Network.responseReceived', function responseReceived({response}) {
if (response.url === startUrl) {
options.driver.off('Network.responseReceived', responseReceived);
if (detailedMsg) {
return {isReadFailure: true, reason: `Error fetching web app manifest: ${detailedMsg}`};
} else {
return {isReadFailure: true, reason: `No usable web app manifest found on page`};
}
}

if (!response.fromServiceWorker) {
return resolve({
statusCode: -1,
debugString: 'Unable to fetch start URL via service worker',
});
}
// Even if the start URL had an error, the browser will still supply a fallback URL.
// Therefore, we only set the debugString here and continue with the fetch.
if (manifest.value.start_url.debugString) {
return {isReadFailure: true, reason: manifest.value.start_url.debugString};
}

return resolve({
statusCode: response.status,
debugString: '',
});
}
return {isReadFailure: false, startUrl: manifest.value.start_url.value};
}

/**
* Try to `fetch(start_url)`, return true if fetched by SW
* Resolves when we have a matched network request
* @param {!Driver} driver
* @param {!string} startUrl
* @return {Promise<{statusCode: ?number, debugString: ?string}>}
*/
_attemptManifestFetch(driver, startUrl) {
// Wait up to 3s to get a matched network request from the fetch() to work
const timeoutPromise = new Promise(resolve =>
setTimeout(
() => resolve({statusCode: -1, debugString: 'Timed out waiting for fetched start_url'}),
3000
)
);

const fetchPromise = new Promise(resolve => {
driver.on('Network.responseReceived', onResponseReceived);

function onResponseReceived({response}) {
// ignore mismatched URLs
if (response.url !== startUrl) return;
driver.off('Network.responseReceived', onResponseReceived);

if (!response.fromServiceWorker) {
return resolve({
statusCode: -1,
debugString: 'Unable to fetch start URL via service worker',
});
}
// Successful SW-served fetch of the start_URL
return resolve({statusCode: response.status});
}
});

options.driver.goOffline(options)
.then(() => this.executeFetchRequest(options.driver, startUrl))
.then(() => options.driver.goOnline(options))
.catch(() => {
resolve({
statusCode: -1,
debugString: 'Unable to fetch start URL via service worker',
});
});
}));
});
return driver
.evaluateAsync(`fetch('${startUrl}')`)
.then(() => Promise.race([fetchPromise, timeoutPromise]));
}
}

Expand Down
2 changes: 1 addition & 1 deletion lighthouse-core/test/gather/gatherers/start-url-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe('Start-url gatherer', () => {
return startUrlGatherer.afterPass(options, tracingData)
.then(artifact => {
assert.equal(artifact.debugString,
`No usable web app manifest found on page ${options.url}`);
`No usable web app manifest found on page`);
});
});

Expand Down