@browsermation/browser-engine 0.0.12 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node_modules/playwright/LICENSE +202 -0
- package/dist/node_modules/playwright/NOTICE +5 -0
- package/dist/node_modules/playwright/README.md +168 -0
- package/dist/node_modules/playwright/ThirdPartyNotices.txt +6197 -0
- package/dist/node_modules/playwright/cli.js +19 -0
- package/dist/node_modules/playwright/index.d.ts +17 -0
- package/dist/node_modules/playwright/index.js +17 -0
- package/dist/node_modules/playwright/index.mjs +18 -0
- package/dist/node_modules/playwright/jsx-runtime.js +42 -0
- package/dist/node_modules/playwright/jsx-runtime.mjs +21 -0
- package/dist/node_modules/playwright/lib/agents/copilot-setup-steps.yml +34 -0
- package/dist/node_modules/playwright/lib/agents/generateAgents.js +395 -0
- package/dist/node_modules/playwright/lib/agents/playwright-test-coverage.prompt.md +31 -0
- package/dist/node_modules/playwright/lib/agents/playwright-test-generate.prompt.md +8 -0
- package/dist/node_modules/playwright/lib/agents/playwright-test-generator.agent.md +88 -0
- package/dist/node_modules/playwright/lib/agents/playwright-test-heal.prompt.md +6 -0
- package/dist/node_modules/playwright/lib/agents/playwright-test-healer.agent.md +55 -0
- package/dist/node_modules/playwright/lib/agents/playwright-test-plan.prompt.md +9 -0
- package/dist/node_modules/playwright/lib/agents/playwright-test-planner.agent.md +72 -0
- package/dist/node_modules/playwright/lib/common/config.js +280 -0
- package/dist/node_modules/playwright/lib/common/configLoader.js +344 -0
- package/dist/node_modules/playwright/lib/common/esmLoaderHost.js +102 -0
- package/dist/node_modules/playwright/lib/common/expectBundle.js +43 -0
- package/dist/node_modules/playwright/lib/common/expectBundleImpl.js +407 -0
- package/dist/node_modules/playwright/lib/common/fixtures.js +302 -0
- package/dist/node_modules/playwright/lib/common/globals.js +58 -0
- package/dist/node_modules/playwright/lib/common/ipc.js +60 -0
- package/dist/node_modules/playwright/lib/common/poolBuilder.js +85 -0
- package/dist/node_modules/playwright/lib/common/process.js +104 -0
- package/dist/node_modules/playwright/lib/common/suiteUtils.js +140 -0
- package/dist/node_modules/playwright/lib/common/test.js +321 -0
- package/dist/node_modules/playwright/lib/common/testLoader.js +101 -0
- package/dist/node_modules/playwright/lib/common/testType.js +298 -0
- package/dist/node_modules/playwright/lib/common/validators.js +68 -0
- package/dist/node_modules/playwright/lib/fsWatcher.js +67 -0
- package/dist/node_modules/playwright/lib/index.js +682 -0
- package/dist/node_modules/playwright/lib/internalsForTest.js +42 -0
- package/dist/node_modules/playwright/lib/isomorphic/events.js +77 -0
- package/dist/node_modules/playwright/lib/isomorphic/folders.js +30 -0
- package/dist/node_modules/playwright/lib/isomorphic/stringInternPool.js +69 -0
- package/dist/node_modules/playwright/lib/isomorphic/teleReceiver.js +508 -0
- package/dist/node_modules/playwright/lib/isomorphic/teleSuiteUpdater.js +137 -0
- package/dist/node_modules/playwright/lib/isomorphic/testServerConnection.js +225 -0
- package/dist/node_modules/playwright/lib/isomorphic/testServerInterface.js +16 -0
- package/dist/node_modules/playwright/lib/isomorphic/testTree.js +334 -0
- package/dist/node_modules/playwright/lib/isomorphic/types.d.js +16 -0
- package/dist/node_modules/playwright/lib/loader/loaderMain.js +59 -0
- package/dist/node_modules/playwright/lib/matchers/expect.js +324 -0
- package/dist/node_modules/playwright/lib/matchers/matcherHint.js +87 -0
- package/dist/node_modules/playwright/lib/matchers/matchers.js +382 -0
- package/dist/node_modules/playwright/lib/matchers/toBeTruthy.js +73 -0
- package/dist/node_modules/playwright/lib/matchers/toEqual.js +99 -0
- package/dist/node_modules/playwright/lib/matchers/toHaveURL.js +102 -0
- package/dist/node_modules/playwright/lib/matchers/toMatchAriaSnapshot.js +159 -0
- package/dist/node_modules/playwright/lib/matchers/toMatchSnapshot.js +341 -0
- package/dist/node_modules/playwright/lib/matchers/toMatchText.js +99 -0
- package/dist/node_modules/playwright/lib/mcp/browser/actions.d.js +16 -0
- package/dist/node_modules/playwright/lib/mcp/browser/browserContextFactory.js +296 -0
- package/dist/node_modules/playwright/lib/mcp/browser/browserServerBackend.js +76 -0
- package/dist/node_modules/playwright/lib/mcp/browser/codegen.js +66 -0
- package/dist/node_modules/playwright/lib/mcp/browser/config.js +368 -0
- package/dist/node_modules/playwright/lib/mcp/browser/context.js +267 -0
- package/dist/node_modules/playwright/lib/mcp/browser/response.js +237 -0
- package/dist/node_modules/playwright/lib/mcp/browser/sessionLog.js +160 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tab.js +292 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/common.js +63 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/console.js +44 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/dialogs.js +60 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/evaluate.js +69 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/files.js +58 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/form.js +73 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/install.js +69 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/keyboard.js +84 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/mouse.js +107 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/navigate.js +62 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/network.js +54 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/pdf.js +59 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/runCode.js +75 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/screenshot.js +106 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/snapshot.js +181 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/tabs.js +67 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/tool.js +49 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/tracing.js +74 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/utils.js +89 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/verify.js +153 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools/wait.js +63 -0
- package/dist/node_modules/playwright/lib/mcp/browser/tools.js +82 -0
- package/dist/node_modules/playwright/lib/mcp/browser/watchdog.js +44 -0
- package/dist/node_modules/playwright/lib/mcp/config.d.js +16 -0
- package/dist/node_modules/playwright/lib/mcp/extension/cdpRelay.js +351 -0
- package/dist/node_modules/playwright/lib/mcp/extension/extensionContextFactory.js +75 -0
- package/dist/node_modules/playwright/lib/mcp/extension/protocol.js +28 -0
- package/dist/node_modules/playwright/lib/mcp/index.js +61 -0
- package/dist/node_modules/playwright/lib/mcp/log.js +35 -0
- package/dist/node_modules/playwright/lib/mcp/program.js +116 -0
- package/dist/node_modules/playwright/lib/mcp/sdk/bundle.js +81 -0
- package/dist/node_modules/playwright/lib/mcp/sdk/exports.js +30 -0
- package/dist/node_modules/playwright/lib/mcp/sdk/http.js +187 -0
- package/dist/node_modules/playwright/lib/mcp/sdk/inProcessTransport.js +71 -0
- package/dist/node_modules/playwright/lib/mcp/sdk/proxyBackend.js +128 -0
- package/dist/node_modules/playwright/lib/mcp/sdk/server.js +198 -0
- package/dist/node_modules/playwright/lib/mcp/sdk/tool.js +47 -0
- package/dist/node_modules/playwright/lib/mcp/test/browserBackend.js +108 -0
- package/dist/node_modules/playwright/lib/mcp/test/generatorTools.js +122 -0
- package/dist/node_modules/playwright/lib/mcp/test/plannerTools.js +144 -0
- package/dist/node_modules/playwright/lib/mcp/test/seed.js +82 -0
- package/dist/node_modules/playwright/lib/mcp/test/streams.js +44 -0
- package/dist/node_modules/playwright/lib/mcp/test/testBackend.js +99 -0
- package/dist/node_modules/playwright/lib/mcp/test/testContext.js +279 -0
- package/dist/node_modules/playwright/lib/mcp/test/testTool.js +30 -0
- package/dist/node_modules/playwright/lib/mcp/test/testTools.js +106 -0
- package/dist/node_modules/playwright/lib/mcpBundleImpl.js +41 -0
- package/dist/node_modules/playwright/lib/plugins/gitCommitInfoPlugin.js +198 -0
- package/dist/node_modules/playwright/lib/plugins/index.js +28 -0
- package/dist/node_modules/playwright/lib/plugins/webServerPlugin.js +237 -0
- package/dist/node_modules/playwright/lib/program.js +403 -0
- package/dist/node_modules/playwright/lib/reporters/base.js +609 -0
- package/dist/node_modules/playwright/lib/reporters/blob.js +135 -0
- package/dist/node_modules/playwright/lib/reporters/dot.js +82 -0
- package/dist/node_modules/playwright/lib/reporters/empty.js +32 -0
- package/dist/node_modules/playwright/lib/reporters/github.js +128 -0
- package/dist/node_modules/playwright/lib/reporters/html.js +623 -0
- package/dist/node_modules/playwright/lib/reporters/internalReporter.js +132 -0
- package/dist/node_modules/playwright/lib/reporters/json.js +254 -0
- package/dist/node_modules/playwright/lib/reporters/junit.js +232 -0
- package/dist/node_modules/playwright/lib/reporters/line.js +113 -0
- package/dist/node_modules/playwright/lib/reporters/list.js +231 -0
- package/dist/node_modules/playwright/lib/reporters/listModeReporter.js +69 -0
- package/dist/node_modules/playwright/lib/reporters/markdown.js +144 -0
- package/dist/node_modules/playwright/lib/reporters/merge.js +541 -0
- package/dist/node_modules/playwright/lib/reporters/multiplexer.js +104 -0
- package/dist/node_modules/playwright/lib/reporters/reporterV2.js +102 -0
- package/dist/node_modules/playwright/lib/reporters/teleEmitter.js +299 -0
- package/dist/node_modules/playwright/lib/reporters/versions/blobV1.js +16 -0
- package/dist/node_modules/playwright/lib/runner/dispatcher.js +515 -0
- package/dist/node_modules/playwright/lib/runner/failureTracker.js +72 -0
- package/dist/node_modules/playwright/lib/runner/lastRun.js +77 -0
- package/dist/node_modules/playwright/lib/runner/loadUtils.js +334 -0
- package/dist/node_modules/playwright/lib/runner/loaderHost.js +89 -0
- package/dist/node_modules/playwright/lib/runner/processHost.js +161 -0
- package/dist/node_modules/playwright/lib/runner/projectUtils.js +241 -0
- package/dist/node_modules/playwright/lib/runner/rebase.js +189 -0
- package/dist/node_modules/playwright/lib/runner/reporters.js +138 -0
- package/dist/node_modules/playwright/lib/runner/sigIntWatcher.js +96 -0
- package/dist/node_modules/playwright/lib/runner/taskRunner.js +127 -0
- package/dist/node_modules/playwright/lib/runner/tasks.js +410 -0
- package/dist/node_modules/playwright/lib/runner/testGroups.js +117 -0
- package/dist/node_modules/playwright/lib/runner/testRunner.js +389 -0
- package/dist/node_modules/playwright/lib/runner/testServer.js +269 -0
- package/dist/node_modules/playwright/lib/runner/uiModeReporter.js +30 -0
- package/dist/node_modules/playwright/lib/runner/vcs.js +72 -0
- package/dist/node_modules/playwright/lib/runner/watchMode.js +395 -0
- package/dist/node_modules/playwright/lib/runner/workerHost.js +98 -0
- package/dist/node_modules/playwright/lib/third_party/pirates.js +62 -0
- package/dist/node_modules/playwright/lib/third_party/tsconfig-loader.js +103 -0
- package/dist/node_modules/playwright/lib/transform/babelBundle.js +43 -0
- package/dist/node_modules/playwright/lib/transform/babelBundleImpl.js +461 -0
- package/dist/node_modules/playwright/lib/transform/compilationCache.js +272 -0
- package/dist/node_modules/playwright/lib/transform/esmLoader.js +104 -0
- package/dist/node_modules/playwright/lib/transform/portTransport.js +67 -0
- package/dist/node_modules/playwright/lib/transform/transform.js +293 -0
- package/dist/node_modules/playwright/lib/util.js +403 -0
- package/dist/node_modules/playwright/lib/utilsBundle.js +43 -0
- package/dist/node_modules/playwright/lib/utilsBundleImpl.js +100 -0
- package/dist/node_modules/playwright/lib/worker/fixtureRunner.js +258 -0
- package/dist/node_modules/playwright/lib/worker/testInfo.js +516 -0
- package/dist/node_modules/playwright/lib/worker/testTracing.js +345 -0
- package/dist/node_modules/playwright/lib/worker/timeoutManager.js +174 -0
- package/dist/node_modules/playwright/lib/worker/util.js +31 -0
- package/dist/node_modules/playwright/lib/worker/workerMain.js +529 -0
- package/dist/node_modules/playwright/package.json +72 -0
- package/dist/node_modules/playwright/test.d.ts +18 -0
- package/dist/node_modules/playwright/test.js +24 -0
- package/dist/node_modules/playwright/test.mjs +33 -0
- package/dist/node_modules/playwright/types/test.d.ts +10253 -0
- package/dist/node_modules/playwright/types/testReporter.d.ts +821 -0
- package/dist/node_modules/playwright-core/LICENSE +202 -0
- package/dist/node_modules/playwright-core/NOTICE +5 -0
- package/dist/node_modules/playwright-core/README.md +3 -0
- package/dist/node_modules/playwright-core/ThirdPartyNotices.txt +1161 -0
- package/dist/node_modules/playwright-core/bin/install_media_pack.ps1 +5 -0
- package/dist/node_modules/playwright-core/bin/install_webkit_wsl.ps1 +33 -0
- package/dist/node_modules/playwright-core/bin/reinstall_chrome_beta_linux.sh +42 -0
- package/dist/node_modules/playwright-core/bin/reinstall_chrome_beta_mac.sh +13 -0
- package/dist/node_modules/playwright-core/bin/reinstall_chrome_beta_win.ps1 +24 -0
- package/dist/node_modules/playwright-core/bin/reinstall_chrome_stable_linux.sh +42 -0
- package/dist/node_modules/playwright-core/bin/reinstall_chrome_stable_mac.sh +12 -0
- package/dist/node_modules/playwright-core/bin/reinstall_chrome_stable_win.ps1 +24 -0
- package/dist/node_modules/playwright-core/bin/reinstall_msedge_beta_linux.sh +48 -0
- package/dist/node_modules/playwright-core/bin/reinstall_msedge_beta_mac.sh +11 -0
- package/dist/node_modules/playwright-core/bin/reinstall_msedge_beta_win.ps1 +23 -0
- package/dist/node_modules/playwright-core/bin/reinstall_msedge_dev_linux.sh +48 -0
- package/dist/node_modules/playwright-core/bin/reinstall_msedge_dev_mac.sh +11 -0
- package/dist/node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1 +23 -0
- package/dist/node_modules/playwright-core/bin/reinstall_msedge_stable_linux.sh +48 -0
- package/dist/node_modules/playwright-core/bin/reinstall_msedge_stable_mac.sh +11 -0
- package/dist/node_modules/playwright-core/bin/reinstall_msedge_stable_win.ps1 +24 -0
- package/dist/node_modules/playwright-core/browsers.json +80 -0
- package/dist/node_modules/playwright-core/cli.js +18 -0
- package/dist/node_modules/playwright-core/index.d.ts +17 -0
- package/dist/node_modules/playwright-core/index.js +32 -0
- package/dist/node_modules/playwright-core/index.mjs +28 -0
- package/dist/node_modules/playwright-core/lib/androidServerImpl.js +65 -0
- package/dist/node_modules/playwright-core/lib/browserServerImpl.js +120 -0
- package/dist/node_modules/playwright-core/lib/cli/driver.js +97 -0
- package/dist/node_modules/playwright-core/lib/cli/program.js +590 -0
- package/dist/node_modules/playwright-core/lib/cli/programWithTestStub.js +74 -0
- package/dist/node_modules/playwright-core/lib/client/android.js +361 -0
- package/dist/node_modules/playwright-core/lib/client/api.js +134 -0
- package/dist/node_modules/playwright-core/lib/client/artifact.js +79 -0
- package/dist/node_modules/playwright-core/lib/client/browser.js +163 -0
- package/dist/node_modules/playwright-core/lib/client/browserContext.js +547 -0
- package/dist/node_modules/playwright-core/lib/client/browserType.js +184 -0
- package/dist/node_modules/playwright-core/lib/client/cdpSession.js +51 -0
- package/dist/node_modules/playwright-core/lib/client/channelOwner.js +194 -0
- package/dist/node_modules/playwright-core/lib/client/clientHelper.js +64 -0
- package/dist/node_modules/playwright-core/lib/client/clientInstrumentation.js +55 -0
- package/dist/node_modules/playwright-core/lib/client/clientStackTrace.js +69 -0
- package/dist/node_modules/playwright-core/lib/client/clock.js +68 -0
- package/dist/node_modules/playwright-core/lib/client/connection.js +314 -0
- package/dist/node_modules/playwright-core/lib/client/consoleMessage.js +58 -0
- package/dist/node_modules/playwright-core/lib/client/coverage.js +44 -0
- package/dist/node_modules/playwright-core/lib/client/dialog.js +56 -0
- package/dist/node_modules/playwright-core/lib/client/download.js +62 -0
- package/dist/node_modules/playwright-core/lib/client/electron.js +138 -0
- package/dist/node_modules/playwright-core/lib/client/elementHandle.js +281 -0
- package/dist/node_modules/playwright-core/lib/client/errors.js +77 -0
- package/dist/node_modules/playwright-core/lib/client/eventEmitter.js +314 -0
- package/dist/node_modules/playwright-core/lib/client/events.js +100 -0
- package/dist/node_modules/playwright-core/lib/client/fetch.js +369 -0
- package/dist/node_modules/playwright-core/lib/client/fileChooser.js +46 -0
- package/dist/node_modules/playwright-core/lib/client/fileUtils.js +34 -0
- package/dist/node_modules/playwright-core/lib/client/frame.js +408 -0
- package/dist/node_modules/playwright-core/lib/client/harRouter.js +87 -0
- package/dist/node_modules/playwright-core/lib/client/input.js +84 -0
- package/dist/node_modules/playwright-core/lib/client/jsHandle.js +109 -0
- package/dist/node_modules/playwright-core/lib/client/jsonPipe.js +39 -0
- package/dist/node_modules/playwright-core/lib/client/localUtils.js +60 -0
- package/dist/node_modules/playwright-core/lib/client/locator.js +369 -0
- package/dist/node_modules/playwright-core/lib/client/network.js +747 -0
- package/dist/node_modules/playwright-core/lib/client/page.js +718 -0
- package/dist/node_modules/playwright-core/lib/client/platform.js +74 -0
- package/dist/node_modules/playwright-core/lib/client/playwright.js +71 -0
- package/dist/node_modules/playwright-core/lib/client/selectors.js +55 -0
- package/dist/node_modules/playwright-core/lib/client/stream.js +39 -0
- package/dist/node_modules/playwright-core/lib/client/timeoutSettings.js +79 -0
- package/dist/node_modules/playwright-core/lib/client/tracing.js +119 -0
- package/dist/node_modules/playwright-core/lib/client/types.js +28 -0
- package/dist/node_modules/playwright-core/lib/client/video.js +59 -0
- package/dist/node_modules/playwright-core/lib/client/waiter.js +142 -0
- package/dist/node_modules/playwright-core/lib/client/webError.js +39 -0
- package/dist/node_modules/playwright-core/lib/client/webSocket.js +93 -0
- package/dist/node_modules/playwright-core/lib/client/worker.js +85 -0
- package/dist/node_modules/playwright-core/lib/client/writableStream.js +39 -0
- package/dist/node_modules/playwright-core/lib/generated/bindingsControllerSource.js +28 -0
- package/dist/node_modules/playwright-core/lib/generated/clockSource.js +28 -0
- package/dist/node_modules/playwright-core/lib/generated/injectedScriptSource.js +28 -0
- package/dist/node_modules/playwright-core/lib/generated/pollingRecorderSource.js +28 -0
- package/dist/node_modules/playwright-core/lib/generated/storageScriptSource.js +28 -0
- package/dist/node_modules/playwright-core/lib/generated/utilityScriptSource.js +28 -0
- package/dist/node_modules/playwright-core/lib/generated/webSocketMockSource.js +336 -0
- package/dist/node_modules/playwright-core/lib/inProcessFactory.js +60 -0
- package/dist/node_modules/playwright-core/lib/inprocess.js +3 -0
- package/dist/node_modules/playwright-core/lib/outofprocess.js +76 -0
- package/dist/node_modules/playwright-core/lib/protocol/serializers.js +192 -0
- package/dist/node_modules/playwright-core/lib/protocol/validator.js +2890 -0
- package/dist/node_modules/playwright-core/lib/protocol/validatorPrimitives.js +193 -0
- package/dist/node_modules/playwright-core/lib/remote/playwrightConnection.js +129 -0
- package/dist/node_modules/playwright-core/lib/remote/playwrightServer.js +335 -0
- package/dist/node_modules/playwright-core/lib/server/android/android.js +465 -0
- package/dist/node_modules/playwright-core/lib/server/android/backendAdb.js +177 -0
- package/dist/node_modules/playwright-core/lib/server/artifact.js +127 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/bidiBrowser.js +505 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/bidiChromium.js +153 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/bidiConnection.js +212 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/bidiExecutionContext.js +221 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/bidiFirefox.js +130 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/bidiInput.js +146 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/bidiNetworkManager.js +383 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/bidiOverCdp.js +102 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/bidiPage.js +572 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/bidiPdf.js +106 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/third_party/bidiDeserializer.js +98 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/third_party/bidiKeyboard.js +256 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/third_party/bidiProtocol.js +24 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/third_party/bidiProtocolCore.js +179 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/third_party/bidiProtocolPermissions.js +42 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/third_party/bidiSerializer.js +148 -0
- package/dist/node_modules/playwright-core/lib/server/bidi/third_party/firefoxPrefs.js +259 -0
- package/dist/node_modules/playwright-core/lib/server/browser.js +149 -0
- package/dist/node_modules/playwright-core/lib/server/browserContext.js +695 -0
- package/dist/node_modules/playwright-core/lib/server/browserType.js +328 -0
- package/dist/node_modules/playwright-core/lib/server/callLog.js +82 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/appIcon.png +0 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/chromium.js +402 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/chromiumSwitches.js +104 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crBrowser.js +510 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crConnection.js +202 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crCoverage.js +235 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crDevTools.js +113 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crDragDrop.js +131 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crExecutionContext.js +146 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crInput.js +187 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crNetworkManager.js +666 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crPage.js +1069 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crPdf.js +121 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crProtocolHelper.js +145 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/crServiceWorker.js +136 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/defaultFontFamilies.js +162 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/protocol.d.js +16 -0
- package/dist/node_modules/playwright-core/lib/server/chromium/videoRecorder.js +115 -0
- package/dist/node_modules/playwright-core/lib/server/clock.js +149 -0
- package/dist/node_modules/playwright-core/lib/server/codegen/csharp.js +327 -0
- package/dist/node_modules/playwright-core/lib/server/codegen/java.js +274 -0
- package/dist/node_modules/playwright-core/lib/server/codegen/javascript.js +270 -0
- package/dist/node_modules/playwright-core/lib/server/codegen/jsonl.js +52 -0
- package/dist/node_modules/playwright-core/lib/server/codegen/language.js +132 -0
- package/dist/node_modules/playwright-core/lib/server/codegen/languages.js +68 -0
- package/dist/node_modules/playwright-core/lib/server/codegen/python.js +279 -0
- package/dist/node_modules/playwright-core/lib/server/codegen/types.js +16 -0
- package/dist/node_modules/playwright-core/lib/server/console.js +57 -0
- package/dist/node_modules/playwright-core/lib/server/cookieStore.js +206 -0
- package/dist/node_modules/playwright-core/lib/server/debugController.js +191 -0
- package/dist/node_modules/playwright-core/lib/server/debugger.js +119 -0
- package/dist/node_modules/playwright-core/lib/server/deviceDescriptors.js +39 -0
- package/dist/node_modules/playwright-core/lib/server/deviceDescriptorsSource.json +1779 -0
- package/dist/node_modules/playwright-core/lib/server/dialog.js +116 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/androidDispatcher.js +325 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/artifactDispatcher.js +118 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/browserContextDispatcher.js +381 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/browserDispatcher.js +118 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/browserTypeDispatcher.js +64 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/cdpSessionDispatcher.js +44 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/debugControllerDispatcher.js +78 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/dialogDispatcher.js +47 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/dispatcher.js +371 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/electronDispatcher.js +89 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/elementHandlerDispatcher.js +181 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/frameDispatcher.js +227 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/jsHandleDispatcher.js +85 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/jsonPipeDispatcher.js +58 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/localUtilsDispatcher.js +149 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/networkDispatchers.js +213 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/pageDispatcher.js +389 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/playwrightDispatcher.js +108 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/streamDispatcher.js +67 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/tracingDispatcher.js +68 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/webSocketRouteDispatcher.js +165 -0
- package/dist/node_modules/playwright-core/lib/server/dispatchers/writableStreamDispatcher.js +79 -0
- package/dist/node_modules/playwright-core/lib/server/dom.js +806 -0
- package/dist/node_modules/playwright-core/lib/server/download.js +70 -0
- package/dist/node_modules/playwright-core/lib/server/electron/electron.js +270 -0
- package/dist/node_modules/playwright-core/lib/server/electron/loader.js +29 -0
- package/dist/node_modules/playwright-core/lib/server/errors.js +69 -0
- package/dist/node_modules/playwright-core/lib/server/fetch.js +621 -0
- package/dist/node_modules/playwright-core/lib/server/fileChooser.js +43 -0
- package/dist/node_modules/playwright-core/lib/server/fileUploadUtils.js +84 -0
- package/dist/node_modules/playwright-core/lib/server/firefox/ffBrowser.js +428 -0
- package/dist/node_modules/playwright-core/lib/server/firefox/ffConnection.js +147 -0
- package/dist/node_modules/playwright-core/lib/server/firefox/ffExecutionContext.js +150 -0
- package/dist/node_modules/playwright-core/lib/server/firefox/ffInput.js +159 -0
- package/dist/node_modules/playwright-core/lib/server/firefox/ffNetworkManager.js +256 -0
- package/dist/node_modules/playwright-core/lib/server/firefox/ffPage.js +500 -0
- package/dist/node_modules/playwright-core/lib/server/firefox/firefox.js +116 -0
- package/dist/node_modules/playwright-core/lib/server/firefox/protocol.d.js +16 -0
- package/dist/node_modules/playwright-core/lib/server/formData.js +147 -0
- package/dist/node_modules/playwright-core/lib/server/frameSelectors.js +154 -0
- package/dist/node_modules/playwright-core/lib/server/frames.js +1455 -0
- package/dist/node_modules/playwright-core/lib/server/har/harRecorder.js +147 -0
- package/dist/node_modules/playwright-core/lib/server/har/harTracer.js +607 -0
- package/dist/node_modules/playwright-core/lib/server/harBackend.js +157 -0
- package/dist/node_modules/playwright-core/lib/server/helper.js +96 -0
- package/dist/node_modules/playwright-core/lib/server/index.js +58 -0
- package/dist/node_modules/playwright-core/lib/server/input.js +277 -0
- package/dist/node_modules/playwright-core/lib/server/instrumentation.js +69 -0
- package/dist/node_modules/playwright-core/lib/server/javascript.js +291 -0
- package/dist/node_modules/playwright-core/lib/server/launchApp.js +128 -0
- package/dist/node_modules/playwright-core/lib/server/localUtils.js +214 -0
- package/dist/node_modules/playwright-core/lib/server/macEditingCommands.js +143 -0
- package/dist/node_modules/playwright-core/lib/server/network.js +629 -0
- package/dist/node_modules/playwright-core/lib/server/page.js +886 -0
- package/dist/node_modules/playwright-core/lib/server/pipeTransport.js +89 -0
- package/dist/node_modules/playwright-core/lib/server/playwright.js +69 -0
- package/dist/node_modules/playwright-core/lib/server/progress.js +112 -0
- package/dist/node_modules/playwright-core/lib/server/protocolError.js +52 -0
- package/dist/node_modules/playwright-core/lib/server/recorder/chat.js +161 -0
- package/dist/node_modules/playwright-core/lib/server/recorder/recorderApp.js +387 -0
- package/dist/node_modules/playwright-core/lib/server/recorder/recorderRunner.js +138 -0
- package/dist/node_modules/playwright-core/lib/server/recorder/recorderSignalProcessor.js +83 -0
- package/dist/node_modules/playwright-core/lib/server/recorder/recorderUtils.js +157 -0
- package/dist/node_modules/playwright-core/lib/server/recorder/throttledFile.js +57 -0
- package/dist/node_modules/playwright-core/lib/server/recorder.js +499 -0
- package/dist/node_modules/playwright-core/lib/server/registry/browserFetcher.js +175 -0
- package/dist/node_modules/playwright-core/lib/server/registry/dependencies.js +371 -0
- package/dist/node_modules/playwright-core/lib/server/registry/index.js +1399 -0
- package/dist/node_modules/playwright-core/lib/server/registry/nativeDeps.js +1280 -0
- package/dist/node_modules/playwright-core/lib/server/registry/oopDownloadBrowserMain.js +124 -0
- package/dist/node_modules/playwright-core/lib/server/screenshotter.js +333 -0
- package/dist/node_modules/playwright-core/lib/server/selectors.js +112 -0
- package/dist/node_modules/playwright-core/lib/server/socksClientCertificatesInterceptor.js +383 -0
- package/dist/node_modules/playwright-core/lib/server/socksInterceptor.js +95 -0
- package/dist/node_modules/playwright-core/lib/server/trace/recorder/snapshotter.js +147 -0
- package/dist/node_modules/playwright-core/lib/server/trace/recorder/snapshotterInjected.js +541 -0
- package/dist/node_modules/playwright-core/lib/server/trace/recorder/tracing.js +604 -0
- package/dist/node_modules/playwright-core/lib/server/trace/test/inMemorySnapshotter.js +87 -0
- package/dist/node_modules/playwright-core/lib/server/trace/viewer/traceViewer.js +241 -0
- package/dist/node_modules/playwright-core/lib/server/transport.js +181 -0
- package/dist/node_modules/playwright-core/lib/server/types.js +28 -0
- package/dist/node_modules/playwright-core/lib/server/usKeyboardLayout.js +145 -0
- package/dist/node_modules/playwright-core/lib/server/utils/ascii.js +44 -0
- package/dist/node_modules/playwright-core/lib/server/utils/comparators.js +139 -0
- package/dist/node_modules/playwright-core/lib/server/utils/crypto.js +216 -0
- package/dist/node_modules/playwright-core/lib/server/utils/debug.js +42 -0
- package/dist/node_modules/playwright-core/lib/server/utils/debugLogger.js +122 -0
- package/dist/node_modules/playwright-core/lib/server/utils/env.js +73 -0
- package/dist/node_modules/playwright-core/lib/server/utils/eventsHelper.js +39 -0
- package/dist/node_modules/playwright-core/lib/server/utils/expectUtils.js +38 -0
- package/dist/node_modules/playwright-core/lib/server/utils/fileUtils.js +191 -0
- package/dist/node_modules/playwright-core/lib/server/utils/happyEyeballs.js +207 -0
- package/dist/node_modules/playwright-core/lib/server/utils/hostPlatform.js +123 -0
- package/dist/node_modules/playwright-core/lib/server/utils/httpServer.js +218 -0
- package/dist/node_modules/playwright-core/lib/server/utils/imageUtils.js +141 -0
- package/dist/node_modules/playwright-core/lib/server/utils/image_tools/colorUtils.js +89 -0
- package/dist/node_modules/playwright-core/lib/server/utils/image_tools/compare.js +109 -0
- package/dist/node_modules/playwright-core/lib/server/utils/image_tools/imageChannel.js +78 -0
- package/dist/node_modules/playwright-core/lib/server/utils/image_tools/stats.js +102 -0
- package/dist/node_modules/playwright-core/lib/server/utils/linuxUtils.js +71 -0
- package/dist/node_modules/playwright-core/lib/server/utils/network.js +233 -0
- package/dist/node_modules/playwright-core/lib/server/utils/nodePlatform.js +148 -0
- package/dist/node_modules/playwright-core/lib/server/utils/pipeTransport.js +84 -0
- package/dist/node_modules/playwright-core/lib/server/utils/processLauncher.js +241 -0
- package/dist/node_modules/playwright-core/lib/server/utils/profiler.js +65 -0
- package/dist/node_modules/playwright-core/lib/server/utils/socksProxy.js +511 -0
- package/dist/node_modules/playwright-core/lib/server/utils/spawnAsync.js +41 -0
- package/dist/node_modules/playwright-core/lib/server/utils/task.js +51 -0
- package/dist/node_modules/playwright-core/lib/server/utils/userAgent.js +98 -0
- package/dist/node_modules/playwright-core/lib/server/utils/wsServer.js +121 -0
- package/dist/node_modules/playwright-core/lib/server/utils/zipFile.js +74 -0
- package/dist/node_modules/playwright-core/lib/server/utils/zones.js +57 -0
- package/dist/node_modules/playwright-core/lib/server/webkit/protocol.d.js +16 -0
- package/dist/node_modules/playwright-core/lib/server/webkit/webkit.js +110 -0
- package/dist/node_modules/playwright-core/lib/server/webkit/wkBrowser.js +339 -0
- package/dist/node_modules/playwright-core/lib/server/webkit/wkConnection.js +149 -0
- package/dist/node_modules/playwright-core/lib/server/webkit/wkExecutionContext.js +154 -0
- package/dist/node_modules/playwright-core/lib/server/webkit/wkInput.js +181 -0
- package/dist/node_modules/playwright-core/lib/server/webkit/wkInterceptableRequest.js +169 -0
- package/dist/node_modules/playwright-core/lib/server/webkit/wkPage.js +1130 -0
- package/dist/node_modules/playwright-core/lib/server/webkit/wkProvisionalPage.js +83 -0
- package/dist/node_modules/playwright-core/lib/server/webkit/wkWorkers.js +105 -0
- package/dist/node_modules/playwright-core/lib/third_party/pixelmatch.js +255 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/ariaSnapshot.js +397 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/assert.js +31 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/colors.js +72 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/cssParser.js +245 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/cssTokenizer.js +1051 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/headers.js +53 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/locatorGenerators.js +689 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/locatorParser.js +176 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/locatorUtils.js +81 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/manualPromise.js +114 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/mimeType.js +459 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/multimap.js +80 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/protocolFormatter.js +81 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/protocolMetainfo.js +322 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/rtti.js +43 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/selectorParser.js +386 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/semaphore.js +54 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/stackTrace.js +158 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/stringUtils.js +155 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/time.js +49 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/timeoutRunner.js +66 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/traceUtils.js +58 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/types.js +16 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/urlMatch.js +190 -0
- package/dist/node_modules/playwright-core/lib/utils/isomorphic/utilityScriptSerializers.js +251 -0
- package/dist/node_modules/playwright-core/lib/utils.js +109 -0
- package/dist/node_modules/playwright-core/lib/utilsBundle.js +112 -0
- package/dist/node_modules/playwright-core/lib/utilsBundleImpl/index.js +218 -0
- package/dist/node_modules/playwright-core/lib/utilsBundleImpl/xdg-open +1066 -0
- package/dist/node_modules/playwright-core/lib/vite/htmlReport/index.html +84 -0
- package/dist/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-BoWUGj0J.js +25 -0
- package/dist/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-C3UTv-Ge.css +1 -0
- package/dist/node_modules/playwright-core/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
- package/dist/node_modules/playwright-core/lib/vite/recorder/assets/index-DJqDAOZp.js +193 -0
- package/dist/node_modules/playwright-core/lib/vite/recorder/assets/index-Ri0uHF7I.css +1 -0
- package/dist/node_modules/playwright-core/lib/vite/recorder/index.html +29 -0
- package/dist/node_modules/playwright-core/lib/vite/recorder/playwright-logo.svg +9 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-Bucv2d7q.js +25 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-BEpdCv1S.js +266 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/assets/xtermModule-CsJ4vdCR.js +9 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/codeMirrorModule.C3UTv-Ge.css +1 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.ConWv5KN.css +1 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/index.BxQ34UMZ.js +2 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/index.C4Y3Aw8n.css +1 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/index.html +43 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/manifest.webmanifest +16 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/playwright-logo.svg +9 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/snapshot.html +21 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/sw.bundle.js +3 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/uiMode.BWTwXl41.js +5 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/uiMode.Btcz36p_.css +1 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/uiMode.html +17 -0
- package/dist/node_modules/playwright-core/lib/vite/traceViewer/xtermModule.DYP7pi_n.css +32 -0
- package/dist/node_modules/playwright-core/lib/zipBundle.js +34 -0
- package/dist/node_modules/playwright-core/lib/zipBundleImpl.js +5 -0
- package/dist/node_modules/playwright-core/package.json +42 -0
- package/dist/node_modules/playwright-core/types/protocol.d.ts +23245 -0
- package/dist/node_modules/playwright-core/types/structs.d.ts +45 -0
- package/dist/node_modules/playwright-core/types/types.d.ts +22856 -0
- package/dist/server.obf.js +1 -1
- package/package.json +11 -12
|
@@ -0,0 +1,515 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var dispatcher_exports = {};
|
|
20
|
+
__export(dispatcher_exports, {
|
|
21
|
+
Dispatcher: () => Dispatcher
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(dispatcher_exports);
|
|
24
|
+
var import_utils = require("playwright-core/lib/utils");
|
|
25
|
+
var import_utils2 = require("playwright-core/lib/utils");
|
|
26
|
+
var import_rebase = require("./rebase");
|
|
27
|
+
var import_workerHost = require("./workerHost");
|
|
28
|
+
var import_ipc = require("../common/ipc");
|
|
29
|
+
var import_internalReporter = require("../reporters/internalReporter");
|
|
30
|
+
var import_util = require("../util");
|
|
31
|
+
class Dispatcher {
|
|
32
|
+
constructor(config, reporter, failureTracker) {
|
|
33
|
+
this._workerSlots = [];
|
|
34
|
+
this._queue = [];
|
|
35
|
+
this._workerLimitPerProjectId = /* @__PURE__ */ new Map();
|
|
36
|
+
this._queuedOrRunningHashCount = /* @__PURE__ */ new Map();
|
|
37
|
+
this._finished = new import_utils.ManualPromise();
|
|
38
|
+
this._isStopped = true;
|
|
39
|
+
this._extraEnvByProjectId = /* @__PURE__ */ new Map();
|
|
40
|
+
this._producedEnvByProjectId = /* @__PURE__ */ new Map();
|
|
41
|
+
this._config = config;
|
|
42
|
+
this._reporter = reporter;
|
|
43
|
+
this._failureTracker = failureTracker;
|
|
44
|
+
for (const project of config.projects) {
|
|
45
|
+
if (project.workers)
|
|
46
|
+
this._workerLimitPerProjectId.set(project.id, project.workers);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
_findFirstJobToRun() {
|
|
50
|
+
for (let index = 0; index < this._queue.length; index++) {
|
|
51
|
+
const job = this._queue[index];
|
|
52
|
+
const projectIdWorkerLimit = this._workerLimitPerProjectId.get(job.projectId);
|
|
53
|
+
if (!projectIdWorkerLimit)
|
|
54
|
+
return index;
|
|
55
|
+
const runningWorkersWithSameProjectId = this._workerSlots.filter((w) => w.busy && w.worker && w.worker.projectId() === job.projectId).length;
|
|
56
|
+
if (runningWorkersWithSameProjectId < projectIdWorkerLimit)
|
|
57
|
+
return index;
|
|
58
|
+
}
|
|
59
|
+
return -1;
|
|
60
|
+
}
|
|
61
|
+
_scheduleJob() {
|
|
62
|
+
if (this._isStopped)
|
|
63
|
+
return;
|
|
64
|
+
const jobIndex = this._findFirstJobToRun();
|
|
65
|
+
if (jobIndex === -1)
|
|
66
|
+
return;
|
|
67
|
+
const job = this._queue[jobIndex];
|
|
68
|
+
let workerIndex = this._workerSlots.findIndex((w) => !w.busy && w.worker && w.worker.hash() === job.workerHash && !w.worker.didSendStop());
|
|
69
|
+
if (workerIndex === -1)
|
|
70
|
+
workerIndex = this._workerSlots.findIndex((w) => !w.busy);
|
|
71
|
+
if (workerIndex === -1) {
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
this._queue.splice(jobIndex, 1);
|
|
75
|
+
const jobDispatcher = new JobDispatcher(job, this._config, this._reporter, this._failureTracker, () => this.stop().catch(() => {
|
|
76
|
+
}));
|
|
77
|
+
this._workerSlots[workerIndex].busy = true;
|
|
78
|
+
this._workerSlots[workerIndex].jobDispatcher = jobDispatcher;
|
|
79
|
+
void this._runJobInWorker(workerIndex, jobDispatcher).then(() => {
|
|
80
|
+
this._workerSlots[workerIndex].jobDispatcher = void 0;
|
|
81
|
+
this._workerSlots[workerIndex].busy = false;
|
|
82
|
+
this._checkFinished();
|
|
83
|
+
this._scheduleJob();
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
async _runJobInWorker(index, jobDispatcher) {
|
|
87
|
+
const job = jobDispatcher.job;
|
|
88
|
+
if (jobDispatcher.skipWholeJob())
|
|
89
|
+
return;
|
|
90
|
+
let worker = this._workerSlots[index].worker;
|
|
91
|
+
if (worker && (worker.hash() !== job.workerHash || worker.didSendStop())) {
|
|
92
|
+
await worker.stop();
|
|
93
|
+
worker = void 0;
|
|
94
|
+
if (this._isStopped)
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
let startError;
|
|
98
|
+
if (!worker) {
|
|
99
|
+
worker = this._createWorker(job, index, (0, import_ipc.serializeConfig)(this._config, true));
|
|
100
|
+
this._workerSlots[index].worker = worker;
|
|
101
|
+
worker.on("exit", () => this._workerSlots[index].worker = void 0);
|
|
102
|
+
startError = await worker.start();
|
|
103
|
+
if (this._isStopped)
|
|
104
|
+
return;
|
|
105
|
+
}
|
|
106
|
+
if (startError)
|
|
107
|
+
jobDispatcher.onExit(startError);
|
|
108
|
+
else
|
|
109
|
+
jobDispatcher.runInWorker(worker);
|
|
110
|
+
const result = await jobDispatcher.jobResult;
|
|
111
|
+
this._updateCounterForWorkerHash(job.workerHash, -1);
|
|
112
|
+
if (result.didFail)
|
|
113
|
+
void worker.stop(
|
|
114
|
+
true
|
|
115
|
+
/* didFail */
|
|
116
|
+
);
|
|
117
|
+
else if (this._isWorkerRedundant(worker))
|
|
118
|
+
void worker.stop();
|
|
119
|
+
if (!this._isStopped && result.newJob) {
|
|
120
|
+
this._queue.unshift(result.newJob);
|
|
121
|
+
this._updateCounterForWorkerHash(result.newJob.workerHash, 1);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
_checkFinished() {
|
|
125
|
+
if (this._finished.isDone())
|
|
126
|
+
return;
|
|
127
|
+
if (this._queue.length && !this._isStopped)
|
|
128
|
+
return;
|
|
129
|
+
if (this._workerSlots.some((w) => w.busy))
|
|
130
|
+
return;
|
|
131
|
+
this._finished.resolve();
|
|
132
|
+
}
|
|
133
|
+
_isWorkerRedundant(worker) {
|
|
134
|
+
let workersWithSameHash = 0;
|
|
135
|
+
for (const slot of this._workerSlots) {
|
|
136
|
+
if (slot.worker && !slot.worker.didSendStop() && slot.worker.hash() === worker.hash())
|
|
137
|
+
workersWithSameHash++;
|
|
138
|
+
}
|
|
139
|
+
return workersWithSameHash > this._queuedOrRunningHashCount.get(worker.hash());
|
|
140
|
+
}
|
|
141
|
+
_updateCounterForWorkerHash(hash, delta) {
|
|
142
|
+
this._queuedOrRunningHashCount.set(hash, delta + (this._queuedOrRunningHashCount.get(hash) || 0));
|
|
143
|
+
}
|
|
144
|
+
async run(testGroups, extraEnvByProjectId) {
|
|
145
|
+
this._extraEnvByProjectId = extraEnvByProjectId;
|
|
146
|
+
this._queue = testGroups;
|
|
147
|
+
for (const group of testGroups)
|
|
148
|
+
this._updateCounterForWorkerHash(group.workerHash, 1);
|
|
149
|
+
this._isStopped = false;
|
|
150
|
+
this._workerSlots = [];
|
|
151
|
+
if (this._failureTracker.hasReachedMaxFailures())
|
|
152
|
+
void this.stop();
|
|
153
|
+
for (let i = 0; i < this._config.config.workers; i++)
|
|
154
|
+
this._workerSlots.push({ busy: false });
|
|
155
|
+
for (let i = 0; i < this._workerSlots.length; i++)
|
|
156
|
+
this._scheduleJob();
|
|
157
|
+
this._checkFinished();
|
|
158
|
+
await this._finished;
|
|
159
|
+
}
|
|
160
|
+
_createWorker(testGroup, parallelIndex, loaderData) {
|
|
161
|
+
const projectConfig = this._config.projects.find((p) => p.id === testGroup.projectId);
|
|
162
|
+
const outputDir = projectConfig.project.outputDir;
|
|
163
|
+
const worker = new import_workerHost.WorkerHost(testGroup, {
|
|
164
|
+
parallelIndex,
|
|
165
|
+
config: loaderData,
|
|
166
|
+
extraEnv: this._extraEnvByProjectId.get(testGroup.projectId) || {},
|
|
167
|
+
outputDir,
|
|
168
|
+
pauseOnError: this._failureTracker.pauseOnError(),
|
|
169
|
+
pauseAtEnd: this._failureTracker.pauseAtEnd(projectConfig)
|
|
170
|
+
});
|
|
171
|
+
const handleOutput = (params) => {
|
|
172
|
+
const chunk = chunkFromParams(params);
|
|
173
|
+
if (worker.didFail()) {
|
|
174
|
+
return { chunk };
|
|
175
|
+
}
|
|
176
|
+
const currentlyRunning = this._workerSlots[parallelIndex].jobDispatcher?.currentlyRunning();
|
|
177
|
+
if (!currentlyRunning)
|
|
178
|
+
return { chunk };
|
|
179
|
+
return { chunk, test: currentlyRunning.test, result: currentlyRunning.result };
|
|
180
|
+
};
|
|
181
|
+
worker.on("stdOut", (params) => {
|
|
182
|
+
const { chunk, test, result } = handleOutput(params);
|
|
183
|
+
result?.stdout.push(chunk);
|
|
184
|
+
this._reporter.onStdOut?.(chunk, test, result);
|
|
185
|
+
});
|
|
186
|
+
worker.on("stdErr", (params) => {
|
|
187
|
+
const { chunk, test, result } = handleOutput(params);
|
|
188
|
+
result?.stderr.push(chunk);
|
|
189
|
+
this._reporter.onStdErr?.(chunk, test, result);
|
|
190
|
+
});
|
|
191
|
+
worker.on("teardownErrors", (params) => {
|
|
192
|
+
this._failureTracker.onWorkerError();
|
|
193
|
+
for (const error of params.fatalErrors)
|
|
194
|
+
this._reporter.onError?.(error);
|
|
195
|
+
});
|
|
196
|
+
worker.on("exit", () => {
|
|
197
|
+
const producedEnv = this._producedEnvByProjectId.get(testGroup.projectId) || {};
|
|
198
|
+
this._producedEnvByProjectId.set(testGroup.projectId, { ...producedEnv, ...worker.producedEnv() });
|
|
199
|
+
});
|
|
200
|
+
return worker;
|
|
201
|
+
}
|
|
202
|
+
producedEnvByProjectId() {
|
|
203
|
+
return this._producedEnvByProjectId;
|
|
204
|
+
}
|
|
205
|
+
async stop() {
|
|
206
|
+
if (this._isStopped)
|
|
207
|
+
return;
|
|
208
|
+
this._isStopped = true;
|
|
209
|
+
await Promise.all(this._workerSlots.map(({ worker }) => worker?.stop()));
|
|
210
|
+
this._checkFinished();
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
class JobDispatcher {
|
|
214
|
+
constructor(job, config, reporter, failureTracker, stopCallback) {
|
|
215
|
+
this.jobResult = new import_utils.ManualPromise();
|
|
216
|
+
this._listeners = [];
|
|
217
|
+
this._failedTests = /* @__PURE__ */ new Set();
|
|
218
|
+
this._failedWithNonRetriableError = /* @__PURE__ */ new Set();
|
|
219
|
+
this._remainingByTestId = /* @__PURE__ */ new Map();
|
|
220
|
+
this._dataByTestId = /* @__PURE__ */ new Map();
|
|
221
|
+
this._parallelIndex = 0;
|
|
222
|
+
this._workerIndex = 0;
|
|
223
|
+
this.job = job;
|
|
224
|
+
this._config = config;
|
|
225
|
+
this._reporter = reporter;
|
|
226
|
+
this._failureTracker = failureTracker;
|
|
227
|
+
this._stopCallback = stopCallback;
|
|
228
|
+
this._remainingByTestId = new Map(this.job.tests.map((e) => [e.id, e]));
|
|
229
|
+
}
|
|
230
|
+
_onTestBegin(params) {
|
|
231
|
+
const test = this._remainingByTestId.get(params.testId);
|
|
232
|
+
if (!test) {
|
|
233
|
+
return;
|
|
234
|
+
}
|
|
235
|
+
const result = test._appendTestResult();
|
|
236
|
+
this._dataByTestId.set(test.id, { test, result, steps: /* @__PURE__ */ new Map() });
|
|
237
|
+
result.parallelIndex = this._parallelIndex;
|
|
238
|
+
result.workerIndex = this._workerIndex;
|
|
239
|
+
result.startTime = new Date(params.startWallTime);
|
|
240
|
+
this._reporter.onTestBegin?.(test, result);
|
|
241
|
+
this._currentlyRunning = { test, result };
|
|
242
|
+
}
|
|
243
|
+
_onTestEnd(params) {
|
|
244
|
+
if (this._failureTracker.hasReachedMaxFailures()) {
|
|
245
|
+
params.status = "interrupted";
|
|
246
|
+
params.errors = [];
|
|
247
|
+
}
|
|
248
|
+
const data = this._dataByTestId.get(params.testId);
|
|
249
|
+
if (!data) {
|
|
250
|
+
return;
|
|
251
|
+
}
|
|
252
|
+
this._dataByTestId.delete(params.testId);
|
|
253
|
+
this._remainingByTestId.delete(params.testId);
|
|
254
|
+
const { result, test } = data;
|
|
255
|
+
result.duration = params.duration;
|
|
256
|
+
result.errors = params.errors;
|
|
257
|
+
result.error = result.errors[0];
|
|
258
|
+
result.status = params.status;
|
|
259
|
+
result.annotations = params.annotations;
|
|
260
|
+
test.annotations = [...params.annotations];
|
|
261
|
+
test.expectedStatus = params.expectedStatus;
|
|
262
|
+
test.timeout = params.timeout;
|
|
263
|
+
const isFailure = result.status !== "skipped" && result.status !== test.expectedStatus;
|
|
264
|
+
if (isFailure)
|
|
265
|
+
this._failedTests.add(test);
|
|
266
|
+
if (params.hasNonRetriableError)
|
|
267
|
+
this._addNonretriableTestAndSerialModeParents(test);
|
|
268
|
+
this._reportTestEnd(test, result);
|
|
269
|
+
this._currentlyRunning = void 0;
|
|
270
|
+
}
|
|
271
|
+
_addNonretriableTestAndSerialModeParents(test) {
|
|
272
|
+
this._failedWithNonRetriableError.add(test);
|
|
273
|
+
for (let parent = test.parent; parent; parent = parent.parent) {
|
|
274
|
+
if (parent._parallelMode === "serial")
|
|
275
|
+
this._failedWithNonRetriableError.add(parent);
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
_onStepBegin(params) {
|
|
279
|
+
const data = this._dataByTestId.get(params.testId);
|
|
280
|
+
if (!data) {
|
|
281
|
+
return;
|
|
282
|
+
}
|
|
283
|
+
const { result, steps, test } = data;
|
|
284
|
+
const parentStep = params.parentStepId ? steps.get(params.parentStepId) : void 0;
|
|
285
|
+
const step = {
|
|
286
|
+
title: params.title,
|
|
287
|
+
titlePath: () => {
|
|
288
|
+
const parentPath = parentStep?.titlePath() || [];
|
|
289
|
+
return [...parentPath, params.title];
|
|
290
|
+
},
|
|
291
|
+
parent: parentStep,
|
|
292
|
+
category: params.category,
|
|
293
|
+
startTime: new Date(params.wallTime),
|
|
294
|
+
duration: -1,
|
|
295
|
+
steps: [],
|
|
296
|
+
attachments: [],
|
|
297
|
+
annotations: [],
|
|
298
|
+
location: params.location
|
|
299
|
+
};
|
|
300
|
+
steps.set(params.stepId, step);
|
|
301
|
+
(parentStep || result).steps.push(step);
|
|
302
|
+
this._reporter.onStepBegin?.(test, result, step);
|
|
303
|
+
}
|
|
304
|
+
_onStepEnd(params) {
|
|
305
|
+
const data = this._dataByTestId.get(params.testId);
|
|
306
|
+
if (!data) {
|
|
307
|
+
return;
|
|
308
|
+
}
|
|
309
|
+
const { result, steps, test } = data;
|
|
310
|
+
const step = steps.get(params.stepId);
|
|
311
|
+
if (!step) {
|
|
312
|
+
this._reporter.onStdErr?.("Internal error: step end without step begin: " + params.stepId, test, result);
|
|
313
|
+
return;
|
|
314
|
+
}
|
|
315
|
+
step.duration = params.wallTime - step.startTime.getTime();
|
|
316
|
+
if (params.error)
|
|
317
|
+
step.error = params.error;
|
|
318
|
+
if (params.suggestedRebaseline)
|
|
319
|
+
(0, import_rebase.addSuggestedRebaseline)(step.location, params.suggestedRebaseline);
|
|
320
|
+
step.annotations = params.annotations;
|
|
321
|
+
steps.delete(params.stepId);
|
|
322
|
+
this._reporter.onStepEnd?.(test, result, step);
|
|
323
|
+
}
|
|
324
|
+
_onAttach(params) {
|
|
325
|
+
const data = this._dataByTestId.get(params.testId);
|
|
326
|
+
if (!data) {
|
|
327
|
+
return;
|
|
328
|
+
}
|
|
329
|
+
const attachment = {
|
|
330
|
+
name: params.name,
|
|
331
|
+
path: params.path,
|
|
332
|
+
contentType: params.contentType,
|
|
333
|
+
body: params.body !== void 0 ? Buffer.from(params.body, "base64") : void 0
|
|
334
|
+
};
|
|
335
|
+
data.result.attachments.push(attachment);
|
|
336
|
+
if (params.stepId) {
|
|
337
|
+
const step = data.steps.get(params.stepId);
|
|
338
|
+
if (step)
|
|
339
|
+
step.attachments.push(attachment);
|
|
340
|
+
else
|
|
341
|
+
this._reporter.onStdErr?.("Internal error: step id not found: " + params.stepId);
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
_failTestWithErrors(test, errors) {
|
|
345
|
+
const runData = this._dataByTestId.get(test.id);
|
|
346
|
+
let result;
|
|
347
|
+
if (runData) {
|
|
348
|
+
result = runData.result;
|
|
349
|
+
} else {
|
|
350
|
+
result = test._appendTestResult();
|
|
351
|
+
this._reporter.onTestBegin?.(test, result);
|
|
352
|
+
}
|
|
353
|
+
result.errors = [...errors];
|
|
354
|
+
result.error = result.errors[0];
|
|
355
|
+
result.status = errors.length ? "failed" : "skipped";
|
|
356
|
+
this._reportTestEnd(test, result);
|
|
357
|
+
this._failedTests.add(test);
|
|
358
|
+
}
|
|
359
|
+
_massSkipTestsFromRemaining(testIds, errors) {
|
|
360
|
+
for (const test of this._remainingByTestId.values()) {
|
|
361
|
+
if (!testIds.has(test.id))
|
|
362
|
+
continue;
|
|
363
|
+
if (!this._failureTracker.hasReachedMaxFailures()) {
|
|
364
|
+
this._failTestWithErrors(test, errors);
|
|
365
|
+
errors = [];
|
|
366
|
+
}
|
|
367
|
+
this._remainingByTestId.delete(test.id);
|
|
368
|
+
}
|
|
369
|
+
if (errors.length) {
|
|
370
|
+
this._failureTracker.onWorkerError();
|
|
371
|
+
for (const error of errors)
|
|
372
|
+
this._reporter.onError?.(error);
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
_onDone(params) {
|
|
376
|
+
if (!this._remainingByTestId.size && !this._failedTests.size && !params.fatalErrors.length && !params.skipTestsDueToSetupFailure.length && !params.fatalUnknownTestIds && !params.unexpectedExitError && !params.stoppedDueToUnhandledErrorInTestFail) {
|
|
377
|
+
this._finished({ didFail: false });
|
|
378
|
+
return;
|
|
379
|
+
}
|
|
380
|
+
for (const testId of params.fatalUnknownTestIds || []) {
|
|
381
|
+
const test = this._remainingByTestId.get(testId);
|
|
382
|
+
if (test) {
|
|
383
|
+
this._remainingByTestId.delete(testId);
|
|
384
|
+
this._failTestWithErrors(test, [{ message: `Test not found in the worker process. Make sure test title does not change.` }]);
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
if (params.fatalErrors.length) {
|
|
388
|
+
this._massSkipTestsFromRemaining(new Set(this._remainingByTestId.keys()), params.fatalErrors);
|
|
389
|
+
}
|
|
390
|
+
this._massSkipTestsFromRemaining(new Set(params.skipTestsDueToSetupFailure), []);
|
|
391
|
+
if (params.unexpectedExitError) {
|
|
392
|
+
if (this._currentlyRunning)
|
|
393
|
+
this._massSkipTestsFromRemaining(/* @__PURE__ */ new Set([this._currentlyRunning.test.id]), [params.unexpectedExitError]);
|
|
394
|
+
else
|
|
395
|
+
this._massSkipTestsFromRemaining(new Set(this._remainingByTestId.keys()), [params.unexpectedExitError]);
|
|
396
|
+
}
|
|
397
|
+
const retryCandidates = /* @__PURE__ */ new Set();
|
|
398
|
+
const serialSuitesWithFailures = /* @__PURE__ */ new Set();
|
|
399
|
+
for (const failedTest of this._failedTests) {
|
|
400
|
+
if (this._failedWithNonRetriableError.has(failedTest))
|
|
401
|
+
continue;
|
|
402
|
+
retryCandidates.add(failedTest);
|
|
403
|
+
let outermostSerialSuite;
|
|
404
|
+
for (let parent = failedTest.parent; parent; parent = parent.parent) {
|
|
405
|
+
if (parent._parallelMode === "serial")
|
|
406
|
+
outermostSerialSuite = parent;
|
|
407
|
+
}
|
|
408
|
+
if (outermostSerialSuite && !this._failedWithNonRetriableError.has(outermostSerialSuite))
|
|
409
|
+
serialSuitesWithFailures.add(outermostSerialSuite);
|
|
410
|
+
}
|
|
411
|
+
const testsBelongingToSomeSerialSuiteWithFailures = [...this._remainingByTestId.values()].filter((test) => {
|
|
412
|
+
let parent = test.parent;
|
|
413
|
+
while (parent && !serialSuitesWithFailures.has(parent))
|
|
414
|
+
parent = parent.parent;
|
|
415
|
+
return !!parent;
|
|
416
|
+
});
|
|
417
|
+
this._massSkipTestsFromRemaining(new Set(testsBelongingToSomeSerialSuiteWithFailures.map((test) => test.id)), []);
|
|
418
|
+
for (const serialSuite of serialSuitesWithFailures) {
|
|
419
|
+
serialSuite.allTests().forEach((test) => retryCandidates.add(test));
|
|
420
|
+
}
|
|
421
|
+
const remaining = [...this._remainingByTestId.values()];
|
|
422
|
+
for (const test of retryCandidates) {
|
|
423
|
+
if (test.results.length < test.retries + 1)
|
|
424
|
+
remaining.push(test);
|
|
425
|
+
}
|
|
426
|
+
const newJob = remaining.length ? { ...this.job, tests: remaining } : void 0;
|
|
427
|
+
this._finished({ didFail: true, newJob });
|
|
428
|
+
}
|
|
429
|
+
onExit(data) {
|
|
430
|
+
const unexpectedExitError = data.unexpectedly ? {
|
|
431
|
+
message: `Error: worker process exited unexpectedly (code=${data.code}, signal=${data.signal})`
|
|
432
|
+
} : void 0;
|
|
433
|
+
this._onDone({ skipTestsDueToSetupFailure: [], fatalErrors: [], unexpectedExitError });
|
|
434
|
+
}
|
|
435
|
+
_finished(result) {
|
|
436
|
+
import_utils.eventsHelper.removeEventListeners(this._listeners);
|
|
437
|
+
this.jobResult.resolve(result);
|
|
438
|
+
}
|
|
439
|
+
runInWorker(worker) {
|
|
440
|
+
this._parallelIndex = worker.parallelIndex;
|
|
441
|
+
this._workerIndex = worker.workerIndex;
|
|
442
|
+
const runPayload = {
|
|
443
|
+
file: this.job.requireFile,
|
|
444
|
+
entries: this.job.tests.map((test) => {
|
|
445
|
+
return { testId: test.id, retry: test.results.length };
|
|
446
|
+
})
|
|
447
|
+
};
|
|
448
|
+
worker.runTestGroup(runPayload);
|
|
449
|
+
this._listeners = [
|
|
450
|
+
import_utils.eventsHelper.addEventListener(worker, "testBegin", this._onTestBegin.bind(this)),
|
|
451
|
+
import_utils.eventsHelper.addEventListener(worker, "testEnd", this._onTestEnd.bind(this)),
|
|
452
|
+
import_utils.eventsHelper.addEventListener(worker, "stepBegin", this._onStepBegin.bind(this)),
|
|
453
|
+
import_utils.eventsHelper.addEventListener(worker, "stepEnd", this._onStepEnd.bind(this)),
|
|
454
|
+
import_utils.eventsHelper.addEventListener(worker, "attach", this._onAttach.bind(this)),
|
|
455
|
+
import_utils.eventsHelper.addEventListener(worker, "testPaused", this._onTestPaused.bind(this, worker)),
|
|
456
|
+
import_utils.eventsHelper.addEventListener(worker, "done", this._onDone.bind(this)),
|
|
457
|
+
import_utils.eventsHelper.addEventListener(worker, "exit", this.onExit.bind(this))
|
|
458
|
+
];
|
|
459
|
+
}
|
|
460
|
+
_onTestPaused(worker, params) {
|
|
461
|
+
const sendMessage = async (message) => {
|
|
462
|
+
try {
|
|
463
|
+
if (this.jobResult.isDone())
|
|
464
|
+
throw new Error("Test has already stopped");
|
|
465
|
+
const response = await worker.sendCustomMessage({ testId: params.testId, request: message.request });
|
|
466
|
+
if (response.error)
|
|
467
|
+
(0, import_internalReporter.addLocationAndSnippetToError)(this._config.config, response.error);
|
|
468
|
+
return response;
|
|
469
|
+
} catch (e) {
|
|
470
|
+
const error = (0, import_util.serializeError)(e);
|
|
471
|
+
(0, import_internalReporter.addLocationAndSnippetToError)(this._config.config, error);
|
|
472
|
+
return { response: void 0, error };
|
|
473
|
+
}
|
|
474
|
+
};
|
|
475
|
+
for (const error of params.errors)
|
|
476
|
+
(0, import_internalReporter.addLocationAndSnippetToError)(this._config.config, error);
|
|
477
|
+
this._failureTracker.onTestPaused?.({ ...params, sendMessage });
|
|
478
|
+
}
|
|
479
|
+
skipWholeJob() {
|
|
480
|
+
const allTestsSkipped = this.job.tests.every((test) => test.expectedStatus === "skipped");
|
|
481
|
+
if (allTestsSkipped && !this._failureTracker.hasReachedMaxFailures()) {
|
|
482
|
+
for (const test of this.job.tests) {
|
|
483
|
+
const result = test._appendTestResult();
|
|
484
|
+
this._reporter.onTestBegin?.(test, result);
|
|
485
|
+
result.status = "skipped";
|
|
486
|
+
result.annotations = [...test.annotations];
|
|
487
|
+
this._reportTestEnd(test, result);
|
|
488
|
+
}
|
|
489
|
+
return true;
|
|
490
|
+
}
|
|
491
|
+
return false;
|
|
492
|
+
}
|
|
493
|
+
currentlyRunning() {
|
|
494
|
+
return this._currentlyRunning;
|
|
495
|
+
}
|
|
496
|
+
_reportTestEnd(test, result) {
|
|
497
|
+
this._reporter.onTestEnd?.(test, result);
|
|
498
|
+
const hadMaxFailures = this._failureTracker.hasReachedMaxFailures();
|
|
499
|
+
this._failureTracker.onTestEnd(test, result);
|
|
500
|
+
if (this._failureTracker.hasReachedMaxFailures()) {
|
|
501
|
+
this._stopCallback();
|
|
502
|
+
if (!hadMaxFailures)
|
|
503
|
+
this._reporter.onError?.({ message: import_utils2.colors.red(`Testing stopped early after ${this._failureTracker.maxFailures()} maximum allowed failures.`) });
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
function chunkFromParams(params) {
|
|
508
|
+
if (typeof params.text === "string")
|
|
509
|
+
return params.text;
|
|
510
|
+
return Buffer.from(params.buffer, "base64");
|
|
511
|
+
}
|
|
512
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
513
|
+
0 && (module.exports = {
|
|
514
|
+
Dispatcher
|
|
515
|
+
});
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var failureTracker_exports = {};
|
|
20
|
+
__export(failureTracker_exports, {
|
|
21
|
+
FailureTracker: () => FailureTracker
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(failureTracker_exports);
|
|
24
|
+
class FailureTracker {
|
|
25
|
+
constructor(config, options) {
|
|
26
|
+
this._failureCount = 0;
|
|
27
|
+
this._hasWorkerErrors = false;
|
|
28
|
+
this._topLevelProjects = [];
|
|
29
|
+
this._config = config;
|
|
30
|
+
this._pauseOnError = !!options?.pauseOnError;
|
|
31
|
+
this._pauseAtEnd = !!options?.pauseAtEnd;
|
|
32
|
+
}
|
|
33
|
+
onRootSuite(rootSuite, topLevelProjects) {
|
|
34
|
+
this._rootSuite = rootSuite;
|
|
35
|
+
this._topLevelProjects = topLevelProjects;
|
|
36
|
+
}
|
|
37
|
+
onTestEnd(test, result) {
|
|
38
|
+
if (test.outcome() === "unexpected" && test.results.length > test.retries)
|
|
39
|
+
++this._failureCount;
|
|
40
|
+
}
|
|
41
|
+
onWorkerError() {
|
|
42
|
+
this._hasWorkerErrors = true;
|
|
43
|
+
}
|
|
44
|
+
pauseOnError() {
|
|
45
|
+
return this._pauseOnError;
|
|
46
|
+
}
|
|
47
|
+
pauseAtEnd(inProject) {
|
|
48
|
+
return this._topLevelProjects.includes(inProject) && this._pauseAtEnd;
|
|
49
|
+
}
|
|
50
|
+
hasReachedMaxFailures() {
|
|
51
|
+
return this.maxFailures() > 0 && this._failureCount >= this.maxFailures();
|
|
52
|
+
}
|
|
53
|
+
hasWorkerErrors() {
|
|
54
|
+
return this._hasWorkerErrors;
|
|
55
|
+
}
|
|
56
|
+
result() {
|
|
57
|
+
return this._hasWorkerErrors || this.hasReachedMaxFailures() || this.hasFailedTests() || this._config.failOnFlakyTests && this.hasFlakyTests() ? "failed" : "passed";
|
|
58
|
+
}
|
|
59
|
+
hasFailedTests() {
|
|
60
|
+
return this._rootSuite?.allTests().some((test) => !test.ok());
|
|
61
|
+
}
|
|
62
|
+
hasFlakyTests() {
|
|
63
|
+
return this._rootSuite?.allTests().some((test) => test.outcome() === "flaky");
|
|
64
|
+
}
|
|
65
|
+
maxFailures() {
|
|
66
|
+
return this._config.config.maxFailures;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
70
|
+
0 && (module.exports = {
|
|
71
|
+
FailureTracker
|
|
72
|
+
});
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var lastRun_exports = {};
|
|
30
|
+
__export(lastRun_exports, {
|
|
31
|
+
LastRunReporter: () => LastRunReporter
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(lastRun_exports);
|
|
34
|
+
var import_fs = __toESM(require("fs"));
|
|
35
|
+
var import_path = __toESM(require("path"));
|
|
36
|
+
var import_projectUtils = require("./projectUtils");
|
|
37
|
+
class LastRunReporter {
|
|
38
|
+
constructor(config) {
|
|
39
|
+
this._config = config;
|
|
40
|
+
const [project] = (0, import_projectUtils.filterProjects)(config.projects, config.cliProjectFilter);
|
|
41
|
+
if (project)
|
|
42
|
+
this._lastRunFile = import_path.default.join(project.project.outputDir, ".last-run.json");
|
|
43
|
+
}
|
|
44
|
+
async filterLastFailed() {
|
|
45
|
+
if (!this._lastRunFile)
|
|
46
|
+
return;
|
|
47
|
+
try {
|
|
48
|
+
const lastRunInfo = JSON.parse(await import_fs.default.promises.readFile(this._lastRunFile, "utf8"));
|
|
49
|
+
const failedTestIds = new Set(lastRunInfo.failedTests);
|
|
50
|
+
this._config.postShardTestFilters.push((test) => failedTestIds.has(test.id));
|
|
51
|
+
} catch {
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
version() {
|
|
55
|
+
return "v2";
|
|
56
|
+
}
|
|
57
|
+
printsToStdio() {
|
|
58
|
+
return false;
|
|
59
|
+
}
|
|
60
|
+
onBegin(suite) {
|
|
61
|
+
this._suite = suite;
|
|
62
|
+
}
|
|
63
|
+
async onEnd(result) {
|
|
64
|
+
if (!this._lastRunFile || this._config.cliListOnly)
|
|
65
|
+
return;
|
|
66
|
+
const lastRunInfo = {
|
|
67
|
+
status: result.status,
|
|
68
|
+
failedTests: this._suite?.allTests().filter((t) => !t.ok()).map((t) => t.id) || []
|
|
69
|
+
};
|
|
70
|
+
await import_fs.default.promises.mkdir(import_path.default.dirname(this._lastRunFile), { recursive: true });
|
|
71
|
+
await import_fs.default.promises.writeFile(this._lastRunFile, JSON.stringify(lastRunInfo, void 0, 2));
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
75
|
+
0 && (module.exports = {
|
|
76
|
+
LastRunReporter
|
|
77
|
+
});
|