| 
									
										
										
										
											2020-12-28 14: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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-25 15:05:50 -08:00
										 |  |  | import { contextTest } from '../../config/browserTest'; | 
					
						
							| 
									
										
										
										
											2022-10-24 18:01:48 -04:00
										 |  |  | import type { Page } from 'playwright-core'; | 
					
						
							| 
									
										
										
										
											2021-04-02 11:19:26 -07:00
										 |  |  | import * as path from 'path'; | 
					
						
							| 
									
										
										
										
											2022-09-20 14:32:21 -07:00
										 |  |  | import type { Source } from '../../../packages/recorder/src/recorderTypes'; | 
					
						
							| 
									
										
										
										
											2022-04-06 13:57:14 -08:00
										 |  |  | import type { CommonFixtures, TestChildProcess } from '../../config/commonFixtures'; | 
					
						
							| 
									
										
										
										
											2023-01-03 16:26:21 -08:00
										 |  |  | import { expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2021-10-11 10:52:17 -04:00
										 |  |  | export { expect } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-29 11:11:32 -07:00
										 |  |  | type CLITestArgs = { | 
					
						
							| 
									
										
										
										
											2021-04-05 09:18:56 -07:00
										 |  |  |   recorderPageGetter: () => Promise<Page>; | 
					
						
							| 
									
										
										
										
											2021-06-04 18:43:54 -07:00
										 |  |  |   closeRecorder: () => Promise<void>; | 
					
						
							| 
									
										
										
										
											2021-04-02 11:19:26 -07:00
										 |  |  |   openRecorder: () => Promise<Recorder>; | 
					
						
							| 
									
										
										
										
											2022-08-09 00:13:38 +02:00
										 |  |  |   runCLI: (args: string[], options?: { noAutoExit?: boolean }) => CLIMock; | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-15 19:44:46 +02:00
										 |  |  | const codegenLang2Id: Map<string, string> = new Map([ | 
					
						
							|  |  |  |   ['JavaScript', 'javascript'], | 
					
						
							|  |  |  |   ['Java', 'java'], | 
					
						
							|  |  |  |   ['Python', 'python'], | 
					
						
							|  |  |  |   ['Python Async', 'python-async'], | 
					
						
							| 
									
										
										
										
											2022-10-25 12:55:20 -04:00
										 |  |  |   ['Pytest', 'python-pytest'], | 
					
						
							| 
									
										
										
										
											2022-08-15 19:44:46 +02:00
										 |  |  |   ['C#', 'csharp'], | 
					
						
							| 
									
										
										
										
											2022-08-25 11:58:58 +02:00
										 |  |  |   ['C# NUnit', 'csharp-nunit'], | 
					
						
							|  |  |  |   ['C# MSTest', 'csharp-mstest'], | 
					
						
							| 
									
										
										
										
											2022-10-25 12:55:20 -04:00
										 |  |  |   ['Playwright Test', 'playwright-test'], | 
					
						
							| 
									
										
										
										
											2022-08-15 19:44:46 +02:00
										 |  |  | ]); | 
					
						
							|  |  |  | const codegenLangId2lang = new Map([...codegenLang2Id.entries()].map(([lang, langId]) => [langId, lang])); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-25 15:05:50 -08:00
										 |  |  | const playwrightToAutomateInspector = require('../../../packages/playwright-core/lib/inProcessFactory').createInProcessPlaywright(); | 
					
						
							| 
									
										
										
										
											2021-10-01 17:06:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-16 19:58:26 -07:00
										 |  |  | export const test = contextTest.extend<CLITestArgs>({ | 
					
						
							| 
									
										
										
										
											2021-06-04 18:43:54 -07:00
										 |  |  |   recorderPageGetter: async ({ context, toImpl, mode }, run, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-05-16 19:58:26 -07:00
										 |  |  |     process.env.PWTEST_RECORDER_PORT = String(10907 + testInfo.workerIndex); | 
					
						
							| 
									
										
										
										
											2021-05-23 16:21:18 -07:00
										 |  |  |     testInfo.skip(mode === 'service'); | 
					
						
							| 
									
										
										
										
											2021-05-16 19:58:26 -07:00
										 |  |  |     await run(async () => { | 
					
						
							| 
									
										
										
										
											2021-04-29 11:11:32 -07:00
										 |  |  |       while (!toImpl(context).recorderAppForTest) | 
					
						
							|  |  |  |         await new Promise(f => setTimeout(f, 100)); | 
					
						
							|  |  |  |       const wsEndpoint = toImpl(context).recorderAppForTest.wsEndpoint; | 
					
						
							| 
									
										
										
										
											2021-10-01 17:06:13 -07:00
										 |  |  |       const browser = await playwrightToAutomateInspector.chromium.connectOverCDP({ wsEndpoint }); | 
					
						
							| 
									
										
										
										
											2021-04-29 11:11:32 -07:00
										 |  |  |       const c = browser.contexts()[0]; | 
					
						
							|  |  |  |       return c.pages()[0] || await c.waitForEvent('page'); | 
					
						
							| 
									
										
										
										
											2021-05-16 19:58:26 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-04 18:43:54 -07:00
										 |  |  |   closeRecorder: async ({ context, toImpl }, run) => { | 
					
						
							|  |  |  |     await run(async () => { | 
					
						
							|  |  |  |       await toImpl(context).recorderAppForTest.close(); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-26 12:45:53 -08:00
										 |  |  |   runCLI: async ({ childProcess, browserName, channel, headless, mode, launchOptions }, run, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-05-16 19:58:26 -07:00
										 |  |  |     process.env.PWTEST_RECORDER_PORT = String(10907 + testInfo.workerIndex); | 
					
						
							| 
									
										
										
										
											2021-05-23 16:21:18 -07:00
										 |  |  |     testInfo.skip(mode === 'service'); | 
					
						
							| 
									
										
										
										
											2021-05-16 19:58:26 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     let cli: CLIMock | undefined; | 
					
						
							| 
									
										
										
										
											2022-08-09 00:13:38 +02:00
										 |  |  |     await run((cliArgs, { noAutoExit } = {}) => { | 
					
						
							|  |  |  |       cli = new CLIMock(childProcess, browserName, channel, headless, cliArgs, launchOptions.executablePath, noAutoExit); | 
					
						
							| 
									
										
										
										
											2021-05-16 19:58:26 -07:00
										 |  |  |       return cli; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     if (cli) | 
					
						
							| 
									
										
										
										
											2022-07-20 15:32:57 -07:00
										 |  |  |       await cli.exited.catch(() => {}); | 
					
						
							| 
									
										
										
										
											2021-04-29 11:11:32 -07:00
										 |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-16 19:58:26 -07:00
										 |  |  |   openRecorder: async ({ page, recorderPageGetter }, run) => { | 
					
						
							|  |  |  |     await run(async () => { | 
					
						
							| 
									
										
										
										
											2022-08-05 19:34:57 -07:00
										 |  |  |       await (page.context() as any)._enableRecorder({ language: 'javascript', mode: 'recording' }); | 
					
						
							| 
									
										
										
										
											2021-05-16 19:58:26 -07:00
										 |  |  |       return new Recorder(page, await recorderPageGetter()); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-04-29 11:11:32 -07:00
										 |  |  |   }, | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-29 11:11:32 -07:00
										 |  |  | class Recorder { | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |   page: Page; | 
					
						
							| 
									
										
										
										
											2021-05-24 00:09:46 +02:00
										 |  |  |   _highlightCallback: Function; | 
					
						
							|  |  |  |   _highlightInstalled: boolean; | 
					
						
							|  |  |  |   _actionReporterInstalled: boolean; | 
					
						
							|  |  |  |   _actionPerformedCallback: Function; | 
					
						
							| 
									
										
										
										
											2021-02-13 22:13:51 -08:00
										 |  |  |   recorderPage: Page; | 
					
						
							| 
									
										
										
										
											2021-02-16 18:13:26 -08:00
										 |  |  |   private _sources = new Map<string, Source>(); | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-13 22:13:51 -08:00
										 |  |  |   constructor(page: Page, recorderPage: Page) { | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |     this.page = page; | 
					
						
							| 
									
										
										
										
											2021-02-13 22:13:51 -08:00
										 |  |  |     this.recorderPage = recorderPage; | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |     this._highlightCallback = () => { }; | 
					
						
							|  |  |  |     this._highlightInstalled = false; | 
					
						
							|  |  |  |     this._actionReporterInstalled = false; | 
					
						
							|  |  |  |     this._actionPerformedCallback = () => { }; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-27 13: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-28 14:50:12 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-27 13:19:36 -08:00
										 |  |  |   async setPageContentAndWait(page: Page, content: string, url: string = 'about:blank', frameCount: number = 1) { | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |     let callback; | 
					
						
							|  |  |  |     const result = new Promise(f => callback = f); | 
					
						
							|  |  |  |     await page.goto(url); | 
					
						
							| 
									
										
										
										
											2021-05-12 22:19:27 +00: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-28 14:50:12 -08:00
										 |  |  |     await Promise.all([ | 
					
						
							|  |  |  |       result, | 
					
						
							|  |  |  |       page.setContent(content) | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-16 18:13:26 -08:00
										 |  |  |   async waitForOutput(file: string, text: string): Promise<Map<string, Source>> { | 
					
						
							| 
									
										
										
										
											2022-08-15 19:44:46 +02:00
										 |  |  |     if (!codegenLang2Id.has(file)) | 
					
						
							|  |  |  |       throw new Error(`Unknown language: ${file}`); | 
					
						
							|  |  |  |     const handle = await this.recorderPage.waitForFunction((params: { text: string, languageId: string }) => { | 
					
						
							| 
									
										
										
										
											2021-02-12 18:53:46 -08:00
										 |  |  |       const w = window as any; | 
					
						
							| 
									
										
										
										
											2022-08-15 19:44:46 +02:00
										 |  |  |       const source = (w.playwrightSourcesEchoForTest || []).find((s: Source) => s.id === params.languageId); | 
					
						
							| 
									
										
										
										
											2022-05-18 10:02:09 -07:00
										 |  |  |       return source && source.text.includes(params.text) ? w.playwrightSourcesEchoForTest : null; | 
					
						
							| 
									
										
										
										
											2022-08-15 19:44:46 +02:00
										 |  |  |     }, { text, languageId: codegenLang2Id.get(file) }, { timeout: 8000, polling: 300 }); | 
					
						
							| 
									
										
										
										
											2022-05-18 10:02:09 -07:00
										 |  |  |     const sources: Source[] = await handle.jsonValue(); | 
					
						
							| 
									
										
										
										
											2022-08-15 19:44:46 +02:00
										 |  |  |     for (const source of sources) { | 
					
						
							|  |  |  |       if (!codegenLangId2lang.has(source.id)) | 
					
						
							|  |  |  |         throw new Error(`Unknown language: ${source.id}`); | 
					
						
							|  |  |  |       this._sources.set(codegenLangId2lang.get(source.id), source); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-02-16 18:13:26 -08:00
										 |  |  |     return this._sources; | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-16 18:13:26 -08:00
										 |  |  |   sources(): Map<string, Source> { | 
					
						
							|  |  |  |     return this._sources; | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async waitForHighlight(action: () => Promise<void>): Promise<string> { | 
					
						
							| 
									
										
										
										
											2022-11-02 17:00:33 -07:00
										 |  |  |     await this.page.$$eval('x-pw-highlight', els => els.forEach(e => e.remove())); | 
					
						
							|  |  |  |     await this.page.$$eval('x-pw-tooltip', els => els.forEach(e => e.remove())); | 
					
						
							| 
									
										
										
										
											2022-06-16 17:49:08 -07:00
										 |  |  |     await action(); | 
					
						
							| 
									
										
										
										
											2022-10-24 18:01:48 -04:00
										 |  |  |     await this.page.locator('x-pw-highlight').waitFor(); | 
					
						
							|  |  |  |     await this.page.locator('x-pw-tooltip').waitFor(); | 
					
						
							| 
									
										
										
										
											2023-01-03 16:26:21 -08:00
										 |  |  |     await expect(this.page.locator('x-pw-tooltip')).not.toHaveText(''); | 
					
						
							|  |  |  |     await expect(this.page.locator('x-pw-tooltip')).not.toHaveText(`locator('body')`); | 
					
						
							| 
									
										
										
										
											2022-10-24 18:01:48 -04:00
										 |  |  |     return this.page.locator('x-pw-tooltip').textContent(); | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async waitForActionPerformed(): Promise<{ hovered: string | null, active: string | null }> { | 
					
						
							| 
									
										
										
										
											2021-05-12 22:19:27 +00: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-28 14:50:12 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-14 15:16:25 -08:00
										 |  |  |   async hoverOverElement(selector: string, options?: { position?: { x: number, y: number }}): Promise<string> { | 
					
						
							|  |  |  |     return this.waitForHighlight(async () => { | 
					
						
							|  |  |  |       const box = await this.page.locator(selector).first().boundingBox(); | 
					
						
							|  |  |  |       const offset = options?.position || { x: box.width / 2, y: box.height / 2 }; | 
					
						
							|  |  |  |       await this.page.mouse.move(box.x + offset.x, box.y + offset.y); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async trustedMove(selector: string) { | 
					
						
							|  |  |  |     const box = await this.page.locator(selector).first().boundingBox(); | 
					
						
							|  |  |  |     await this.page.mouse.move(box.x + box.width / 2, box.y + box.height / 2); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async trustedClick() { | 
					
						
							|  |  |  |     await this.page.mouse.down(); | 
					
						
							|  |  |  |     await this.page.mouse.up(); | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async focusElement(selector: string): Promise<string> { | 
					
						
							|  |  |  |     return this.waitForHighlight(() => this.page.focus(selector)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-29 11:11:32 -07:00
										 |  |  | class CLIMock { | 
					
						
							| 
									
										
										
										
											2022-08-09 00:13:38 +02:00
										 |  |  |   process: TestChildProcess; | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |   private waitForText: string; | 
					
						
							|  |  |  |   private waitForCallback: () => void; | 
					
						
							|  |  |  |   exited: Promise<void>; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-09 00:13:38 +02:00
										 |  |  |   constructor(childProcess: CommonFixtures['childProcess'], browserName: string, channel: string | undefined, headless: boolean | undefined, args: string[], executablePath: string | undefined, noAutoExit: boolean | undefined) { | 
					
						
							| 
									
										
										
										
											2021-03-15 08:07:57 -07:00
										 |  |  |     const nodeArgs = [ | 
					
						
							| 
									
										
										
										
											2021-09-21 16:24:48 -07:00
										 |  |  |       'node', | 
					
						
							| 
									
										
										
										
											2022-03-25 15:05:50 -08:00
										 |  |  |       path.join(__dirname, '..', '..', '..', 'packages', 'playwright-core', 'lib', 'cli', 'cli.js'), | 
					
						
							| 
									
										
										
										
											2021-03-15 08:07:57 -07:00
										 |  |  |       'codegen', | 
					
						
							| 
									
										
										
										
											2021-03-03 22:25:14 -08:00
										 |  |  |       ...args, | 
					
						
							| 
									
										
										
										
											2021-02-11 17:46:54 -08:00
										 |  |  |       `--browser=${browserName}`, | 
					
						
							| 
									
										
										
										
											2021-03-15 08:07:57 -07:00
										 |  |  |     ]; | 
					
						
							| 
									
										
										
										
											2021-05-13 10:22:23 -07:00
										 |  |  |     if (channel) | 
					
						
							|  |  |  |       nodeArgs.push(`--channel=${channel}`); | 
					
						
							| 
									
										
										
										
											2021-09-21 16:24:48 -07:00
										 |  |  |     this.process = childProcess({ | 
					
						
							|  |  |  |       command: nodeArgs, | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |       env: { | 
					
						
							| 
									
										
										
										
											2022-08-09 00:13:38 +02:00
										 |  |  |         PWTEST_CLI_IS_UNDER_TEST: '1', | 
					
						
							|  |  |  |         PWTEST_CLI_EXIT: !noAutoExit ? '1' : undefined, | 
					
						
							| 
									
										
										
										
											2021-04-09 07:59:09 -07:00
										 |  |  |         PWTEST_CLI_HEADLESS: headless ? '1' : undefined, | 
					
						
							| 
									
										
										
										
											2021-05-12 18:45:57 +00:00
										 |  |  |         PWTEST_CLI_EXECUTABLE_PATH: executablePath, | 
					
						
							| 
									
										
										
										
											2022-07-20 15:32:57 -07:00
										 |  |  |         DEBUG: (process.env.DEBUG ?? '') + ',pw:browser*', | 
					
						
							| 
									
										
										
										
											2021-01-13 12:52:03 -08:00
										 |  |  |       }, | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-09-21 16:24:48 -07:00
										 |  |  |     this.process.onOutput = () => { | 
					
						
							|  |  |  |       if (this.waitForCallback && this.process.output.includes(this.waitForText)) | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |         this.waitForCallback(); | 
					
						
							| 
									
										
										
										
											2021-09-21 16:24:48 -07:00
										 |  |  |     }; | 
					
						
							|  |  |  |     this.exited = this.process.cleanExit(); | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-23 22:38:50 -04:00
										 |  |  |   async waitFor(text: string, timeout = 10_000): Promise<void> { | 
					
						
							| 
									
										
										
										
											2021-09-21 16:24:48 -07:00
										 |  |  |     if (this.process.output.includes(text)) | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |       return Promise.resolve(); | 
					
						
							|  |  |  |     this.waitForText = text; | 
					
						
							| 
									
										
										
										
											2021-08-23 22:38:50 -04:00
										 |  |  |     return new Promise((f, r) => { | 
					
						
							|  |  |  |       this.waitForCallback = f; | 
					
						
							|  |  |  |       if (timeout) { | 
					
						
							|  |  |  |         setTimeout(() => { | 
					
						
							| 
									
										
										
										
											2022-02-01 16:09:41 -03:00
										 |  |  |           r(new Error('Timed out waiting for text:\n' + text + '\n\nReceived:\n' + this.text())); | 
					
						
							| 
									
										
										
										
											2021-08-23 22:38:50 -04:00
										 |  |  |         }, timeout); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   text() { | 
					
						
							| 
									
										
										
										
											2021-09-21 16:24:48 -07:00
										 |  |  |     return removeAnsiColors(this.process.output); | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2022-08-09 00:13:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   exit(signal: NodeJS.Signals | number) { | 
					
						
							|  |  |  |     this.process.process.kill(signal); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-12-28 14:50:12 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-02 11:19:26 -07: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-28 14:50:12 -08:00
										 |  |  | } |