| 
									
										
										
										
											2020-08-03 13:41:48 -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. | 
					
						
							|  |  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-04-02 21:07:45 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-25 15:05:50 -08:00
										 |  |  |  | import { browserTest as it, expect } from '../config/browserTest'; | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-10 19:42:52 +01:00
										 |  |  |  | it('should affect accept-language header @smoke', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   const context = await browser.newContext({ locale: 'fr-CH' }); | 
					
						
							|  |  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							|  |  |  |  |     page.goto(server.EMPTY_PAGE), | 
					
						
							|  |  |  |  |   ]); | 
					
						
							| 
									
										
										
										
											2020-08-06 14:12:14 -07:00
										 |  |  |  |   expect((request.headers['accept-language'] as string).substr(0, 5)).toBe('fr-CH'); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   await context.close(); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-08 10:16:49 -07:00
										 |  |  |  | it('should affect navigator.language', async ({ browser }) => { | 
					
						
							|  |  |  |  |   const context = await browser.newContext({ locale: 'fr-FR' }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   const page = await context.newPage(); | 
					
						
							| 
									
										
										
										
											2022-06-08 10:16:49 -07:00
										 |  |  |  |   expect(await page.evaluate(() => navigator.language)).toBe('fr-FR'); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   await context.close(); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should format number', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   { | 
					
						
							|  |  |  |  |     const context = await browser.newContext({ locale: 'en-US' }); | 
					
						
							|  |  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |  |     await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  |     expect(await page.evaluate(() => (1000000.50).toLocaleString())).toBe('1,000,000.5'); | 
					
						
							|  |  |  |  |     await context.close(); | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  |   { | 
					
						
							|  |  |  |  |     const context = await browser.newContext({ locale: 'fr-CH' }); | 
					
						
							|  |  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |  |     await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  |     expect(await page.evaluate(() => (1000000.50).toLocaleString().replace(/\s/g, ' '))).toBe('1 000 000,5'); | 
					
						
							|  |  |  |  |     await context.close(); | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should format date', async ({ browser, server, browserName }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   { | 
					
						
							|  |  |  |  |     const context = await browser.newContext({ locale: 'en-US', timezoneId: 'America/Los_Angeles' }); | 
					
						
							|  |  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |  |     await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-06-03 16:21:23 -07:00
										 |  |  |  |     const formatted = 'Sat Nov 19 2016 10:12:34 GMT-0800 (Pacific Standard Time)'; | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |     expect(await page.evaluate(() => new Date(1479579154987).toString())).toBe(formatted); | 
					
						
							|  |  |  |  |     await context.close(); | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  |   { | 
					
						
							|  |  |  |  |     const context = await browser.newContext({ locale: 'de-DE', timezoneId: 'Europe/Berlin' }); | 
					
						
							|  |  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |  |     await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-06-03 16:21:23 -07:00
										 |  |  |  |     const formatted = 'Sat Nov 19 2016 19:12:34 GMT+0100 (Mitteleuropäische Normalzeit)'; | 
					
						
							| 
									
										
										
										
											2021-06-02 06:09:58 +00:00
										 |  |  |  |     expect(await page.evaluate(() => new Date(1479579154987).toString())).toBe(formatted); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |     await context.close(); | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should format number in popups', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   const context = await browser.newContext({ locale: 'fr-CH' }); | 
					
						
							|  |  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   const [popup] = await Promise.all([ | 
					
						
							|  |  |  |  |     page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-08-06 14:12:14 -07:00
										 |  |  |  |     page.evaluate(url => window.open(url), server.PREFIX + '/formatted-number.html'), | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   ]); | 
					
						
							|  |  |  |  |   await popup.waitForLoadState('domcontentloaded'); | 
					
						
							| 
									
										
										
										
											2020-08-11 15:50:53 -07:00
										 |  |  |  |   const result = await popup.evaluate('window["result"]'); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   expect(result).toBe('1 000 000,5'); | 
					
						
							|  |  |  |  |   await context.close(); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should affect navigator.language in popups', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2022-06-08 10:16:49 -07:00
										 |  |  |  |   const context = await browser.newContext({ locale: 'fr-FR' }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  |   const [popup] = await Promise.all([ | 
					
						
							|  |  |  |  |     page.waitForEvent('popup'), | 
					
						
							| 
									
										
										
										
											2020-08-06 14:12:14 -07:00
										 |  |  |  |     page.evaluate(url => window.open(url), server.PREFIX + '/formatted-number.html'), | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   ]); | 
					
						
							|  |  |  |  |   await popup.waitForLoadState('domcontentloaded'); | 
					
						
							| 
									
										
										
										
											2020-08-06 14:12:14 -07:00
										 |  |  |  |   const result = await popup.evaluate('window.initialNavigatorLanguage'); | 
					
						
							| 
									
										
										
										
											2022-06-08 10:16:49 -07:00
										 |  |  |  |   expect(result).toBe('fr-FR'); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   await context.close(); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should work for multiple pages sharing same process', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   const context = await browser.newContext({ locale: 'ru-RU' }); | 
					
						
							|  |  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  |   let [popup] = await Promise.all([ | 
					
						
							|  |  |  |  |     page.waitForEvent('popup'), | 
					
						
							|  |  |  |  |     page.evaluate(url => { window.open(url); }, server.EMPTY_PAGE), | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   [popup] = await Promise.all([ | 
					
						
							|  |  |  |  |     popup.waitForEvent('popup'), | 
					
						
							|  |  |  |  |     popup.evaluate(url => { window.open(url); }, server.EMPTY_PAGE), | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   await context.close(); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should be isolated between contexts', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |   const context1 = await browser.newContext({ locale: 'en-US' }); | 
					
						
							|  |  |  |  |   const promises = []; | 
					
						
							|  |  |  |  |   // By default firefox limits number of child web processes to 8.
 | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  |  |   for (let i = 0; i < 8; i++) | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |  |     promises.push(context1.newPage()); | 
					
						
							|  |  |  |  |   await Promise.all(promises); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   const context2 = await browser.newContext({ locale: 'ru-RU' }); | 
					
						
							|  |  |  |  |   const page2 = await context2.newPage(); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   const localeNumber = () => (1000000.50).toLocaleString(); | 
					
						
							|  |  |  |  |   const numbers = await Promise.all(context1.pages().map(page => page.evaluate(localeNumber))); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   numbers.forEach(value => expect(value).toBe('1,000,000.5')); | 
					
						
							|  |  |  |  |   expect(await page2.evaluate(localeNumber)).toBe('1 000 000,5'); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   await Promise.all([ | 
					
						
							|  |  |  |  |     context1.close(), | 
					
						
							|  |  |  |  |     context2.close() | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 13:43:38 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-08 10:16:49 -07:00
										 |  |  |  | it('should not change default locale in another context', async ({ browser }) => { | 
					
						
							| 
									
										
										
										
											2020-08-05 13:43:38 -07:00
										 |  |  |  |   async function getContextLocale(context) { | 
					
						
							|  |  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |  |     return await page.evaluate(() => (new Intl.NumberFormat()).resolvedOptions().locale); | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   let defaultLocale; | 
					
						
							|  |  |  |  |   { | 
					
						
							|  |  |  |  |     const context = await browser.newContext(); | 
					
						
							|  |  |  |  |     defaultLocale = await getContextLocale(context); | 
					
						
							|  |  |  |  |     await context.close(); | 
					
						
							|  |  |  |  |   } | 
					
						
							| 
									
										
										
										
											2022-06-08 10:16:49 -07:00
										 |  |  |  |   const localeOverride = defaultLocale === 'es-MX' ? 'de-DE' : 'es-MX'; | 
					
						
							| 
									
										
										
										
											2020-08-05 13:43:38 -07:00
										 |  |  |  |   { | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  |     const context = await browser.newContext({ locale: localeOverride }); | 
					
						
							| 
									
										
										
										
											2020-08-05 13:43:38 -07:00
										 |  |  |  |     expect(await getContextLocale(context)).toBe(localeOverride); | 
					
						
							|  |  |  |  |     await context.close(); | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  |   { | 
					
						
							|  |  |  |  |     const context = await browser.newContext(); | 
					
						
							|  |  |  |  |     expect(await getContextLocale(context)).toBe(defaultLocale); | 
					
						
							|  |  |  |  |     await context.close(); | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should format number in workers', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2022-06-08 10:16:49 -07:00
										 |  |  |  |   const context = await browser.newContext({ locale: 'es-MX' }); | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  |   const [worker] = await Promise.all([ | 
					
						
							|  |  |  |  |     page.waitForEvent('worker'), | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  |     page.evaluate(() => new Worker(URL.createObjectURL(new Blob(['console.log(1)'], { type: 'application/javascript' })))), | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  |  |   ]); | 
					
						
							| 
									
										
										
										
											2022-06-08 10:16:49 -07:00
										 |  |  |  |   expect(await worker.evaluate(() => (10000.20).toLocaleString())).toBe('10,000.2'); | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  |  |   await context.close(); | 
					
						
							|  |  |  |  | }); | 
					
						
							| 
									
										
										
										
											2023-11-01 17:29:57 +01:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should affect Intl.DateTimeFormat().resolvedOptions().locale', async ({ browser, server }) => { | 
					
						
							|  |  |  |  |   it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/27802' }); | 
					
						
							|  |  |  |  |   const context = await browser.newContext({ locale: 'en-GB' }); | 
					
						
							|  |  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  |   expect(await page.evaluate(() => (new Intl.DateTimeFormat()).resolvedOptions().locale)).toBe('en-GB'); | 
					
						
							|  |  |  |  |   await context.close(); | 
					
						
							|  |  |  |  | }); |