| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  | import fs from 'fs'; | 
					
						
							|  |  |  | import path from 'path'; | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  | import { expect, test } from './playwright-test-fixtures'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  | test('should provide _store fixture', async ({ runInlineTest }) => { | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |   const result = await runInlineTest({ | 
					
						
							|  |  |  |     'playwright.config.js': `
 | 
					
						
							|  |  |  |       module.exports = {}; | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |     'a.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							|  |  |  |       test('should _store number', async ({ }) => { | 
					
						
							|  |  |  |         expect(_store).toBeTruthy(); | 
					
						
							|  |  |  |         expect(await _store.get('number.json')).toBe(undefined); | 
					
						
							|  |  |  |         await _store.set('number.json', 2022) | 
					
						
							|  |  |  |         expect(await _store.get('number.json')).toBe(2022); | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       test('should _store object', async ({ }) => { | 
					
						
							|  |  |  |         expect(_store).toBeTruthy(); | 
					
						
							|  |  |  |         expect(await _store.get('object.json')).toBe(undefined); | 
					
						
							|  |  |  |         await _store.set('object.json', { 'a': 2022 }) | 
					
						
							|  |  |  |         expect(await _store.get('object.json')).toEqual({ 'a': 2022 }); | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |   }, { workers: 1 }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  |   expect(result.passed).toBe(2); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  | test('should share _store state between project setup and tests', async ({ runInlineTest }) => { | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |   const result = await runInlineTest({ | 
					
						
							|  |  |  |     'playwright.config.js': `
 | 
					
						
							|  |  |  |       module.exports = { | 
					
						
							|  |  |  |         projects: [ | 
					
						
							|  |  |  |           { | 
					
						
							|  |  |  |             name: 'p1', | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |             testMatch: /.*_store.setup.ts/ | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |           }, | 
					
						
							|  |  |  |           { | 
					
						
							|  |  |  |             name: 'p2', | 
					
						
							|  |  |  |             dependencies: ['p1'], | 
					
						
							|  |  |  |             testMatch: /.*.test.ts/ | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |           } | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  |       }; | 
					
						
							|  |  |  |     `,
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |     '_store.setup.ts': `
 | 
					
						
							|  |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							|  |  |  |       test('should initialize _store', async ({ }) => { | 
					
						
							|  |  |  |         expect(await _store.get('number.json')).toBe(undefined); | 
					
						
							|  |  |  |         await _store.set('number.json', 2022) | 
					
						
							|  |  |  |         expect(await _store.get('number.json')).toBe(2022); | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         expect(await _store.get('object.json')).toBe(undefined); | 
					
						
							|  |  |  |         await _store.set('object.json', { 'a': 2022 }) | 
					
						
							|  |  |  |         expect(await _store.get('object.json')).toEqual({ 'a': 2022 }); | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |     'a.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2022-11-04 14:28:25 -07:00
										 |  |  |       test('should get data from setup', async ({ }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         expect(await _store.get('number.json')).toBe(2022); | 
					
						
							|  |  |  |         expect(await _store.get('object.json')).toEqual({ 'a': 2022 }); | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |     'b.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2022-11-04 14:28:25 -07:00
										 |  |  |       test('should get data from setup', async ({ }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         expect(await _store.get('number.json')).toBe(2022); | 
					
						
							|  |  |  |         expect(await _store.get('object.json')).toEqual({ 'a': 2022 }); | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |   }, { workers: 1 }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  |   expect(result.passed).toBe(3); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  | test('should persist _store state between project runs', async ({ runInlineTest }) => { | 
					
						
							| 
									
										
										
										
											2022-11-04 14:28:25 -07:00
										 |  |  |   const files = { | 
					
						
							|  |  |  |     'playwright.config.js': `
 | 
					
						
							|  |  |  |       module.exports = { }; | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |     'a.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2022-11-04 14:28:25 -07:00
										 |  |  |       test('should have no data on first run', async ({ }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         expect(await _store.get('number.json')).toBe(undefined); | 
					
						
							|  |  |  |         await _store.set('number.json', 2022) | 
					
						
							|  |  |  |         expect(await _store.get('object.json')).toBe(undefined); | 
					
						
							|  |  |  |         await _store.set('object.json', { 'a': 2022 }) | 
					
						
							| 
									
										
										
										
											2022-11-04 14:28:25 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |     'b.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2022-11-04 14:28:25 -07:00
										 |  |  |       test('should get data from previous run', async ({ }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         expect(await _store.get('number.json')).toBe(2022); | 
					
						
							|  |  |  |         expect(await _store.get('object.json')).toEqual({ 'a': 2022 }); | 
					
						
							| 
									
										
										
										
											2022-11-04 14:28:25 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     const result = await runInlineTest(files, { grep: 'should have no data on first run' }); | 
					
						
							|  |  |  |     expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  |     expect(result.passed).toBe(1); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     const result = await runInlineTest(files, { grep: 'should get data from previous run' }); | 
					
						
							|  |  |  |     expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  |     expect(result.passed).toBe(1); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  | test('should load context storageState from _store', async ({ runInlineTest, server }) => { | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |   server.setRoute('/setcookie.html', (req, res) => { | 
					
						
							|  |  |  |     res.setHeader('Set-Cookie', ['a=v1']); | 
					
						
							|  |  |  |     res.end(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const result = await runInlineTest({ | 
					
						
							|  |  |  |     'playwright.config.js': `
 | 
					
						
							|  |  |  |       module.exports = { | 
					
						
							|  |  |  |         projects: [ | 
					
						
							|  |  |  |           { | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |             name: 'setup', | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |             testMatch: /.*_store.setup.ts/ | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |           }, | 
					
						
							|  |  |  |           { | 
					
						
							|  |  |  |             name: 'p2', | 
					
						
							|  |  |  |             dependencies: ['setup'], | 
					
						
							|  |  |  |             testMatch: /.*.test.ts/ | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |           } | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  |       }; | 
					
						
							|  |  |  |     `,
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |     '_store.setup.ts': `
 | 
					
						
							|  |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |       test('should save storageState', async ({ page, context }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         expect(await _store.get('user')).toBe(undefined); | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |         await page.goto('${server.PREFIX}/setcookie.html'); | 
					
						
							|  |  |  |         const state = await page.context().storageState(); | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         await _store.set('user.json', state); | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |     'a.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |       test.use({ | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         storageState: async ({}, use) => use(_store.get('user.json')) | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |       }) | 
					
						
							| 
									
										
										
										
											2022-11-04 14:28:25 -07:00
										 |  |  |       test('should get data from setup', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |         await page.goto('${server.EMPTY_PAGE}'); | 
					
						
							|  |  |  |         const cookies = await page.evaluate(() => document.cookie); | 
					
						
							|  |  |  |         expect(cookies).toBe('a=v1'); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |     'b.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-02-14 19:20:56 -08:00
										 |  |  |       import { test, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2022-11-04 14:28:25 -07:00
										 |  |  |       test('should not get data from setup if not configured', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |         await page.goto('${server.EMPTY_PAGE}'); | 
					
						
							|  |  |  |         const cookies = await page.evaluate(() => document.cookie); | 
					
						
							|  |  |  |         expect(cookies).toBe(''); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |   }, { workers: 1 }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  |   expect(result.passed).toBe(3); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  | test('should load value from filesystem', async ({ runInlineTest }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |   const _storeDir = test.info().outputPath('playwright'); | 
					
						
							|  |  |  |   const file = path.join(_storeDir, 'foo/bar.json'); | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |   await fs.promises.mkdir(path.dirname(file), { recursive: true }); | 
					
						
							|  |  |  |   await fs.promises.writeFile(file, JSON.stringify({ 'a': 2023 })); | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |   const result = await runInlineTest({ | 
					
						
							|  |  |  |     'playwright.config.js': `
 | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |       module.exports = {}; | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |     `,
 | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |     'a.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							|  |  |  |       test('should _store number', async ({ }) => { | 
					
						
							|  |  |  |         expect(await _store.get('foo/bar.json')).toEqual({ 'a': 2023 }); | 
					
						
							| 
									
										
										
										
											2022-11-04 13:10:33 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |   }, { workers: 1 }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  |   expect(result.passed).toBe(1); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test('should return root path', async ({ runInlineTest }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |   const _storeDir = test.info().outputPath('playwright'); | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |   const result = await runInlineTest({ | 
					
						
							|  |  |  |     'playwright.config.js': `
 | 
					
						
							|  |  |  |       module.exports = {}; | 
					
						
							|  |  |  |     `,
 | 
					
						
							| 
									
										
										
										
											2022-11-04 13:10:33 -07:00
										 |  |  |     'a.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							|  |  |  |       test('should _store number', async ({ }) => { | 
					
						
							|  |  |  |         expect(_store.root()).toBe('${_storeDir.replace(/\\/g, '\\\\')}'); | 
					
						
							| 
									
										
										
										
											2022-11-04 13:10:33 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |   }, { workers: 1 }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |   expect(result.passed).toBe(1); | 
					
						
							| 
									
										
										
										
											2022-11-04 13:10:33 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  | test('should work in global setup and teardown', async ({ runInlineTest }) => { | 
					
						
							| 
									
										
										
										
											2022-11-04 13:10:33 -07:00
										 |  |  |   const result = await runInlineTest({ | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |     'playwright.config.ts': `
 | 
					
						
							|  |  |  |       import * as path from 'path'; | 
					
						
							| 
									
										
										
										
											2022-11-04 13:10:33 -07:00
										 |  |  |       module.exports = { | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |         globalSetup: 'globalSetup.ts', | 
					
						
							|  |  |  |         globalTeardown: 'globalTeardown.ts', | 
					
						
							| 
									
										
										
										
											2022-11-04 13:10:33 -07:00
										 |  |  |       }; | 
					
						
							|  |  |  |     `,
 | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |     'globalSetup.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { _store, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |       module.exports = async () => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         expect(_store).toBeTruthy(); | 
					
						
							|  |  |  |         await _store.set('foo/bar.json', {'a': 2023}); | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |       }; | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |     'globalTeardown.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { _store, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |       module.exports = async () => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         const val = await _store.get('foo/bar.json'); | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |         console.log('teardown=' + val); | 
					
						
							|  |  |  |       }; | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |     `,
 | 
					
						
							|  |  |  |     'a.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |       test('should read value from global setup', async ({ }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         expect(await _store.get('foo/bar.json')).toEqual({ 'a': 2023 }); | 
					
						
							|  |  |  |         await _store.set('foo/bar.json', 'from test'); | 
					
						
							| 
									
										
										
										
											2022-11-03 14:20:39 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |   }, { workers: 1 }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |   expect(result.passed).toBe(1); | 
					
						
							| 
									
										
										
										
											2022-11-07 16:27:38 -08:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  | test('_store root can be changed with TestConfig._storeDir', async ({ runInlineTest }) => { | 
					
						
							| 
									
										
										
										
											2022-11-07 16:27:38 -08:00
										 |  |  |   const result = await runInlineTest({ | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |     'playwright.config.ts': `
 | 
					
						
							|  |  |  |       import * as path from 'path'; | 
					
						
							| 
									
										
										
										
											2022-11-07 16:27:38 -08:00
										 |  |  |       module.exports = { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         _storeDir: 'my/_store/dir', | 
					
						
							| 
									
										
										
										
											2022-11-07 16:27:38 -08:00
										 |  |  |       }; | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |     'a.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							|  |  |  |       test('should _store value', async ({ }) => { | 
					
						
							|  |  |  |         await _store.set('foo/bar.json', {'a': 2023}); | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  |       test('should read value', async ({ }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         expect(await _store.get('foo/bar.json')).toEqual({ 'a': 2023 }); | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |   }, { workers: 1 }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  |   expect(result.passed).toBe(2); | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |   const file = path.join(test.info().outputPath(), 'my/_store/dir/foo/bar.json'); | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |   expect(JSON.parse(await fs.promises.readFile(file, 'utf-8'))).toEqual({ 'a': 2023 }); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test('should delete value', async ({ runInlineTest }) => { | 
					
						
							|  |  |  |   const result = await runInlineTest({ | 
					
						
							|  |  |  |     'a.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							|  |  |  |       test('should _store value', async ({ }) => { | 
					
						
							|  |  |  |         await _store.set('foo/bar.json', {'a': 2023}); | 
					
						
							|  |  |  |         expect(await _store.get('foo/bar.json')).toEqual({ 'a': 2023 }); | 
					
						
							|  |  |  |         await _store.delete('foo/bar.json'); | 
					
						
							|  |  |  |         expect(await _store.get('foo/bar.json')).toBe(undefined); | 
					
						
							| 
									
										
										
										
											2022-11-07 16:27:38 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |   }, { workers: 1 }); | 
					
						
							| 
									
										
										
										
											2023-02-16 16:48:28 -08:00
										 |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  |   expect(result.passed).toBe(1); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2023-03-01 08:49:31 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | test('should support text, json and binary values', async ({ runInlineTest }) => { | 
					
						
							|  |  |  |   const result = await runInlineTest({ | 
					
						
							|  |  |  |     'a.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2023-03-01 08:49:31 -08:00
										 |  |  |       test('json', async ({ }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         await _store.set('key.json', {'a': 2023}); | 
					
						
							|  |  |  |         expect(await _store.get('key.json')).toEqual({ 'a': 2023 }); | 
					
						
							| 
									
										
										
										
											2023-03-01 08:49:31 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  |       test('text', async ({ }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         await _store.set('key.txt', 'Hello'); | 
					
						
							|  |  |  |         expect(await _store.get('key.txt')).toEqual('Hello'); | 
					
						
							| 
									
										
										
										
											2023-03-01 08:49:31 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  |       test('binary', async ({ }) => { | 
					
						
							|  |  |  |         const buf = Buffer.alloc(256); | 
					
						
							|  |  |  |         for (let i = 0; i < 256; i++) | 
					
						
							|  |  |  |           buf[i] = i; | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         await _store.set('key.png', buf); | 
					
						
							|  |  |  |         expect(await _store.get('key.png')).toEqual(buf); | 
					
						
							| 
									
										
										
										
											2023-03-01 08:49:31 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |   }, { workers: 1 }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(0); | 
					
						
							|  |  |  |   expect(result.passed).toBe(3); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test('should throw on unsupported value type for given key extension', async ({ runInlineTest }) => { | 
					
						
							|  |  |  |   const result = await runInlineTest({ | 
					
						
							|  |  |  |     'a.test.ts': `
 | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |       import { test, _store, expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2023-03-01 08:49:31 -08:00
										 |  |  |       test('json', async ({ }) => { | 
					
						
							|  |  |  |         const buf = Buffer.alloc(5); | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         await _store.set('key.json', buf); | 
					
						
							| 
									
										
										
										
											2023-03-01 08:49:31 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  |       test('text', async ({ }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         await _store.set('key.txt', {}); | 
					
						
							| 
									
										
										
										
											2023-03-01 08:49:31 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  |       test('binary', async ({ }) => { | 
					
						
							| 
									
										
										
										
											2023-03-17 11:50:44 -07:00
										 |  |  |         await _store.set('key.png', {}); | 
					
						
							| 
									
										
										
										
											2023-03-01 08:49:31 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  |     `,
 | 
					
						
							|  |  |  |   }, { workers: 1 }); | 
					
						
							|  |  |  |   expect(result.exitCode).toBe(1); | 
					
						
							|  |  |  |   expect(result.failed).toBe(3); | 
					
						
							|  |  |  | }); |