fix: throw an error when object reference chain is to long to serialize (#34008)
This commit is contained in:
parent
91d4b82dfb
commit
369f4b76b3
|
@ -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' } };
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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>']);
|
||||
|
|
Loading…
Reference in New Issue