playwright-codegen-pro-core 1.0.0

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.
Files changed (468) hide show
  1. package/LICENSE +202 -0
  2. package/NOTICE +5 -0
  3. package/README.md +3 -0
  4. package/ThirdPartyNotices.txt +3552 -0
  5. package/bin/install_media_pack.ps1 +5 -0
  6. package/bin/install_webkit_wsl.ps1 +33 -0
  7. package/bin/reinstall_chrome_beta_linux.sh +42 -0
  8. package/bin/reinstall_chrome_beta_mac.sh +13 -0
  9. package/bin/reinstall_chrome_beta_win.ps1 +24 -0
  10. package/bin/reinstall_chrome_stable_linux.sh +42 -0
  11. package/bin/reinstall_chrome_stable_mac.sh +12 -0
  12. package/bin/reinstall_chrome_stable_win.ps1 +24 -0
  13. package/bin/reinstall_msedge_beta_linux.sh +48 -0
  14. package/bin/reinstall_msedge_beta_mac.sh +11 -0
  15. package/bin/reinstall_msedge_beta_win.ps1 +23 -0
  16. package/bin/reinstall_msedge_dev_linux.sh +48 -0
  17. package/bin/reinstall_msedge_dev_mac.sh +11 -0
  18. package/bin/reinstall_msedge_dev_win.ps1 +23 -0
  19. package/bin/reinstall_msedge_stable_linux.sh +48 -0
  20. package/bin/reinstall_msedge_stable_mac.sh +11 -0
  21. package/bin/reinstall_msedge_stable_win.ps1 +24 -0
  22. package/browsers.json +81 -0
  23. package/bundles/mcp/package-lock.json +1135 -0
  24. package/bundles/mcp/package.json +10 -0
  25. package/bundles/mcp/raw-body.ts +43 -0
  26. package/bundles/utils/package-lock.json +466 -0
  27. package/bundles/utils/package.json +40 -0
  28. package/bundles/zip/package-lock.json +257 -0
  29. package/bundles/zip/package.json +16 -0
  30. package/cli.js +18 -0
  31. package/index.d.ts +17 -0
  32. package/index.js +32 -0
  33. package/index.mjs +28 -0
  34. package/lib/androidServerImpl.js +65 -0
  35. package/lib/browserServerImpl.js +120 -0
  36. package/lib/cli/driver.js +98 -0
  37. package/lib/cli/program.js +599 -0
  38. package/lib/cli/programWithTestStub.js +74 -0
  39. package/lib/client/android.js +361 -0
  40. package/lib/client/api.js +137 -0
  41. package/lib/client/artifact.js +79 -0
  42. package/lib/client/browser.js +169 -0
  43. package/lib/client/browserContext.js +563 -0
  44. package/lib/client/browserType.js +153 -0
  45. package/lib/client/cdpSession.js +55 -0
  46. package/lib/client/channelOwner.js +194 -0
  47. package/lib/client/clientHelper.js +64 -0
  48. package/lib/client/clientInstrumentation.js +55 -0
  49. package/lib/client/clientStackTrace.js +69 -0
  50. package/lib/client/clock.js +68 -0
  51. package/lib/client/connect.js +143 -0
  52. package/lib/client/connection.js +322 -0
  53. package/lib/client/consoleMessage.js +61 -0
  54. package/lib/client/coverage.js +44 -0
  55. package/lib/client/debugger.js +57 -0
  56. package/lib/client/dialog.js +56 -0
  57. package/lib/client/disposable.js +76 -0
  58. package/lib/client/download.js +62 -0
  59. package/lib/client/electron.js +138 -0
  60. package/lib/client/elementHandle.js +281 -0
  61. package/lib/client/errors.js +77 -0
  62. package/lib/client/eventEmitter.js +314 -0
  63. package/lib/client/events.js +103 -0
  64. package/lib/client/fetch.js +367 -0
  65. package/lib/client/fileChooser.js +46 -0
  66. package/lib/client/fileUtils.js +34 -0
  67. package/lib/client/frame.js +404 -0
  68. package/lib/client/harRouter.js +99 -0
  69. package/lib/client/input.js +84 -0
  70. package/lib/client/jsHandle.js +105 -0
  71. package/lib/client/jsonPipe.js +39 -0
  72. package/lib/client/localUtils.js +60 -0
  73. package/lib/client/locator.js +367 -0
  74. package/lib/client/network.js +750 -0
  75. package/lib/client/page.js +729 -0
  76. package/lib/client/platform.js +77 -0
  77. package/lib/client/playwright.js +71 -0
  78. package/lib/client/screencast.js +48 -0
  79. package/lib/client/selectors.js +57 -0
  80. package/lib/client/stream.js +39 -0
  81. package/lib/client/timeoutSettings.js +79 -0
  82. package/lib/client/tracing.js +126 -0
  83. package/lib/client/types.js +28 -0
  84. package/lib/client/video.js +68 -0
  85. package/lib/client/waiter.js +142 -0
  86. package/lib/client/webError.js +39 -0
  87. package/lib/client/worker.js +85 -0
  88. package/lib/client/writableStream.js +39 -0
  89. package/lib/generated/bindingsControllerSource.js +28 -0
  90. package/lib/generated/clockSource.js +28 -0
  91. package/lib/generated/injectedScriptSource.js +28 -0
  92. package/lib/generated/pollingRecorderSource.js +28 -0
  93. package/lib/generated/storageScriptSource.js +28 -0
  94. package/lib/generated/utilityScriptSource.js +28 -0
  95. package/lib/generated/webSocketMockSource.js +336 -0
  96. package/lib/inProcessFactory.js +60 -0
  97. package/lib/inprocess.js +3 -0
  98. package/lib/mcpBundle.js +81 -0
  99. package/lib/mcpBundleImpl/index.js +91 -0
  100. package/lib/outofprocess.js +76 -0
  101. package/lib/protocol/serializers.js +197 -0
  102. package/lib/protocol/validator.js +3035 -0
  103. package/lib/protocol/validatorPrimitives.js +193 -0
  104. package/lib/remote/playwrightConnection.js +131 -0
  105. package/lib/remote/playwrightPipeServer.js +100 -0
  106. package/lib/remote/playwrightServer.js +339 -0
  107. package/lib/remote/playwrightWebSocketServer.js +73 -0
  108. package/lib/remote/serverTransport.js +96 -0
  109. package/lib/server/android/android.js +465 -0
  110. package/lib/server/android/backendAdb.js +177 -0
  111. package/lib/server/artifact.js +127 -0
  112. package/lib/server/bidi/bidiBrowser.js +571 -0
  113. package/lib/server/bidi/bidiChromium.js +162 -0
  114. package/lib/server/bidi/bidiConnection.js +213 -0
  115. package/lib/server/bidi/bidiDeserializer.js +116 -0
  116. package/lib/server/bidi/bidiExecutionContext.js +267 -0
  117. package/lib/server/bidi/bidiFirefox.js +128 -0
  118. package/lib/server/bidi/bidiInput.js +146 -0
  119. package/lib/server/bidi/bidiNetworkManager.js +411 -0
  120. package/lib/server/bidi/bidiOverCdp.js +102 -0
  121. package/lib/server/bidi/bidiPage.js +599 -0
  122. package/lib/server/bidi/bidiPdf.js +106 -0
  123. package/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
  124. package/lib/server/bidi/third_party/bidiKeyboard.js +256 -0
  125. package/lib/server/bidi/third_party/bidiProtocol.js +24 -0
  126. package/lib/server/bidi/third_party/bidiProtocolCore.js +180 -0
  127. package/lib/server/bidi/third_party/bidiProtocolPermissions.js +42 -0
  128. package/lib/server/bidi/third_party/bidiSerializer.js +148 -0
  129. package/lib/server/bidi/third_party/firefoxPrefs.js +261 -0
  130. package/lib/server/browser.js +223 -0
  131. package/lib/server/browserContext.js +703 -0
  132. package/lib/server/browserType.js +338 -0
  133. package/lib/server/callLog.js +82 -0
  134. package/lib/server/chromium/appIcon.png +0 -0
  135. package/lib/server/chromium/chromium.js +399 -0
  136. package/lib/server/chromium/chromiumSwitches.js +104 -0
  137. package/lib/server/chromium/crBrowser.js +532 -0
  138. package/lib/server/chromium/crConnection.js +197 -0
  139. package/lib/server/chromium/crCoverage.js +235 -0
  140. package/lib/server/chromium/crDevTools.js +111 -0
  141. package/lib/server/chromium/crDragDrop.js +131 -0
  142. package/lib/server/chromium/crExecutionContext.js +146 -0
  143. package/lib/server/chromium/crInput.js +187 -0
  144. package/lib/server/chromium/crNetworkManager.js +711 -0
  145. package/lib/server/chromium/crPage.js +1004 -0
  146. package/lib/server/chromium/crPdf.js +121 -0
  147. package/lib/server/chromium/crProtocolHelper.js +145 -0
  148. package/lib/server/chromium/crServiceWorker.js +137 -0
  149. package/lib/server/chromium/defaultFontFamilies.js +162 -0
  150. package/lib/server/chromium/protocol.d.js +16 -0
  151. package/lib/server/clock.js +149 -0
  152. package/lib/server/codegen/csharp.js +327 -0
  153. package/lib/server/codegen/java.js +274 -0
  154. package/lib/server/codegen/javascript.js +247 -0
  155. package/lib/server/codegen/jsonl.js +52 -0
  156. package/lib/server/codegen/language.js +132 -0
  157. package/lib/server/codegen/languages.js +68 -0
  158. package/lib/server/codegen/python.js +279 -0
  159. package/lib/server/codegen/types.js +16 -0
  160. package/lib/server/console.js +61 -0
  161. package/lib/server/cookieStore.js +206 -0
  162. package/lib/server/debugController.js +197 -0
  163. package/lib/server/debugger.js +117 -0
  164. package/lib/server/deviceDescriptors.js +39 -0
  165. package/lib/server/deviceDescriptorsSource.json +1779 -0
  166. package/lib/server/dialog.js +116 -0
  167. package/lib/server/dispatchers/androidDispatcher.js +325 -0
  168. package/lib/server/dispatchers/artifactDispatcher.js +118 -0
  169. package/lib/server/dispatchers/browserContextDispatcher.js +381 -0
  170. package/lib/server/dispatchers/browserDispatcher.js +124 -0
  171. package/lib/server/dispatchers/browserTypeDispatcher.js +71 -0
  172. package/lib/server/dispatchers/cdpSessionDispatcher.js +47 -0
  173. package/lib/server/dispatchers/debugControllerDispatcher.js +78 -0
  174. package/lib/server/dispatchers/debuggerDispatcher.js +80 -0
  175. package/lib/server/dispatchers/dialogDispatcher.js +47 -0
  176. package/lib/server/dispatchers/dispatcher.js +364 -0
  177. package/lib/server/dispatchers/disposableDispatcher.js +39 -0
  178. package/lib/server/dispatchers/electronDispatcher.js +90 -0
  179. package/lib/server/dispatchers/elementHandlerDispatcher.js +181 -0
  180. package/lib/server/dispatchers/frameDispatcher.js +227 -0
  181. package/lib/server/dispatchers/jsHandleDispatcher.js +85 -0
  182. package/lib/server/dispatchers/jsonPipeDispatcher.js +58 -0
  183. package/lib/server/dispatchers/localUtilsDispatcher.js +185 -0
  184. package/lib/server/dispatchers/networkDispatchers.js +214 -0
  185. package/lib/server/dispatchers/pageDispatcher.js +430 -0
  186. package/lib/server/dispatchers/playwrightDispatcher.js +108 -0
  187. package/lib/server/dispatchers/streamDispatcher.js +67 -0
  188. package/lib/server/dispatchers/tracingDispatcher.js +68 -0
  189. package/lib/server/dispatchers/webSocketRouteDispatcher.js +164 -0
  190. package/lib/server/dispatchers/writableStreamDispatcher.js +79 -0
  191. package/lib/server/disposable.js +41 -0
  192. package/lib/server/dom.js +833 -0
  193. package/lib/server/download.js +71 -0
  194. package/lib/server/electron/electron.js +272 -0
  195. package/lib/server/electron/loader.js +29 -0
  196. package/lib/server/errors.js +69 -0
  197. package/lib/server/fetch.js +621 -0
  198. package/lib/server/fileChooser.js +43 -0
  199. package/lib/server/fileUploadUtils.js +84 -0
  200. package/lib/server/firefox/ffBrowser.js +415 -0
  201. package/lib/server/firefox/ffConnection.js +142 -0
  202. package/lib/server/firefox/ffExecutionContext.js +150 -0
  203. package/lib/server/firefox/ffInput.js +175 -0
  204. package/lib/server/firefox/ffNetworkManager.js +256 -0
  205. package/lib/server/firefox/ffPage.js +495 -0
  206. package/lib/server/firefox/firefox.js +114 -0
  207. package/lib/server/firefox/protocol.d.js +16 -0
  208. package/lib/server/formData.js +147 -0
  209. package/lib/server/frameSelectors.js +160 -0
  210. package/lib/server/frames.js +1495 -0
  211. package/lib/server/har/harRecorder.js +147 -0
  212. package/lib/server/har/harTracer.js +608 -0
  213. package/lib/server/harBackend.js +157 -0
  214. package/lib/server/helper.js +96 -0
  215. package/lib/server/index.js +58 -0
  216. package/lib/server/input.js +322 -0
  217. package/lib/server/instrumentation.js +72 -0
  218. package/lib/server/javascript.js +291 -0
  219. package/lib/server/launchApp.js +127 -0
  220. package/lib/server/localUtils.js +214 -0
  221. package/lib/server/macEditingCommands.js +143 -0
  222. package/lib/server/network.js +668 -0
  223. package/lib/server/page.js +884 -0
  224. package/lib/server/pipeTransport.js +89 -0
  225. package/lib/server/playwright.js +69 -0
  226. package/lib/server/progress.js +136 -0
  227. package/lib/server/protocolError.js +52 -0
  228. package/lib/server/recorder/chat.js +161 -0
  229. package/lib/server/recorder/networkCapture.js +282 -0
  230. package/lib/server/recorder/recorderApp.js +581 -0
  231. package/lib/server/recorder/recorderRunner.js +138 -0
  232. package/lib/server/recorder/recorderSignalProcessor.js +83 -0
  233. package/lib/server/recorder/recorderUtils.js +157 -0
  234. package/lib/server/recorder/sessionExporter.js +40 -0
  235. package/lib/server/recorder/sessionPromptBuilder.js +128 -0
  236. package/lib/server/recorder/sessionRedactor.js +74 -0
  237. package/lib/server/recorder/throttledFile.js +57 -0
  238. package/lib/server/recorder.js +538 -0
  239. package/lib/server/registry/browserFetcher.js +177 -0
  240. package/lib/server/registry/dependencies.js +371 -0
  241. package/lib/server/registry/index.js +1395 -0
  242. package/lib/server/registry/nativeDeps.js +1281 -0
  243. package/lib/server/registry/oopDownloadBrowserMain.js +127 -0
  244. package/lib/server/screencast.js +238 -0
  245. package/lib/server/screenshotter.js +333 -0
  246. package/lib/server/selectors.js +112 -0
  247. package/lib/server/socksClientCertificatesInterceptor.js +383 -0
  248. package/lib/server/socksInterceptor.js +95 -0
  249. package/lib/server/trace/recorder/snapshotter.js +147 -0
  250. package/lib/server/trace/recorder/snapshotterInjected.js +561 -0
  251. package/lib/server/trace/recorder/tracing.js +615 -0
  252. package/lib/server/trace/viewer/traceViewer.js +244 -0
  253. package/lib/server/transport.js +181 -0
  254. package/lib/server/types.js +28 -0
  255. package/lib/server/usKeyboardLayout.js +152 -0
  256. package/lib/server/utils/ascii.js +44 -0
  257. package/lib/server/utils/comparators.js +139 -0
  258. package/lib/server/utils/crypto.js +216 -0
  259. package/lib/server/utils/debug.js +42 -0
  260. package/lib/server/utils/debugLogger.js +122 -0
  261. package/lib/server/utils/disposable.js +32 -0
  262. package/lib/server/utils/env.js +73 -0
  263. package/lib/server/utils/eventsHelper.js +41 -0
  264. package/lib/server/utils/expectUtils.js +123 -0
  265. package/lib/server/utils/fileUtils.js +191 -0
  266. package/lib/server/utils/happyEyeballs.js +207 -0
  267. package/lib/server/utils/hostPlatform.js +123 -0
  268. package/lib/server/utils/httpServer.js +205 -0
  269. package/lib/server/utils/image_tools/colorUtils.js +89 -0
  270. package/lib/server/utils/image_tools/compare.js +109 -0
  271. package/lib/server/utils/image_tools/imageChannel.js +78 -0
  272. package/lib/server/utils/image_tools/stats.js +102 -0
  273. package/lib/server/utils/linuxUtils.js +71 -0
  274. package/lib/server/utils/network.js +243 -0
  275. package/lib/server/utils/nodePlatform.js +154 -0
  276. package/lib/server/utils/pipeTransport.js +84 -0
  277. package/lib/server/utils/processLauncher.js +243 -0
  278. package/lib/server/utils/profiler.js +65 -0
  279. package/lib/server/utils/socksProxy.js +511 -0
  280. package/lib/server/utils/spawnAsync.js +41 -0
  281. package/lib/server/utils/task.js +51 -0
  282. package/lib/server/utils/userAgent.js +98 -0
  283. package/lib/server/utils/wsServer.js +121 -0
  284. package/lib/server/utils/zipFile.js +74 -0
  285. package/lib/server/utils/zones.js +57 -0
  286. package/lib/server/videoRecorder.js +133 -0
  287. package/lib/server/webkit/protocol.d.js +16 -0
  288. package/lib/server/webkit/webkit.js +108 -0
  289. package/lib/server/webkit/wkBrowser.js +331 -0
  290. package/lib/server/webkit/wkConnection.js +144 -0
  291. package/lib/server/webkit/wkExecutionContext.js +154 -0
  292. package/lib/server/webkit/wkInput.js +181 -0
  293. package/lib/server/webkit/wkInterceptableRequest.js +197 -0
  294. package/lib/server/webkit/wkPage.js +1164 -0
  295. package/lib/server/webkit/wkProvisionalPage.js +83 -0
  296. package/lib/server/webkit/wkWorkers.js +106 -0
  297. package/lib/serverRegistry.js +147 -0
  298. package/lib/third_party/pixelmatch.js +255 -0
  299. package/lib/tools/backend/browserBackend.js +79 -0
  300. package/lib/tools/backend/common.js +63 -0
  301. package/lib/tools/backend/config.js +41 -0
  302. package/lib/tools/backend/console.js +66 -0
  303. package/lib/tools/backend/context.js +290 -0
  304. package/lib/tools/backend/cookies.js +152 -0
  305. package/lib/tools/backend/devtools.js +69 -0
  306. package/lib/tools/backend/dialogs.js +59 -0
  307. package/lib/tools/backend/evaluate.js +64 -0
  308. package/lib/tools/backend/files.js +60 -0
  309. package/lib/tools/backend/form.js +64 -0
  310. package/lib/tools/backend/keyboard.js +155 -0
  311. package/lib/tools/backend/logFile.js +95 -0
  312. package/lib/tools/backend/mouse.js +168 -0
  313. package/lib/tools/backend/navigate.js +106 -0
  314. package/lib/tools/backend/network.js +135 -0
  315. package/lib/tools/backend/pdf.js +48 -0
  316. package/lib/tools/backend/recorder.js +74 -0
  317. package/lib/tools/backend/response.js +302 -0
  318. package/lib/tools/backend/route.js +140 -0
  319. package/lib/tools/backend/runCode.js +76 -0
  320. package/lib/tools/backend/screenshot.js +88 -0
  321. package/lib/tools/backend/sessionLog.js +74 -0
  322. package/lib/tools/backend/snapshot.js +208 -0
  323. package/lib/tools/backend/storage.js +67 -0
  324. package/lib/tools/backend/tab.js +445 -0
  325. package/lib/tools/backend/tabs.js +67 -0
  326. package/lib/tools/backend/tool.js +47 -0
  327. package/lib/tools/backend/tools.js +104 -0
  328. package/lib/tools/backend/tracing.js +75 -0
  329. package/lib/tools/backend/utils.js +83 -0
  330. package/lib/tools/backend/verify.js +151 -0
  331. package/lib/tools/backend/video.js +89 -0
  332. package/lib/tools/backend/wait.js +63 -0
  333. package/lib/tools/backend/webstorage.js +223 -0
  334. package/lib/tools/cli-client/cli.js +6 -0
  335. package/lib/tools/cli-client/help.json +101 -0
  336. package/lib/tools/cli-client/minimist.js +128 -0
  337. package/lib/tools/cli-client/program.js +382 -0
  338. package/lib/tools/cli-client/registry.js +176 -0
  339. package/lib/tools/cli-client/session.js +289 -0
  340. package/lib/tools/cli-client/skill/SKILL.md +326 -0
  341. package/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
  342. package/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
  343. package/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
  344. package/lib/tools/cli-client/skill/references/running-code.md +231 -0
  345. package/lib/tools/cli-client/skill/references/session-management.md +169 -0
  346. package/lib/tools/cli-client/skill/references/storage-state.md +275 -0
  347. package/lib/tools/cli-client/skill/references/test-generation.md +88 -0
  348. package/lib/tools/cli-client/skill/references/tracing.md +139 -0
  349. package/lib/tools/cli-client/skill/references/video-recording.md +46 -0
  350. package/lib/tools/cli-daemon/command.js +73 -0
  351. package/lib/tools/cli-daemon/commands.js +933 -0
  352. package/lib/tools/cli-daemon/daemon.js +178 -0
  353. package/lib/tools/cli-daemon/helpGenerator.js +173 -0
  354. package/lib/tools/cli-daemon/program.js +118 -0
  355. package/lib/tools/dashboard/appIcon.png +0 -0
  356. package/lib/tools/dashboard/dashboardApp.js +286 -0
  357. package/lib/tools/dashboard/dashboardController.js +296 -0
  358. package/lib/tools/exports.js +60 -0
  359. package/lib/tools/mcp/browserFactory.js +233 -0
  360. package/lib/tools/mcp/cdpRelay.js +353 -0
  361. package/lib/tools/mcp/cli-stub.js +7 -0
  362. package/lib/tools/mcp/config.d.js +16 -0
  363. package/lib/tools/mcp/config.js +401 -0
  364. package/lib/tools/mcp/configIni.js +189 -0
  365. package/lib/tools/mcp/extensionContextFactory.js +59 -0
  366. package/lib/tools/mcp/index.js +62 -0
  367. package/lib/tools/mcp/log.js +35 -0
  368. package/lib/tools/mcp/program.js +107 -0
  369. package/lib/tools/mcp/protocol.js +28 -0
  370. package/lib/tools/mcp/watchdog.js +44 -0
  371. package/lib/tools/trace/SKILL.md +163 -0
  372. package/lib/tools/trace/installSkill.js +48 -0
  373. package/lib/tools/trace/traceActions.js +142 -0
  374. package/lib/tools/trace/traceAttachments.js +69 -0
  375. package/lib/tools/trace/traceCli.js +80 -0
  376. package/lib/tools/trace/traceConsole.js +97 -0
  377. package/lib/tools/trace/traceErrors.js +55 -0
  378. package/lib/tools/trace/traceOpen.js +69 -0
  379. package/lib/tools/trace/traceParser.js +96 -0
  380. package/lib/tools/trace/traceRequests.js +158 -0
  381. package/lib/tools/trace/traceScreenshot.js +68 -0
  382. package/lib/tools/trace/traceSnapshot.js +149 -0
  383. package/lib/tools/trace/traceUtils.js +135 -0
  384. package/lib/tools/utils/connect.js +32 -0
  385. package/lib/tools/utils/mcp/http.js +152 -0
  386. package/lib/tools/utils/mcp/server.js +230 -0
  387. package/lib/tools/utils/mcp/tool.js +47 -0
  388. package/lib/tools/utils/socketConnection.js +108 -0
  389. package/lib/utils/isomorphic/ariaSnapshot.js +455 -0
  390. package/lib/utils/isomorphic/assert.js +31 -0
  391. package/lib/utils/isomorphic/colors.js +72 -0
  392. package/lib/utils/isomorphic/cssParser.js +245 -0
  393. package/lib/utils/isomorphic/cssTokenizer.js +1051 -0
  394. package/lib/utils/isomorphic/formatUtils.js +64 -0
  395. package/lib/utils/isomorphic/headers.js +53 -0
  396. package/lib/utils/isomorphic/imageUtils.js +141 -0
  397. package/lib/utils/isomorphic/locatorGenerators.js +689 -0
  398. package/lib/utils/isomorphic/locatorParser.js +176 -0
  399. package/lib/utils/isomorphic/locatorUtils.js +81 -0
  400. package/lib/utils/isomorphic/lruCache.js +51 -0
  401. package/lib/utils/isomorphic/manualPromise.js +114 -0
  402. package/lib/utils/isomorphic/mimeType.js +464 -0
  403. package/lib/utils/isomorphic/multimap.js +80 -0
  404. package/lib/utils/isomorphic/protocolFormatter.js +81 -0
  405. package/lib/utils/isomorphic/protocolMetainfo.js +347 -0
  406. package/lib/utils/isomorphic/rtti.js +43 -0
  407. package/lib/utils/isomorphic/selectorParser.js +386 -0
  408. package/lib/utils/isomorphic/semaphore.js +54 -0
  409. package/lib/utils/isomorphic/stackTrace.js +158 -0
  410. package/lib/utils/isomorphic/stringUtils.js +204 -0
  411. package/lib/utils/isomorphic/time.js +49 -0
  412. package/lib/utils/isomorphic/timeoutRunner.js +66 -0
  413. package/lib/utils/isomorphic/trace/entries.js +16 -0
  414. package/lib/utils/isomorphic/trace/snapshotRenderer.js +492 -0
  415. package/lib/utils/isomorphic/trace/snapshotServer.js +120 -0
  416. package/lib/utils/isomorphic/trace/snapshotStorage.js +89 -0
  417. package/lib/utils/isomorphic/trace/traceLoader.js +131 -0
  418. package/lib/utils/isomorphic/trace/traceModel.js +366 -0
  419. package/lib/utils/isomorphic/trace/traceModernizer.js +401 -0
  420. package/lib/utils/isomorphic/trace/traceUtils.js +58 -0
  421. package/lib/utils/isomorphic/trace/versions/traceV3.js +16 -0
  422. package/lib/utils/isomorphic/trace/versions/traceV4.js +16 -0
  423. package/lib/utils/isomorphic/trace/versions/traceV5.js +16 -0
  424. package/lib/utils/isomorphic/trace/versions/traceV6.js +16 -0
  425. package/lib/utils/isomorphic/trace/versions/traceV7.js +16 -0
  426. package/lib/utils/isomorphic/trace/versions/traceV8.js +16 -0
  427. package/lib/utils/isomorphic/types.js +16 -0
  428. package/lib/utils/isomorphic/urlMatch.js +243 -0
  429. package/lib/utils/isomorphic/utilityScriptSerializers.js +262 -0
  430. package/lib/utils/isomorphic/yaml.js +84 -0
  431. package/lib/utils.js +113 -0
  432. package/lib/utilsBundle.js +91 -0
  433. package/lib/utilsBundleImpl/index.js +218 -0
  434. package/lib/utilsBundleImpl/xdg-open +1066 -0
  435. package/lib/vite/dashboard/assets/index-Bn2lDGZX.js +50 -0
  436. package/lib/vite/dashboard/assets/index-DDWrEWMc.css +1 -0
  437. package/lib/vite/dashboard/index.html +28 -0
  438. package/lib/vite/htmlReport/index.html +89 -0
  439. package/lib/vite/recorder/assets/codeMirrorModule-DYBRYzYX.css +1 -0
  440. package/lib/vite/recorder/assets/codeMirrorModule-RoSmqW0t.js +32 -0
  441. package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  442. package/lib/vite/recorder/assets/index-CLrDthbi.js +193 -0
  443. package/lib/vite/recorder/assets/index-OFPIkgDs.css +1 -0
  444. package/lib/vite/recorder/index.html +29 -0
  445. package/lib/vite/recorder/playwright-logo.svg +9 -0
  446. package/lib/vite/traceViewer/assets/codeMirrorModule-Cigrr2OM.js +32 -0
  447. package/lib/vite/traceViewer/assets/defaultSettingsView-ConrJv9G.js +262 -0
  448. package/lib/vite/traceViewer/assets/xtermModule-CsJ4vdCR.js +9 -0
  449. package/lib/vite/traceViewer/codeMirrorModule.DYBRYzYX.css +1 -0
  450. package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  451. package/lib/vite/traceViewer/defaultSettingsView.B4dS75f0.css +1 -0
  452. package/lib/vite/traceViewer/index.CzXZzn5A.css +1 -0
  453. package/lib/vite/traceViewer/index.EVGp-u_4.js +2 -0
  454. package/lib/vite/traceViewer/index.html +43 -0
  455. package/lib/vite/traceViewer/manifest.webmanifest +16 -0
  456. package/lib/vite/traceViewer/playwright-logo.svg +9 -0
  457. package/lib/vite/traceViewer/snapshot.html +21 -0
  458. package/lib/vite/traceViewer/sw.bundle.js +5 -0
  459. package/lib/vite/traceViewer/uiMode.Bewj7-uD.js +6 -0
  460. package/lib/vite/traceViewer/uiMode.Btcz36p_.css +1 -0
  461. package/lib/vite/traceViewer/uiMode.html +17 -0
  462. package/lib/vite/traceViewer/xtermModule.DYP7pi_n.css +32 -0
  463. package/lib/zipBundle.js +34 -0
  464. package/lib/zipBundleImpl.js +5 -0
  465. package/package.json +46 -0
  466. package/types/protocol.d.ts +24365 -0
  467. package/types/structs.d.ts +45 -0
  468. package/types/types.d.ts +23498 -0
@@ -0,0 +1,205 @@
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 httpServer_exports = {};
30
+ __export(httpServer_exports, {
31
+ HttpServer: () => HttpServer
32
+ });
33
+ module.exports = __toCommonJS(httpServer_exports);
34
+ var import_fs = __toESM(require("fs"));
35
+ var import_path = __toESM(require("path"));
36
+ var import_utilsBundle = require("../../utilsBundle");
37
+ var import_crypto = require("./crypto");
38
+ var import_assert = require("../../utils/isomorphic/assert");
39
+ var import_network = require("./network");
40
+ class HttpServer {
41
+ constructor() {
42
+ this._urlPrefixPrecise = "";
43
+ this._urlPrefixHumanReadable = "";
44
+ this._port = 0;
45
+ this._started = false;
46
+ this._routes = [];
47
+ this._server = (0, import_network.createHttpServer)(this._onRequest.bind(this));
48
+ }
49
+ server() {
50
+ return this._server;
51
+ }
52
+ routePrefix(prefix, handler) {
53
+ this._routes.push({ prefix, handler });
54
+ }
55
+ routePath(path2, handler) {
56
+ this._routes.push({ exact: path2, handler });
57
+ }
58
+ port() {
59
+ return this._port;
60
+ }
61
+ createWebSocket(transportFactory, guid) {
62
+ (0, import_assert.assert)(!this._wsGuid, "can only create one main websocket transport per server");
63
+ this._wsGuid = guid || (0, import_crypto.createGuid)();
64
+ const wss = new import_utilsBundle.wsServer({ server: this._server, path: "/" + this._wsGuid });
65
+ wss.on("connection", (ws, request) => {
66
+ const url = new URL(request.url ?? "/", "http://localhost");
67
+ const transport = transportFactory(url);
68
+ transport.sendEvent = (method, params) => ws.send(JSON.stringify({ method, params }));
69
+ transport.close = () => ws.close();
70
+ transport.onconnect();
71
+ ws.on("message", async (message) => {
72
+ const { id, method, params } = JSON.parse(String(message));
73
+ try {
74
+ const result = await transport.dispatch(method, params);
75
+ ws.send(JSON.stringify({ id, result }));
76
+ } catch (e) {
77
+ ws.send(JSON.stringify({ id, error: String(e) }));
78
+ }
79
+ });
80
+ ws.on("close", () => transport.onclose());
81
+ ws.on("error", () => transport.onclose());
82
+ });
83
+ }
84
+ wsGuid() {
85
+ return this._wsGuid;
86
+ }
87
+ async start(options = {}) {
88
+ (0, import_assert.assert)(!this._started, "server already started");
89
+ this._started = true;
90
+ const host = options.host;
91
+ if (options.preferredPort) {
92
+ try {
93
+ await (0, import_network.startHttpServer)(this._server, { port: options.preferredPort, host });
94
+ } catch (e) {
95
+ if (!e || !e.message || !e.message.includes("EADDRINUSE"))
96
+ throw e;
97
+ await (0, import_network.startHttpServer)(this._server, { host });
98
+ }
99
+ } else {
100
+ await (0, import_network.startHttpServer)(this._server, { port: options.port, host });
101
+ }
102
+ const address = this._server.address();
103
+ (0, import_assert.assert)(address, "Could not bind server socket");
104
+ if (typeof address === "string") {
105
+ this._urlPrefixPrecise = address;
106
+ this._urlPrefixHumanReadable = address;
107
+ } else {
108
+ this._port = address.port;
109
+ const resolvedHost = address.family === "IPv4" ? address.address : `[${address.address}]`;
110
+ this._urlPrefixPrecise = `http://${resolvedHost}:${address.port}`;
111
+ this._urlPrefixHumanReadable = `http://${host ?? "localhost"}:${address.port}`;
112
+ }
113
+ }
114
+ async stop() {
115
+ await new Promise((cb) => this._server.close(cb));
116
+ }
117
+ urlPrefix(purpose) {
118
+ return purpose === "human-readable" ? this._urlPrefixHumanReadable : this._urlPrefixPrecise;
119
+ }
120
+ serveFile(request, response, absoluteFilePath, headers) {
121
+ try {
122
+ for (const [name, value] of Object.entries(headers || {}))
123
+ response.setHeader(name, value);
124
+ if (request.headers.range)
125
+ this._serveRangeFile(request, response, absoluteFilePath);
126
+ else
127
+ this._serveFile(response, absoluteFilePath);
128
+ return true;
129
+ } catch (e) {
130
+ return false;
131
+ }
132
+ }
133
+ _serveFile(response, absoluteFilePath) {
134
+ const content = import_fs.default.readFileSync(absoluteFilePath);
135
+ response.statusCode = 200;
136
+ const contentType = import_utilsBundle.mime.getType(import_path.default.extname(absoluteFilePath)) || "application/octet-stream";
137
+ response.setHeader("Content-Type", contentType);
138
+ response.setHeader("Content-Length", content.byteLength);
139
+ response.end(content);
140
+ }
141
+ _serveRangeFile(request, response, absoluteFilePath) {
142
+ const range = request.headers.range;
143
+ if (!range || !range.startsWith("bytes=") || range.includes(", ") || [...range].filter((char) => char === "-").length !== 1) {
144
+ response.statusCode = 400;
145
+ return response.end("Bad request");
146
+ }
147
+ const [startStr, endStr] = range.replace(/bytes=/, "").split("-");
148
+ let start;
149
+ let end;
150
+ const size = import_fs.default.statSync(absoluteFilePath).size;
151
+ if (startStr !== "" && endStr === "") {
152
+ start = +startStr;
153
+ end = size - 1;
154
+ } else if (startStr === "" && endStr !== "") {
155
+ start = size - +endStr;
156
+ end = size - 1;
157
+ } else {
158
+ start = +startStr;
159
+ end = +endStr;
160
+ }
161
+ if (Number.isNaN(start) || Number.isNaN(end) || start >= size || end >= size || start > end) {
162
+ response.writeHead(416, {
163
+ "Content-Range": `bytes */${size}`
164
+ });
165
+ return response.end();
166
+ }
167
+ response.writeHead(206, {
168
+ "Content-Range": `bytes ${start}-${end}/${size}`,
169
+ "Accept-Ranges": "bytes",
170
+ "Content-Length": end - start + 1,
171
+ "Content-Type": import_utilsBundle.mime.getType(import_path.default.extname(absoluteFilePath))
172
+ });
173
+ const readable = import_fs.default.createReadStream(absoluteFilePath, { start, end });
174
+ readable.pipe(response);
175
+ }
176
+ _onRequest(request, response) {
177
+ if (request.method === "OPTIONS") {
178
+ response.writeHead(200);
179
+ response.end();
180
+ return;
181
+ }
182
+ request.on("error", () => response.end());
183
+ try {
184
+ if (!request.url) {
185
+ response.end();
186
+ return;
187
+ }
188
+ const url = new URL("http://localhost" + request.url);
189
+ for (const route of this._routes) {
190
+ if (route.exact && url.pathname === route.exact && route.handler(request, response))
191
+ return;
192
+ if (route.prefix && url.pathname.startsWith(route.prefix) && route.handler(request, response))
193
+ return;
194
+ }
195
+ response.statusCode = 404;
196
+ response.end();
197
+ } catch (e) {
198
+ response.end();
199
+ }
200
+ }
201
+ }
202
+ // Annotate the CommonJS export names for ESM import in node:
203
+ 0 && (module.exports = {
204
+ HttpServer
205
+ });
@@ -0,0 +1,89 @@
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 colorUtils_exports = {};
20
+ __export(colorUtils_exports, {
21
+ blendWithWhite: () => blendWithWhite,
22
+ colorDeltaE94: () => colorDeltaE94,
23
+ rgb2gray: () => rgb2gray,
24
+ srgb2xyz: () => srgb2xyz,
25
+ xyz2lab: () => xyz2lab
26
+ });
27
+ module.exports = __toCommonJS(colorUtils_exports);
28
+ function blendWithWhite(c, a) {
29
+ return 255 + (c - 255) * a;
30
+ }
31
+ function rgb2gray(r, g, b) {
32
+ return 77 * r + 150 * g + 29 * b + 128 >> 8;
33
+ }
34
+ function colorDeltaE94(rgb1, rgb2) {
35
+ const [l1, a1, b1] = xyz2lab(srgb2xyz(rgb1));
36
+ const [l2, a2, b2] = xyz2lab(srgb2xyz(rgb2));
37
+ const deltaL = l1 - l2;
38
+ const deltaA = a1 - a2;
39
+ const deltaB = b1 - b2;
40
+ const c1 = Math.sqrt(a1 ** 2 + b1 ** 2);
41
+ const c2 = Math.sqrt(a2 ** 2 + b2 ** 2);
42
+ const deltaC = c1 - c2;
43
+ let deltaH = deltaA ** 2 + deltaB ** 2 - deltaC ** 2;
44
+ deltaH = deltaH < 0 ? 0 : Math.sqrt(deltaH);
45
+ const k1 = 0.045;
46
+ const k2 = 0.015;
47
+ const kL = 1;
48
+ const kC = 1;
49
+ const kH = 1;
50
+ const sC = 1 + k1 * c1;
51
+ const sH = 1 + k2 * c1;
52
+ const sL = 1;
53
+ return Math.sqrt((deltaL / sL / kL) ** 2 + (deltaC / sC / kC) ** 2 + (deltaH / sH / kH) ** 2);
54
+ }
55
+ function srgb2xyz(rgb) {
56
+ let r = rgb[0] / 255;
57
+ let g = rgb[1] / 255;
58
+ let b = rgb[2] / 255;
59
+ r = r > 0.04045 ? Math.pow((r + 0.055) / 1.055, 2.4) : r / 12.92;
60
+ g = g > 0.04045 ? Math.pow((g + 0.055) / 1.055, 2.4) : g / 12.92;
61
+ b = b > 0.04045 ? Math.pow((b + 0.055) / 1.055, 2.4) : b / 12.92;
62
+ return [
63
+ r * 0.4124 + g * 0.3576 + b * 0.1805,
64
+ r * 0.2126 + g * 0.7152 + b * 0.0722,
65
+ r * 0.0193 + g * 0.1192 + b * 0.9505
66
+ ];
67
+ }
68
+ const sigma_pow2 = 6 * 6 / 29 / 29;
69
+ const sigma_pow3 = 6 * 6 * 6 / 29 / 29 / 29;
70
+ function xyz2lab(xyz) {
71
+ const x = xyz[0] / 0.950489;
72
+ const y = xyz[1];
73
+ const z = xyz[2] / 1.08884;
74
+ const fx = x > sigma_pow3 ? x ** (1 / 3) : x / 3 / sigma_pow2 + 4 / 29;
75
+ const fy = y > sigma_pow3 ? y ** (1 / 3) : y / 3 / sigma_pow2 + 4 / 29;
76
+ const fz = z > sigma_pow3 ? z ** (1 / 3) : z / 3 / sigma_pow2 + 4 / 29;
77
+ const l = 116 * fy - 16;
78
+ const a = 500 * (fx - fy);
79
+ const b = 200 * (fy - fz);
80
+ return [l, a, b];
81
+ }
82
+ // Annotate the CommonJS export names for ESM import in node:
83
+ 0 && (module.exports = {
84
+ blendWithWhite,
85
+ colorDeltaE94,
86
+ rgb2gray,
87
+ srgb2xyz,
88
+ xyz2lab
89
+ });
@@ -0,0 +1,109 @@
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 compare_exports = {};
20
+ __export(compare_exports, {
21
+ compare: () => compare
22
+ });
23
+ module.exports = __toCommonJS(compare_exports);
24
+ var import_colorUtils = require("./colorUtils");
25
+ var import_imageChannel = require("./imageChannel");
26
+ var import_stats = require("./stats");
27
+ const SSIM_WINDOW_RADIUS = 15;
28
+ const VARIANCE_WINDOW_RADIUS = 1;
29
+ function drawPixel(width, data, x, y, r, g, b) {
30
+ const idx = (y * width + x) * 4;
31
+ data[idx + 0] = r;
32
+ data[idx + 1] = g;
33
+ data[idx + 2] = b;
34
+ data[idx + 3] = 255;
35
+ }
36
+ function compare(actual, expected, diff, width, height, options = {}) {
37
+ const {
38
+ maxColorDeltaE94 = 1
39
+ } = options;
40
+ const paddingSize = Math.max(VARIANCE_WINDOW_RADIUS, SSIM_WINDOW_RADIUS);
41
+ const paddingColorEven = [255, 0, 255];
42
+ const paddingColorOdd = [0, 255, 0];
43
+ const [r1, g1, b1] = import_imageChannel.ImageChannel.intoRGB(width, height, expected, {
44
+ paddingSize,
45
+ paddingColorEven,
46
+ paddingColorOdd
47
+ });
48
+ const [r2, g2, b2] = import_imageChannel.ImageChannel.intoRGB(width, height, actual, {
49
+ paddingSize,
50
+ paddingColorEven,
51
+ paddingColorOdd
52
+ });
53
+ const noop = (x, y) => {
54
+ };
55
+ const drawRedPixel = diff ? (x, y) => drawPixel(width, diff, x - paddingSize, y - paddingSize, 255, 0, 0) : noop;
56
+ const drawYellowPixel = diff ? (x, y) => drawPixel(width, diff, x - paddingSize, y - paddingSize, 255, 255, 0) : noop;
57
+ const drawGrayPixel = diff ? (x, y) => {
58
+ const gray = (0, import_colorUtils.rgb2gray)(r1.get(x, y), g1.get(x, y), b1.get(x, y));
59
+ const value = (0, import_colorUtils.blendWithWhite)(gray, 0.1);
60
+ drawPixel(width, diff, x - paddingSize, y - paddingSize, value, value, value);
61
+ } : noop;
62
+ let fastR, fastG, fastB;
63
+ let diffCount = 0;
64
+ for (let y = paddingSize; y < r1.height - paddingSize; ++y) {
65
+ for (let x = paddingSize; x < r1.width - paddingSize; ++x) {
66
+ if (r1.get(x, y) === r2.get(x, y) && g1.get(x, y) === g2.get(x, y) && b1.get(x, y) === b2.get(x, y)) {
67
+ drawGrayPixel(x, y);
68
+ continue;
69
+ }
70
+ const delta = (0, import_colorUtils.colorDeltaE94)(
71
+ [r1.get(x, y), g1.get(x, y), b1.get(x, y)],
72
+ [r2.get(x, y), g2.get(x, y), b2.get(x, y)]
73
+ );
74
+ if (delta <= maxColorDeltaE94) {
75
+ drawGrayPixel(x, y);
76
+ continue;
77
+ }
78
+ if (!fastR || !fastG || !fastB) {
79
+ fastR = new import_stats.FastStats(r1, r2);
80
+ fastG = new import_stats.FastStats(g1, g2);
81
+ fastB = new import_stats.FastStats(b1, b2);
82
+ }
83
+ const [varX1, varY1] = r1.boundXY(x - VARIANCE_WINDOW_RADIUS, y - VARIANCE_WINDOW_RADIUS);
84
+ const [varX2, varY2] = r1.boundXY(x + VARIANCE_WINDOW_RADIUS, y + VARIANCE_WINDOW_RADIUS);
85
+ const var1 = fastR.varianceC1(varX1, varY1, varX2, varY2) + fastG.varianceC1(varX1, varY1, varX2, varY2) + fastB.varianceC1(varX1, varY1, varX2, varY2);
86
+ const var2 = fastR.varianceC2(varX1, varY1, varX2, varY2) + fastG.varianceC2(varX1, varY1, varX2, varY2) + fastB.varianceC2(varX1, varY1, varX2, varY2);
87
+ if (var1 === 0 || var2 === 0) {
88
+ drawRedPixel(x, y);
89
+ ++diffCount;
90
+ continue;
91
+ }
92
+ const [ssimX1, ssimY1] = r1.boundXY(x - SSIM_WINDOW_RADIUS, y - SSIM_WINDOW_RADIUS);
93
+ const [ssimX2, ssimY2] = r1.boundXY(x + SSIM_WINDOW_RADIUS, y + SSIM_WINDOW_RADIUS);
94
+ const ssimRGB = ((0, import_stats.ssim)(fastR, ssimX1, ssimY1, ssimX2, ssimY2) + (0, import_stats.ssim)(fastG, ssimX1, ssimY1, ssimX2, ssimY2) + (0, import_stats.ssim)(fastB, ssimX1, ssimY1, ssimX2, ssimY2)) / 3;
95
+ const isAntialiased = ssimRGB >= 0.99;
96
+ if (isAntialiased) {
97
+ drawYellowPixel(x, y);
98
+ } else {
99
+ drawRedPixel(x, y);
100
+ ++diffCount;
101
+ }
102
+ }
103
+ }
104
+ return diffCount;
105
+ }
106
+ // Annotate the CommonJS export names for ESM import in node:
107
+ 0 && (module.exports = {
108
+ compare
109
+ });
@@ -0,0 +1,78 @@
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 imageChannel_exports = {};
20
+ __export(imageChannel_exports, {
21
+ ImageChannel: () => ImageChannel
22
+ });
23
+ module.exports = __toCommonJS(imageChannel_exports);
24
+ var import_colorUtils = require("./colorUtils");
25
+ class ImageChannel {
26
+ static intoRGB(width, height, data, options = {}) {
27
+ const {
28
+ paddingSize = 0,
29
+ paddingColorOdd = [255, 0, 255],
30
+ paddingColorEven = [0, 255, 0]
31
+ } = options;
32
+ const newWidth = width + 2 * paddingSize;
33
+ const newHeight = height + 2 * paddingSize;
34
+ const r = new Uint8Array(newWidth * newHeight);
35
+ const g = new Uint8Array(newWidth * newHeight);
36
+ const b = new Uint8Array(newWidth * newHeight);
37
+ for (let y = 0; y < newHeight; ++y) {
38
+ for (let x = 0; x < newWidth; ++x) {
39
+ const index = y * newWidth + x;
40
+ if (y >= paddingSize && y < newHeight - paddingSize && x >= paddingSize && x < newWidth - paddingSize) {
41
+ const offset = ((y - paddingSize) * width + (x - paddingSize)) * 4;
42
+ const alpha = data[offset + 3] === 255 ? 1 : data[offset + 3] / 255;
43
+ r[index] = (0, import_colorUtils.blendWithWhite)(data[offset], alpha);
44
+ g[index] = (0, import_colorUtils.blendWithWhite)(data[offset + 1], alpha);
45
+ b[index] = (0, import_colorUtils.blendWithWhite)(data[offset + 2], alpha);
46
+ } else {
47
+ const color = (y + x) % 2 === 0 ? paddingColorEven : paddingColorOdd;
48
+ r[index] = color[0];
49
+ g[index] = color[1];
50
+ b[index] = color[2];
51
+ }
52
+ }
53
+ }
54
+ return [
55
+ new ImageChannel(newWidth, newHeight, r),
56
+ new ImageChannel(newWidth, newHeight, g),
57
+ new ImageChannel(newWidth, newHeight, b)
58
+ ];
59
+ }
60
+ constructor(width, height, data) {
61
+ this.data = data;
62
+ this.width = width;
63
+ this.height = height;
64
+ }
65
+ get(x, y) {
66
+ return this.data[y * this.width + x];
67
+ }
68
+ boundXY(x, y) {
69
+ return [
70
+ Math.min(Math.max(x, 0), this.width - 1),
71
+ Math.min(Math.max(y, 0), this.height - 1)
72
+ ];
73
+ }
74
+ }
75
+ // Annotate the CommonJS export names for ESM import in node:
76
+ 0 && (module.exports = {
77
+ ImageChannel
78
+ });
@@ -0,0 +1,102 @@
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 stats_exports = {};
20
+ __export(stats_exports, {
21
+ FastStats: () => FastStats,
22
+ ssim: () => ssim
23
+ });
24
+ module.exports = __toCommonJS(stats_exports);
25
+ const DYNAMIC_RANGE = 2 ** 8 - 1;
26
+ function ssim(stats, x1, y1, x2, y2) {
27
+ const mean1 = stats.meanC1(x1, y1, x2, y2);
28
+ const mean2 = stats.meanC2(x1, y1, x2, y2);
29
+ const var1 = stats.varianceC1(x1, y1, x2, y2);
30
+ const var2 = stats.varianceC2(x1, y1, x2, y2);
31
+ const cov = stats.covariance(x1, y1, x2, y2);
32
+ const c1 = (0.01 * DYNAMIC_RANGE) ** 2;
33
+ const c2 = (0.03 * DYNAMIC_RANGE) ** 2;
34
+ return (2 * mean1 * mean2 + c1) * (2 * cov + c2) / (mean1 ** 2 + mean2 ** 2 + c1) / (var1 + var2 + c2);
35
+ }
36
+ class FastStats {
37
+ constructor(c1, c2) {
38
+ this.c1 = c1;
39
+ this.c2 = c2;
40
+ const { width, height } = c1;
41
+ this._partialSumC1 = new Array(width * height);
42
+ this._partialSumC2 = new Array(width * height);
43
+ this._partialSumSq1 = new Array(width * height);
44
+ this._partialSumSq2 = new Array(width * height);
45
+ this._partialSumMult = new Array(width * height);
46
+ const recalc = (mx, idx, initial, x, y) => {
47
+ mx[idx] = initial;
48
+ if (y > 0)
49
+ mx[idx] += mx[(y - 1) * width + x];
50
+ if (x > 0)
51
+ mx[idx] += mx[y * width + x - 1];
52
+ if (x > 0 && y > 0)
53
+ mx[idx] -= mx[(y - 1) * width + x - 1];
54
+ };
55
+ for (let y = 0; y < height; ++y) {
56
+ for (let x = 0; x < width; ++x) {
57
+ const idx = y * width + x;
58
+ recalc(this._partialSumC1, idx, this.c1.data[idx], x, y);
59
+ recalc(this._partialSumC2, idx, this.c2.data[idx], x, y);
60
+ recalc(this._partialSumSq1, idx, this.c1.data[idx] * this.c1.data[idx], x, y);
61
+ recalc(this._partialSumSq2, idx, this.c2.data[idx] * this.c2.data[idx], x, y);
62
+ recalc(this._partialSumMult, idx, this.c1.data[idx] * this.c2.data[idx], x, y);
63
+ }
64
+ }
65
+ }
66
+ _sum(partialSum, x1, y1, x2, y2) {
67
+ const width = this.c1.width;
68
+ let result = partialSum[y2 * width + x2];
69
+ if (y1 > 0)
70
+ result -= partialSum[(y1 - 1) * width + x2];
71
+ if (x1 > 0)
72
+ result -= partialSum[y2 * width + x1 - 1];
73
+ if (x1 > 0 && y1 > 0)
74
+ result += partialSum[(y1 - 1) * width + x1 - 1];
75
+ return result;
76
+ }
77
+ meanC1(x1, y1, x2, y2) {
78
+ const N = (y2 - y1 + 1) * (x2 - x1 + 1);
79
+ return this._sum(this._partialSumC1, x1, y1, x2, y2) / N;
80
+ }
81
+ meanC2(x1, y1, x2, y2) {
82
+ const N = (y2 - y1 + 1) * (x2 - x1 + 1);
83
+ return this._sum(this._partialSumC2, x1, y1, x2, y2) / N;
84
+ }
85
+ varianceC1(x1, y1, x2, y2) {
86
+ const N = (y2 - y1 + 1) * (x2 - x1 + 1);
87
+ return (this._sum(this._partialSumSq1, x1, y1, x2, y2) - this._sum(this._partialSumC1, x1, y1, x2, y2) ** 2 / N) / N;
88
+ }
89
+ varianceC2(x1, y1, x2, y2) {
90
+ const N = (y2 - y1 + 1) * (x2 - x1 + 1);
91
+ return (this._sum(this._partialSumSq2, x1, y1, x2, y2) - this._sum(this._partialSumC2, x1, y1, x2, y2) ** 2 / N) / N;
92
+ }
93
+ covariance(x1, y1, x2, y2) {
94
+ const N = (y2 - y1 + 1) * (x2 - x1 + 1);
95
+ return (this._sum(this._partialSumMult, x1, y1, x2, y2) - this._sum(this._partialSumC1, x1, y1, x2, y2) * this._sum(this._partialSumC2, x1, y1, x2, y2) / N) / N;
96
+ }
97
+ }
98
+ // Annotate the CommonJS export names for ESM import in node:
99
+ 0 && (module.exports = {
100
+ FastStats,
101
+ ssim
102
+ });
@@ -0,0 +1,71 @@
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 linuxUtils_exports = {};
30
+ __export(linuxUtils_exports, {
31
+ getLinuxDistributionInfoSync: () => getLinuxDistributionInfoSync
32
+ });
33
+ module.exports = __toCommonJS(linuxUtils_exports);
34
+ var import_fs = __toESM(require("fs"));
35
+ let didFailToReadOSRelease = false;
36
+ let osRelease;
37
+ function getLinuxDistributionInfoSync() {
38
+ if (process.platform !== "linux")
39
+ return void 0;
40
+ if (!osRelease && !didFailToReadOSRelease) {
41
+ try {
42
+ const osReleaseText = import_fs.default.readFileSync("/etc/os-release", "utf8");
43
+ const fields = parseOSReleaseText(osReleaseText);
44
+ osRelease = {
45
+ id: fields.get("id") ?? "",
46
+ version: fields.get("version_id") ?? ""
47
+ };
48
+ } catch (e) {
49
+ didFailToReadOSRelease = true;
50
+ }
51
+ }
52
+ return osRelease;
53
+ }
54
+ function parseOSReleaseText(osReleaseText) {
55
+ const fields = /* @__PURE__ */ new Map();
56
+ for (const line of osReleaseText.split("\n")) {
57
+ const tokens = line.split("=");
58
+ const name = tokens.shift();
59
+ let value = tokens.join("=").trim();
60
+ if (value.startsWith('"') && value.endsWith('"'))
61
+ value = value.substring(1, value.length - 1);
62
+ if (!name)
63
+ continue;
64
+ fields.set(name.toLowerCase(), value);
65
+ }
66
+ return fields;
67
+ }
68
+ // Annotate the CommonJS export names for ESM import in node:
69
+ 0 && (module.exports = {
70
+ getLinuxDistributionInfoSync
71
+ });