-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
misc(build): bundle with esbuild minification instead of terser
- Loading branch information
1 parent
809eaea
commit 18a862f
Showing
12 changed files
with
324 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,3 +67,4 @@ yarn.lock | |
**/*.d.cts | ||
!**/types/**/*.d.ts | ||
|
||
page-functions-test-case*out*.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* @license Copyright 2023 The Lighthouse Authors. All Rights Reserved. | ||
* 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. | ||
*/ | ||
|
||
module.exports = { | ||
env: { | ||
mocha: true, | ||
}, | ||
globals: { | ||
expect: true, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/** | ||
* @license Copyright 2023 The Lighthouse Authors. All Rights Reserved. | ||
* 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. | ||
*/ | ||
|
||
// Our page functions are very sensitive to mangling performed by bundlers. Incorrect | ||
// bundling will certainly result in `yarn test-bundle` or `yarn smoke --runner devtools` failing. | ||
// The bundled lighthouse is a huge beast and hard to debug, so instead we have these smaller bundles | ||
// which are much easier to reason about. | ||
|
||
import path from 'path'; | ||
import {execFileSync} from 'child_process'; | ||
|
||
import {LH_ROOT} from '../../root.js'; | ||
import {buildBundle} from '../build-bundle.js'; | ||
|
||
describe('page functions build', () => { | ||
const testCases = [ | ||
`${LH_ROOT}/build/test/page-functions-test-case-computeBenchmarkIndex.js`, | ||
`${LH_ROOT}/build/test/page-functions-test-case-getNodeDetails.js`, | ||
`${LH_ROOT}/build/test/page-functions-test-case-getElementsInDocument.js`, | ||
]; | ||
|
||
for (const minify of [false, true]) { | ||
describe(`minify: ${minify}`, () => { | ||
for (const input of testCases) { | ||
it(`bundle and evaluate ${path.basename(input)}`, async () => { | ||
const output = minify ? | ||
input.replace('.js', '-out.min.js') : | ||
input.replace('.js', '-out.js'); | ||
await buildBundle(input, output, {minify}); | ||
execFileSync('node', [output]); | ||
}); | ||
} | ||
}); | ||
} | ||
}); |
31 changes: 31 additions & 0 deletions
31
build/test/page-functions-test-case-computeBenchmarkIndex.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** | ||
* @license Copyright 2023 The Lighthouse Authors. All Rights Reserved. | ||
* 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 {ExecutionContext} from '../../core/gather/driver/execution-context.js'; | ||
import {pageFunctions} from '../../core/lib/page-functions.js'; | ||
|
||
/** | ||
* | ||
* @param {Function} mainFn | ||
* @param {any[]} args | ||
* @param {any[]} deps | ||
* @return {string} | ||
*/ | ||
function stringify(mainFn, args, deps) { | ||
const argsSerialized = ExecutionContext.serializeArguments(args); | ||
const depsSerialized = ExecutionContext.prototype._serializeDeps(deps); | ||
const expression = `(() => { | ||
${depsSerialized} | ||
return (${mainFn})(${argsSerialized}); | ||
})()`; | ||
return expression; | ||
} | ||
|
||
// Indirect eval so code is run in global scope, and won't have incidental access to the | ||
// esbuild keepNames function wrapper. | ||
const indirectEval = eval; | ||
const result = indirectEval(stringify(pageFunctions.computeBenchmarkIndex, [], [])); | ||
if (typeof result !== 'number') throw new Error(`expected number, but got ${result}`); |
80 changes: 80 additions & 0 deletions
80
build/test/page-functions-test-case-getElementsInDocument.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/** | ||
* @license Copyright 2023 The Lighthouse Authors. All Rights Reserved. | ||
* 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. | ||
*/ | ||
|
||
/* eslint-disable no-undef */ | ||
|
||
import {ExecutionContext} from '../../core/gather/driver/execution-context.js'; | ||
import {pageFunctions} from '../../core/lib/page-functions.js'; | ||
|
||
/** | ||
* | ||
* @param {Function} mainFn | ||
* @param {any[]} args | ||
* @param {any[]} deps | ||
* @return {string} | ||
*/ | ||
function stringify(mainFn, args, deps) { | ||
const argsSerialized = ExecutionContext.serializeArguments(args); | ||
const depsSerialized = ExecutionContext.prototype._serializeDeps(deps); | ||
const expression = `(() => { | ||
${depsSerialized} | ||
return (${mainFn})(${argsSerialized}); | ||
})()`; | ||
return expression; | ||
} | ||
|
||
const fakeWindow = {}; | ||
fakeWindow.Node = class FakeNode { | ||
querySelectorAll() { | ||
return [ | ||
Object.assign(new HTMLElement(), {innerText: 'interesting'}), | ||
Object.assign(new HTMLElement(), {innerText: 'not so interesting'}), | ||
]; | ||
} | ||
}; | ||
fakeWindow.Element = class FakeElement extends fakeWindow.Node { | ||
matches() { | ||
return true; | ||
} | ||
}; | ||
fakeWindow.HTMLElement = class FakeHTMLElement extends fakeWindow.Element {}; | ||
|
||
// @ts-expect-error | ||
globalThis.window = fakeWindow; | ||
// @ts-expect-error | ||
globalThis.document = new fakeWindow.Node(); | ||
globalThis.HTMLElement = globalThis.window.HTMLElement; | ||
|
||
/** | ||
* @param {HTMLElement[]} elements | ||
* @return {HTMLElement[]} | ||
*/ | ||
function filterInterestingHtmlElements(elements) { | ||
return elements.filter(e => e.innerText === 'interesting'); | ||
} | ||
|
||
function mainFn() { | ||
const el = Object.assign(new HTMLElement(), { | ||
tagName: 'FakeHTMLElement', | ||
innerText: 'contents', | ||
classList: [], | ||
}); | ||
/** @type {HTMLElement[]} */ | ||
// @ts-expect-error | ||
const elements = getElementsInDocument(el); | ||
return filterInterestingHtmlElements(elements); | ||
} | ||
|
||
// Indirect eval so code is run in global scope, and won't have incidental access to the | ||
// esbuild keepNames function wrapper. | ||
const indirectEval = eval; | ||
const result = indirectEval(stringify(mainFn, [], [ | ||
pageFunctions.getElementsInDocument, | ||
filterInterestingHtmlElements, | ||
])); | ||
if (!result || result.length !== 1 || result[0].innerText !== 'interesting') { | ||
throw new Error(`unexpected result, got ${JSON.stringify(result, null, 2)}`); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/** | ||
* @license Copyright 2023 The Lighthouse Authors. All Rights Reserved. | ||
* 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. | ||
*/ | ||
|
||
/* eslint-disable no-undef */ | ||
|
||
import {ExecutionContext} from '../../core/gather/driver/execution-context.js'; | ||
import {pageFunctions} from '../../core/lib/page-functions.js'; | ||
|
||
/** | ||
* | ||
* @param {Function} mainFn | ||
* @param {any[]} args | ||
* @param {any[]} deps | ||
* @return {string} | ||
*/ | ||
function stringify(mainFn, args, deps) { | ||
const argsSerialized = ExecutionContext.serializeArguments(args); | ||
const depsSerialized = ExecutionContext.prototype._serializeDeps(deps); | ||
const expression = `(() => { | ||
${depsSerialized} | ||
return (${mainFn})(${argsSerialized}); | ||
})()`; | ||
return expression; | ||
} | ||
|
||
const fakeWindow = { | ||
HTMLElement: class FakeHTMLElement { | ||
getAttribute() { | ||
return ''; | ||
} | ||
|
||
getBoundingClientRect() { | ||
return {left: 42}; | ||
} | ||
}, | ||
}; | ||
|
||
// @ts-expect-error | ||
globalThis.window = fakeWindow; | ||
globalThis.HTMLElement = globalThis.window.HTMLElement; | ||
// @ts-expect-error | ||
globalThis.ShadowRoot = class FakeShadowRoot {}; | ||
// @ts-expect-error | ||
globalThis.Node = {DOCUMENT_FRAGMENT_NODE: 11}; | ||
|
||
function mainFn() { | ||
const el = Object.assign(new HTMLElement(), { | ||
tagName: 'FakeHTMLElement', | ||
innerText: 'contents', | ||
classList: [], | ||
}); | ||
// @ts-expect-error | ||
return getNodeDetails(el); | ||
} | ||
|
||
// Indirect eval so code is run in global scope, and won't have incidental access to the | ||
// esbuild keepNames function wrapper. | ||
const indirectEval = eval; | ||
const result = indirectEval(stringify(mainFn, [], [pageFunctions.getNodeDetails])); | ||
if (result.lhId !== 'page-0-FakeHTMLElement' || result.boundingRect.left !== 42) { | ||
throw new Error(`unexpected result, got ${JSON.stringify(result, null, 2)}`); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.