/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/jest-util/src/createProcessObject.ts
148 строк
4 KB
Jonathan Zawada
fix(expect): revert `node:` protocol imports to restore webpack/browser compatibility (#16167)
12 май 2026, 11:19
Не верифицирован
12 май 2026, 11:19
b9bb75f
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import type * as Process from 'process'; import deepCyclicCopy from './deepCyclicCopy'; const BLACKLIST = new Set(['env', 'mainModule', '_events']); const isWin32 = process.platform === 'win32'; const proto: Record<string, unknown> = Object.getPrototypeOf(process.env); // The "process.env" object has a bunch of particularities: first, it does not // directly extend from Object; second, it converts any assigned value to a // string; and third, it is case-insensitive in Windows. We use a proxy here to // mimic it (see https://nodejs.org/api/process.html#process_process_env). function createProcessEnv(): NodeJS.ProcessEnv { const real = Object.create(proto); const lookup: typeof process.env = {}; function deletePropertyWin32(_target: unknown, key: unknown) { for (const name in real) { if (Object.prototype.hasOwnProperty.call(real, name)) { if (typeof key === 'string') { if (name.toLowerCase() === key.toLowerCase()) { delete real[name]; delete lookup[name.toLowerCase()]; } } else { if (key === name) { delete real[name]; delete lookup[name]; } } } } return true; } function deleteProperty(_target: unknown, key: any) { delete real[key]; delete lookup[key]; return true; } function getProperty(_target: unknown, key: any) { return real[key]; } function getPropertyWin32(_target: unknown, key: any) { if (typeof key === 'string') { return lookup[key in proto ? key : key.toLowerCase()]; } else { return real[key]; } } const proxy = new Proxy(real, { deleteProperty: isWin32 ? deletePropertyWin32 : deleteProperty, get: isWin32 ? getPropertyWin32 : getProperty, set(_target, key, value) { const strValue = `${value}`; if (typeof key === 'string') { lookup[key.toLowerCase()] = strValue; } real[key] = strValue; return true; }, }); return Object.assign(proxy, process.env); } export default function createProcessObject(): typeof Process { const process = require('process'); const newProcess = deepCyclicCopy(process, { blacklist: BLACKLIST, keepPrototype: true, }); try { // This fails on Node 12, but it's already set to 'process' newProcess[Symbol.toStringTag] = 'process'; } catch (error: any) { // Make sure it's actually set instead of potentially ignoring errors if (newProcess[Symbol.toStringTag] !== 'process') { error.message = `Unable to set toStringTag on process. Please open up an issue at https://github.com/jestjs/jest\n\n${error.message}`; throw error; } } // Sequentially execute all constructors over the object. let proto = process; while ((proto = Object.getPrototypeOf(proto))) { if (typeof proto.constructor === 'function') { proto.constructor.call(newProcess); } } newProcess.env = createProcessEnv(); newProcess.send = () => true; Object.defineProperty(newProcess, 'domain', { get() { return process.domain; }, }); // Ensure feature flags reflect Jest's capabilities inside the VM. // Node may expose `process.features.require_module` which signals that // requiring ESM via `require()` is supported. Jest's runtime does not // support requiring ESM modules through CJS `require`, so we override // the flag to false to allow defensive code paths to behave correctly. // const features: unknown = (newProcess as any).features; if (features && typeof features === 'object') { // Only override if the host process exposes the flag if ('require_module' in (features as Record<string, unknown>)) { try { Object.defineProperty(features as object, 'require_module', { configurable: true, enumerable: true, get: () => false, }); } catch { // If redefining fails for any reason, fall back to direct assignment try { (features as any).require_module = false; } catch { // ignore if we cannot override } } } } return newProcess; }