-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
tests: add page functions bundling test #15280
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,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.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.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.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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some unit tests store random output files in the
.tmp
directory. WDYT about moving this output there?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer where it is, since it is right next to the input file. Nicer for debugging.