| 
									
										
										
										
											2020-12-29 06:50:12 +08: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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-09 08:45:04 +08:00
										 |  |  | import { contextTest } from '../config/browserTest'; | 
					
						
							| 
									
										
										
										
											2021-04-30 02:11:32 +08:00
										 |  |  | import type { Page } from '../../index'; | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  | import * as path from 'path'; | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  | import type { Source } from '../../src/server/supplements/recorder/recorderTypes'; | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  | import { ChildProcess, spawn } from 'child_process'; | 
					
						
							| 
									
										
										
										
											2021-04-30 02:11:32 +08:00
										 |  |  | import { chromium } from '../../index'; | 
					
						
							| 
									
										
										
										
											2021-04-06 04:23:49 +08:00
										 |  |  | export { expect } from 'folio'; | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 02:11:32 +08:00
										 |  |  | type CLITestArgs = { | 
					
						
							| 
									
										
										
										
											2021-04-06 00:18:56 +08:00
										 |  |  |   recorderPageGetter: () => Promise<Page>; | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  |   openRecorder: () => Promise<Recorder>; | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |   runCLI: (args: string[]) => CLIMock; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-17 10:58:26 +08:00
										 |  |  | export const test = contextTest.extend<CLITestArgs>({ | 
					
						
							|  |  |  |   recorderPageGetter: async ({ page, context, toImpl, browserName, channel, headless, mode, executablePath }, run, testInfo) => { | 
					
						
							|  |  |  |     process.env.PWTEST_RECORDER_PORT = String(10907 + testInfo.workerIndex); | 
					
						
							|  |  |  |     if (mode === 'service') | 
					
						
							|  |  |  |       testInfo.skip(); | 
					
						
							|  |  |  |     await run(async () => { | 
					
						
							| 
									
										
										
										
											2021-04-30 02:11:32 +08:00
										 |  |  |       while (!toImpl(context).recorderAppForTest) | 
					
						
							|  |  |  |         await new Promise(f => setTimeout(f, 100)); | 
					
						
							|  |  |  |       const wsEndpoint = toImpl(context).recorderAppForTest.wsEndpoint; | 
					
						
							|  |  |  |       const browser = await chromium.connectOverCDP({ wsEndpoint }); | 
					
						
							|  |  |  |       const c = browser.contexts()[0]; | 
					
						
							|  |  |  |       return c.pages()[0] || await c.waitForEvent('page'); | 
					
						
							| 
									
										
										
										
											2021-05-17 10:58:26 +08:00
										 |  |  |     }); | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   runCLI: async ({ browserName, channel, headless, mode, executablePath }, run, testInfo) => { | 
					
						
							|  |  |  |     process.env.PWTEST_RECORDER_PORT = String(10907 + testInfo.workerIndex); | 
					
						
							|  |  |  |     if (mode === 'service') | 
					
						
							|  |  |  |       testInfo.skip(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     let cli: CLIMock | undefined; | 
					
						
							|  |  |  |     await run(cliArgs => { | 
					
						
							|  |  |  |       cli = new CLIMock(browserName, channel, headless, cliArgs, executablePath); | 
					
						
							|  |  |  |       return cli; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     if (cli) | 
					
						
							|  |  |  |       await cli.exited; | 
					
						
							| 
									
										
										
										
											2021-04-30 02:11:32 +08:00
										 |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-17 10:58:26 +08:00
										 |  |  |   openRecorder: async ({ page, recorderPageGetter }, run) => { | 
					
						
							|  |  |  |     await run(async () => { | 
					
						
							|  |  |  |       await (page.context() as any)._enableRecorder({ language: 'javascript', startRecording: true }); | 
					
						
							|  |  |  |       return new Recorder(page, await recorderPageGetter()); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-04-30 02:11:32 +08:00
										 |  |  |   }, | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 02:11:32 +08:00
										 |  |  | class Recorder { | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |   page: Page; | 
					
						
							|  |  |  |   _highlightCallback: Function | 
					
						
							|  |  |  |   _highlightInstalled: boolean | 
					
						
							|  |  |  |   _actionReporterInstalled: boolean | 
					
						
							|  |  |  |   _actionPerformedCallback: Function | 
					
						
							| 
									
										
										
										
											2021-02-14 14:13:51 +08:00
										 |  |  |   recorderPage: Page; | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |   private _sources = new Map<string, Source>(); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-14 14:13:51 +08:00
										 |  |  |   constructor(page: Page, recorderPage: Page) { | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |     this.page = page; | 
					
						
							| 
									
										
										
										
											2021-02-14 14:13:51 +08:00
										 |  |  |     this.recorderPage = recorderPage; | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |     this._highlightCallback = () => { }; | 
					
						
							|  |  |  |     this._highlightInstalled = false; | 
					
						
							|  |  |  |     this._actionReporterInstalled = false; | 
					
						
							|  |  |  |     this._actionPerformedCallback = () => { }; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-28 05:19:36 +08:00
										 |  |  |   async setContentAndWait(content: string, url: string = 'about:blank', frameCount: number = 1) { | 
					
						
							|  |  |  |     await this.setPageContentAndWait(this.page, content, url, frameCount); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-28 05:19:36 +08:00
										 |  |  |   async setPageContentAndWait(page: Page, content: string, url: string = 'about:blank', frameCount: number = 1) { | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |     let callback; | 
					
						
							|  |  |  |     const result = new Promise(f => callback = f); | 
					
						
							|  |  |  |     await page.goto(url); | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |     let msgCount = 0; | 
					
						
							|  |  |  |     const listener = msg => { | 
					
						
							|  |  |  |       if (msg.text() === 'Recorder script ready for test') { | 
					
						
							|  |  |  |         ++msgCount; | 
					
						
							|  |  |  |         if (msgCount === frameCount) { | 
					
						
							|  |  |  |           page.off('console', listener); | 
					
						
							|  |  |  |           callback(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     page.on('console', listener); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |     await Promise.all([ | 
					
						
							|  |  |  |       result, | 
					
						
							|  |  |  |       page.setContent(content) | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |   async waitForOutput(file: string, text: string): Promise<Map<string, Source>> { | 
					
						
							|  |  |  |     const sources: Source[] = await this.recorderPage.evaluate((params: { text: string, file: string }) => { | 
					
						
							| 
									
										
										
										
											2021-02-13 10:53:46 +08:00
										 |  |  |       const w = window as any; | 
					
						
							|  |  |  |       return new Promise(f => { | 
					
						
							|  |  |  |         const poll = () => { | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |           const source = (w.playwrightSourcesEchoForTest || []).find((s: Source) => s.file === params.file); | 
					
						
							|  |  |  |           if (source && source.text.includes(params.text)) | 
					
						
							|  |  |  |             f(w.playwrightSourcesEchoForTest); | 
					
						
							| 
									
										
										
										
											2021-02-13 10:53:46 +08:00
										 |  |  |           setTimeout(poll, 300); | 
					
						
							|  |  |  |         }; | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |         poll(); | 
					
						
							| 
									
										
										
										
											2021-02-13 10:53:46 +08:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |     }, { text, file }); | 
					
						
							|  |  |  |     for (const source of sources) | 
					
						
							|  |  |  |       this._sources.set(source.file, source); | 
					
						
							|  |  |  |     return this._sources; | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 10:13:26 +08:00
										 |  |  |   sources(): Map<string, Source> { | 
					
						
							|  |  |  |     return this._sources; | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async waitForHighlight(action: () => Promise<void>): Promise<string> { | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |     let callback; | 
					
						
							|  |  |  |     const result = new Promise<string>(f => callback = f); | 
					
						
							|  |  |  |     const listener = async msg => { | 
					
						
							|  |  |  |       const prefix = 'Highlight updated for test: '; | 
					
						
							|  |  |  |       if (msg.text().startsWith(prefix)) { | 
					
						
							|  |  |  |         this.page.off('console', listener); | 
					
						
							|  |  |  |         callback(msg.text().substr(prefix.length)); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     this.page.on('console', listener); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |     const [ generatedSelector ] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |       result, | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |       action() | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     return generatedSelector; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async waitForActionPerformed(): Promise<{ hovered: string | null, active: string | null }> { | 
					
						
							| 
									
										
										
										
											2021-05-13 06:19:27 +08:00
										 |  |  |     let callback; | 
					
						
							|  |  |  |     const listener = async msg => { | 
					
						
							|  |  |  |       const prefix = 'Action performed for test: '; | 
					
						
							|  |  |  |       if (msg.text().startsWith(prefix)) { | 
					
						
							|  |  |  |         this.page.off('console', listener); | 
					
						
							|  |  |  |         const arg = JSON.parse(msg.text().substr(prefix.length)); | 
					
						
							|  |  |  |         callback(arg); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     this.page.on('console', listener); | 
					
						
							|  |  |  |     return new Promise(f => callback = f); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async hoverOverElement(selector: string): Promise<string> { | 
					
						
							|  |  |  |     return this.waitForHighlight(() => this.page.dispatchEvent(selector, 'mousemove', { detail: 1 })); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async focusElement(selector: string): Promise<string> { | 
					
						
							|  |  |  |     return this.waitForHighlight(() => this.page.focus(selector)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 02:11:32 +08:00
										 |  |  | class CLIMock { | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |   private process: ChildProcess; | 
					
						
							|  |  |  |   private data: string; | 
					
						
							|  |  |  |   private waitForText: string; | 
					
						
							|  |  |  |   private waitForCallback: () => void; | 
					
						
							|  |  |  |   exited: Promise<void>; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-15 22:42:35 +08:00
										 |  |  |   constructor(browserName: string, channel: string | undefined, headless: boolean | undefined, args: string[], executablePath: string | undefined) { | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |     this.data = ''; | 
					
						
							| 
									
										
										
										
											2021-03-15 23:07:57 +08:00
										 |  |  |     const nodeArgs = [ | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |       path.join(__dirname, '..', '..', 'lib', 'cli', 'cli.js'), | 
					
						
							| 
									
										
										
										
											2021-03-15 23:07:57 +08:00
										 |  |  |       'codegen', | 
					
						
							| 
									
										
										
										
											2021-03-04 14:25:14 +08:00
										 |  |  |       ...args, | 
					
						
							| 
									
										
										
										
											2021-02-12 09:46:54 +08:00
										 |  |  |       `--browser=${browserName}`, | 
					
						
							| 
									
										
										
										
											2021-03-15 23:07:57 +08:00
										 |  |  |     ]; | 
					
						
							| 
									
										
										
										
											2021-05-14 01:22:23 +08:00
										 |  |  |     if (channel) | 
					
						
							|  |  |  |       nodeArgs.push(`--channel=${channel}`); | 
					
						
							| 
									
										
										
										
											2021-03-15 23:07:57 +08:00
										 |  |  |     this.process = spawn('node', nodeArgs, { | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |       env: { | 
					
						
							|  |  |  |         ...process.env, | 
					
						
							| 
									
										
										
										
											2021-04-09 22:59:09 +08:00
										 |  |  |         PWTEST_CLI_EXIT: '1', | 
					
						
							|  |  |  |         PWTEST_CLI_HEADLESS: headless ? '1' : undefined, | 
					
						
							| 
									
										
										
										
											2021-05-13 02:45:57 +08:00
										 |  |  |         PWTEST_CLI_EXECUTABLE_PATH: executablePath, | 
					
						
							| 
									
										
										
										
											2021-01-14 04:52:03 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       stdio: 'pipe' | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-01-14 04:52:03 +08:00
										 |  |  |     this.process.stdout.on('data', data => { | 
					
						
							|  |  |  |       this.data = data.toString(); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |       if (this.waitForCallback && this.data.includes(this.waitForText)) | 
					
						
							|  |  |  |         this.waitForCallback(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-01-14 04:52:03 +08:00
										 |  |  |     this.exited = new Promise((f, r) => { | 
					
						
							|  |  |  |       this.process.stderr.on('data', data => { | 
					
						
							| 
									
										
										
										
											2021-05-13 02:45:57 +08:00
										 |  |  |         console.error(data.toString()); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       this.process.on('exit', (exitCode, signal) => { | 
					
						
							|  |  |  |         if (exitCode) | 
					
						
							|  |  |  |           r(new Error(`Process failed with exit code ${exitCode}`)); | 
					
						
							|  |  |  |         if (signal) | 
					
						
							|  |  |  |           r(new Error(`Process recieved signal: ${signal}`)); | 
					
						
							|  |  |  |         f(); | 
					
						
							| 
									
										
										
										
											2021-01-14 04:52:03 +08:00
										 |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async waitFor(text: string): Promise<void> { | 
					
						
							|  |  |  |     if (this.data.includes(text)) | 
					
						
							|  |  |  |       return Promise.resolve(); | 
					
						
							|  |  |  |     this.waitForText = text; | 
					
						
							|  |  |  |     return new Promise(f => this.waitForCallback = f); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   text() { | 
					
						
							|  |  |  |     return removeAnsiColors(this.data); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-03 02:19:26 +08:00
										 |  |  | function removeAnsiColors(input: string): string { | 
					
						
							|  |  |  |   const pattern = [ | 
					
						
							|  |  |  |     '[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)', | 
					
						
							|  |  |  |     '(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))' | 
					
						
							|  |  |  |   ].join('|'); | 
					
						
							|  |  |  |   return input.replace(new RegExp(pattern, 'g'), ''); | 
					
						
							| 
									
										
										
										
											2020-12-29 06:50:12 +08:00
										 |  |  | } |