| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Copyright 2018 Google Inc. All rights reserved. | 
					
						
							|  |  |  |  * Modifications copyright (c) Microsoft Corporation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-08-19 21:32:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 07:08:22 -07:00
										 |  |  | import { test as it, expect } from './pageTest'; | 
					
						
							| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should work for primitives', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  |   const numberHandle = await page.evaluateHandle(() => 2); | 
					
						
							| 
									
										
										
										
											2021-08-06 11:37:36 -07:00
										 |  |  |   expect(numberHandle.toString()).toBe('2'); | 
					
						
							| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  |   const stringHandle = await page.evaluateHandle(() => 'a'); | 
					
						
							| 
									
										
										
										
											2021-08-06 11:37:36 -07:00
										 |  |  |   expect(stringHandle.toString()).toBe('a'); | 
					
						
							| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-06 11:37:36 -07:00
										 |  |  | it('should work for complicated objects', async ({ page, browserName }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  |   const aHandle = await page.evaluateHandle(() => window); | 
					
						
							| 
									
										
										
										
											2021-08-06 11:37:36 -07:00
										 |  |  |   if (browserName !== 'firefox') | 
					
						
							|  |  |  |     expect(aHandle.toString()).toBe('Window'); | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     expect(aHandle.toString()).toBe('JSHandle@object'); | 
					
						
							| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
											
												fix: better formatting for sparse arrays (#20379)
Right now arrays preview yields all array elements. In case
of a sparse array with a single element on index 10000000,
this results in a large string that OOM Node.js.
This patch changes pretty-printing. For example:
```ts
// Given this array
const a = [];
a[10] = 1;
// Before this patch, pretty printing will yield:
"[,,,,,,,,1]"
// With this patch, pretty printing yields:
"[empty x 9, 1]"
```
The new array pretty-printing is equal to what Chrome DevTools
do to render sparse arrays.
Fixes #20347
											
										 
											2023-01-27 05:07:55 -08:00
										 |  |  | it('should beautifully render sparse arrays', async ({ page, browserName }) => { | 
					
						
							|  |  |  |   const [msg] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForEvent('console'), | 
					
						
							|  |  |  |     page.evaluateHandle(() => { | 
					
						
							|  |  |  |       const a = []; | 
					
						
							|  |  |  |       a[1] = 1; | 
					
						
							|  |  |  |       a[10] = 2; | 
					
						
							|  |  |  |       a[100] = 3; | 
					
						
							|  |  |  |       console.log(a); | 
					
						
							|  |  |  |     }), | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   if (browserName === 'firefox') | 
					
						
							|  |  |  |     expect(msg.text()).toBe('Array'); | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     expect(msg.text()).toBe('[empty, 1, empty x 8, 2, empty x 89, 3]'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-06 11:37:36 -07:00
										 |  |  | it('should work for promises', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  |   // wrap the promise in an object, otherwise we will await.
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   const wrapperHandle = await page.evaluateHandle(() => ({ b: Promise.resolve(123) })); | 
					
						
							| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  |   const bHandle = await wrapperHandle.getProperty('b'); | 
					
						
							| 
									
										
										
										
											2021-08-06 11:37:36 -07:00
										 |  |  |   expect(bHandle.toString()).toBe('Promise'); | 
					
						
							| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-05 10:04:20 -08:00
										 |  |  | it('should work with different subtypes @smoke', async ({ page, browserName, browserMajorVersion }) => { | 
					
						
							| 
									
										
										
										
											2021-08-06 11:37:36 -07:00
										 |  |  |   expect((await page.evaluateHandle('(function(){})')).toString()).toContain('function'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('12')).toString()).toBe('12'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('true')).toString()).toBe('true'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('undefined')).toString()).toBe('undefined'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('"foo"')).toString()).toBe('foo'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('Symbol()')).toString()).toBe('Symbol()'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('new Map()')).toString()).toContain('Map'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('new Set()')).toString()).toContain('Set'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('[]')).toString()).toContain('Array'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('null')).toString()).toBe('null'); | 
					
						
							| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  |   expect((await page.evaluateHandle('document.body')).toString()).toBe('JSHandle@node'); | 
					
						
							| 
									
										
										
										
											2021-08-06 11:37:36 -07:00
										 |  |  |   expect((await page.evaluateHandle('new WeakMap()')).toString()).toBe('WeakMap'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('new WeakSet()')).toString()).toBe('WeakSet'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('new Error()')).toString()).toContain('Error'); | 
					
						
							| 
									
										
										
										
											2023-01-05 10:04:20 -08:00
										 |  |  |   expect((await page.evaluateHandle('new Proxy({}, {})')).toString()).toBe((browserName === 'chromium' && browserMajorVersion >= 111) ? 'Proxy(Object)' : 'Proxy'); | 
					
						
							| 
									
										
										
										
											2021-08-06 11:37:36 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | it('should work with previewable subtypes', async ({ page, browserName }) => { | 
					
						
							|  |  |  |   it.skip(browserName === 'firefox'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('/foo/')).toString()).toBe('/foo/'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('new Date(0)')).toString()).toContain('GMT'); | 
					
						
							|  |  |  |   expect((await page.evaluateHandle('new Int32Array()')).toString()).toContain('Int32Array'); | 
					
						
							| 
									
										
										
										
											2020-08-03 16:30:37 -07:00
										 |  |  | }); |