ScuttleBot

scuttlebot / tests / e2e / node_modules / playwright / lib / runner / loaderHost.js
Source Blame History 89 lines
f7eb47b… lmata 1 "use strict";
f7eb47b… lmata 2 var __create = Object.create;
f7eb47b… lmata 3 var __defProp = Object.defineProperty;
f7eb47b… lmata 4 var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
f7eb47b… lmata 5 var __getOwnPropNames = Object.getOwnPropertyNames;
f7eb47b… lmata 6 var __getProtoOf = Object.getPrototypeOf;
f7eb47b… lmata 7 var __hasOwnProp = Object.prototype.hasOwnProperty;
f7eb47b… lmata 8 var __export = (target, all) => {
f7eb47b… lmata 9 for (var name in all)
f7eb47b… lmata 10 __defProp(target, name, { get: all[name], enumerable: true });
f7eb47b… lmata 11 };
f7eb47b… lmata 12 var __copyProps = (to, from, except, desc) => {
f7eb47b… lmata 13 if (from && typeof from === "object" || typeof from === "function") {
f7eb47b… lmata 14 for (let key of __getOwnPropNames(from))
f7eb47b… lmata 15 if (!__hasOwnProp.call(to, key) && key !== except)
f7eb47b… lmata 16 __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
f7eb47b… lmata 17 }
f7eb47b… lmata 18 return to;
f7eb47b… lmata 19 };
f7eb47b… lmata 20 var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
f7eb47b… lmata 21 // If the importer is in node compatibility mode or this is not an ESM
f7eb47b… lmata 22 // file that has been converted to a CommonJS file using a Babel-
f7eb47b… lmata 23 // compatible transform (i.e. "__esModule" has not been set), then set
f7eb47b… lmata 24 // "default" to the CommonJS "module.exports" for node compatibility.
f7eb47b… lmata 25 isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
f7eb47b… lmata 26 mod
f7eb47b… lmata 27 ));
f7eb47b… lmata 28 var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
f7eb47b… lmata 29 var loaderHost_exports = {};
f7eb47b… lmata 30 __export(loaderHost_exports, {
f7eb47b… lmata 31 InProcessLoaderHost: () => InProcessLoaderHost,
f7eb47b… lmata 32 OutOfProcessLoaderHost: () => OutOfProcessLoaderHost
f7eb47b… lmata 33 });
f7eb47b… lmata 34 module.exports = __toCommonJS(loaderHost_exports);
f7eb47b… lmata 35 var import_processHost = require("./processHost");
f7eb47b… lmata 36 var import_esmLoaderHost = require("../common/esmLoaderHost");
f7eb47b… lmata 37 var import_ipc = require("../common/ipc");
f7eb47b… lmata 38 var import_poolBuilder = require("../common/poolBuilder");
f7eb47b… lmata 39 var import_test = require("../common/test");
f7eb47b… lmata 40 var import_testLoader = require("../common/testLoader");
f7eb47b… lmata 41 var import_compilationCache = require("../transform/compilationCache");
f7eb47b… lmata 42 class InProcessLoaderHost {
f7eb47b… lmata 43 constructor(config) {
f7eb47b… lmata 44 this._config = config;
f7eb47b… lmata 45 this._poolBuilder = import_poolBuilder.PoolBuilder.createForLoader();
f7eb47b… lmata 46 }
f7eb47b… lmata 47 async start(errors) {
f7eb47b… lmata 48 return true;
f7eb47b… lmata 49 }
f7eb47b… lmata 50 async loadTestFile(file, testErrors) {
f7eb47b… lmata 51 const result = await (0, import_testLoader.loadTestFile)(file, this._config, testErrors);
f7eb47b… lmata 52 this._poolBuilder.buildPools(result, testErrors);
f7eb47b… lmata 53 return result;
f7eb47b… lmata 54 }
f7eb47b… lmata 55 async stop() {
f7eb47b… lmata 56 await (0, import_esmLoaderHost.incorporateCompilationCache)();
f7eb47b… lmata 57 }
f7eb47b… lmata 58 }
f7eb47b… lmata 59 class OutOfProcessLoaderHost {
f7eb47b… lmata 60 constructor(config) {
f7eb47b… lmata 61 this._config = config;
f7eb47b… lmata 62 this._processHost = new import_processHost.ProcessHost(require.resolve("../loader/loaderMain.js"), "loader", {});
f7eb47b… lmata 63 }
f7eb47b… lmata 64 async start(errors) {
f7eb47b… lmata 65 const startError = await this._processHost.startRunner((0, import_ipc.serializeConfig)(this._config, false));
f7eb47b… lmata 66 if (startError) {
f7eb47b… lmata 67 errors.push({
f7eb47b… lmata 68 message: `Test loader process failed to start with code "${startError.code}" and signal "${startError.signal}"`
f7eb47b… lmata 69 });
f7eb47b… lmata 70 return false;
f7eb47b… lmata 71 }
f7eb47b… lmata 72 return true;
f7eb47b… lmata 73 }
f7eb47b… lmata 74 async loadTestFile(file, testErrors) {
f7eb47b… lmata 75 const result = await this._processHost.sendMessage({ method: "loadTestFile", params: { file } });
f7eb47b… lmata 76 testErrors.push(...result.testErrors);
f7eb47b… lmata 77 return import_test.Suite._deepParse(result.fileSuite);
f7eb47b… lmata 78 }
f7eb47b… lmata 79 async stop() {
f7eb47b… lmata 80 const result = await this._processHost.sendMessage({ method: "getCompilationCacheFromLoader" });
f7eb47b… lmata 81 (0, import_compilationCache.addToCompilationCache)(result);
f7eb47b… lmata 82 await this._processHost.stop();
f7eb47b… lmata 83 }
f7eb47b… lmata 84 }
f7eb47b… lmata 85 // Annotate the CommonJS export names for ESM import in node:
f7eb47b… lmata 86 0 && (module.exports = {
f7eb47b… lmata 87 InProcessLoaderHost,
f7eb47b… lmata 88 OutOfProcessLoaderHost
f7eb47b… lmata 89 });

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button