-
Notifications
You must be signed in to change notification settings - Fork 9.6k
misc(build): create error-y LHR for the deploy #9283
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
Changes from 1 commit
efd41c9
10d1e03
f36c343
fbf2c9f
9245c3e
3bc962f
1e28415
68f6736
de55da5
aa1b39b
76920df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,32 +14,31 @@ const mkdirp = require('mkdirp').sync; | |
| const swapLocale = require('../lib/i18n/swap-locale.js'); | ||
|
|
||
| const ReportGenerator = require('../../lighthouse-core/report/report-generator.js'); | ||
| const GatherRunner = require('../gather/gather-runner.js'); | ||
| const {defaultSettings} = require('../config/constants.js'); | ||
| const lighthouse = require('../index.js'); | ||
| const lhr = /** @type {LH.Result} */ (require('../../lighthouse-core/test/results/sample_v2.json')); | ||
|
|
||
| const DIST = path.join(__dirname, `../../dist`); | ||
|
|
||
| // Add a plugin to demo plugin rendering. | ||
| lhr.categories['lighthouse-plugin-someplugin'] = { | ||
| id: 'lighthouse-plugin-someplugin', | ||
| title: 'Plugin', | ||
| score: 0.5, | ||
| auditRefs: [], | ||
| }; | ||
|
|
||
| (async function() { | ||
| addPluginCategory(lhr); | ||
| const errorLhr = await generateErrorLHR(); | ||
|
|
||
| const filenameToLhr = { | ||
| 'english': lhr, | ||
| 'espanol': swapLocale(lhr, 'es').lhr, | ||
| 'arabic': swapLocale(lhr, 'ar').lhr, | ||
| english: lhr, | ||
| espanol: swapLocale(lhr, 'es').lhr, | ||
| arabic: swapLocale(lhr, 'ar').lhr, | ||
| error: errorLhr, | ||
| }; | ||
|
|
||
| mkdirp(DIST); | ||
|
|
||
| // Generate and write reports | ||
| Object.entries(filenameToLhr).forEach(([filename, lhr]) => { | ||
| let html = ReportGenerator.generateReportHtml(lhr); | ||
| // TODO: PSI is another variant to consider | ||
| for (const variant of ['', '-devtools']) { | ||
| if (variant === '-devtools') { | ||
| // TODO: Make the DevTools Audits panel "emulation" more comprehensive | ||
brendankenny marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| html = html.replace(`"lh-root lh-vars"`, `"lh-root lh-vars lh-devtools"`); | ||
| } | ||
| const filepath = `${DIST}/${filename}${variant}/index.html`; | ||
|
|
@@ -49,3 +48,40 @@ lhr.categories['lighthouse-plugin-someplugin'] = { | |
| } | ||
| }); | ||
| })(); | ||
|
|
||
| /** | ||
| * Add a plugin to demo plugin rendering. | ||
| * @param {LH.Result} lhr | ||
| */ | ||
| function addPluginCategory(lhr) { | ||
| lhr.categories['lighthouse-plugin-someplugin'] = { | ||
| id: 'lighthouse-plugin-someplugin', | ||
| title: 'Plugin', | ||
| score: 0.5, | ||
| auditRefs: [], | ||
| }; | ||
| } | ||
|
|
||
| /** | ||
| * Generate an LHR with errors for the renderer to display | ||
| * We'll write an "empty" artifacts file to disk, only to use it in auditMode | ||
|
||
| * @return {Promise<LH.Result>} | ||
| */ | ||
| async function generateErrorLHR() { | ||
| const url = 'http://fakeurl.com'; | ||
| const options = { | ||
| requestedUrl: url, | ||
| settings: defaultSettings, | ||
| driver: { | ||
| getBrowserVersion: () => ({userAgent: 'Mozilla/5.0 ErrorUserAgent Chrome/66'}), | ||
| }, | ||
| }; | ||
| //@ts-ignore driver isn't mocked out completely | ||
paulirish marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| const artifacts = await GatherRunner.initializeBaseArtifacts(options); | ||
|
||
|
|
||
| const TMP = `${DIST}/.tmp/`; | ||
| mkdirp(TMP); | ||
| fs.writeFileSync(`${TMP}/artifacts.json`, JSON.stringify(artifacts), 'utf-8'); | ||
| const errorRunnerResult = await lighthouse(url, {auditMode: TMP}); | ||
| return /** @type {LH.RunnerResult} */ (errorRunnerResult).lhr; | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.