Skip to content

Commit

Permalink
fix: throw an error when object reference chain is to long to seriali…
Browse files Browse the repository at this point in the history
…ze (#34008)
  • Loading branch information
yury-s authored Dec 13, 2024
1 parent 91d4b82 commit 369f4b7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class CRExecutionContext implements js.ExecutionContextDelegate {

function rewriteError(error: Error): Protocol.Runtime.evaluateReturnValue {
if (error.message.includes('Object reference chain is too long'))
return { result: { type: 'undefined' } };
throw new Error('Cannot serialize result: object reference chain is too long.');
if (error.message.includes('Object couldn\'t be returned by value'))
return { result: { type: 'undefined' } };

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ function potentiallyUnserializableValue(remoteObject: Protocol.Runtime.RemoteObj
}

function rewriteError(error: Error): Error {
if (error.message.includes('Object has too long reference chain'))
throw new Error('Cannot serialize result: object reference chain is too long.');
if (!js.isJavaScriptErrorInEvaluate(error) && !isSessionClosedError(error))
return new Error('Execution context was destroyed, most likely because of a navigation.');
return error;
Expand Down
16 changes: 16 additions & 0 deletions tests/page/page-evaluate.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,22 @@ it('should return undefined for non-serializable objects', async ({ page }) => {
expect(await page.evaluate(() => function() {})).toBe(undefined);
});

it('should throw for too deep reference chain', {
annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/33997' }
}, async ({ page, browserName }) => {
await expect(page.evaluate(depth => {
const obj = {};
let temp = obj;
for (let i = 0; i < depth; i++) {
temp[i] = {};
temp = temp[i];
}
return obj;
}, 1000)).rejects.toThrow(browserName === 'firefox'
? 'Maximum call stack size exceeded'
: 'Cannot serialize result: object reference chain is too long.');
});

it('should alias Window, Document and Node', async ({ page }) => {
const object = await page.evaluate('[window, document, document.body]');
expect(object).toEqual(['ref: <Window>', 'ref: <Document>', 'ref: <Node>']);
Expand Down

0 comments on commit 369f4b7

Please sign in to comment.