Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: return constructable class from require('module') #9711

Merged
merged 2 commits into from Mar 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@
### Fixes

- `[jest-environment-node]` Remove `getVmContext` from Node env on older versions of Node ([#9706](https://github.com/facebook/jest/pull/9706))
- `[jest-runtime]` Return constructable class from `require('module')` ([#9711](https://github.com/facebook/jest/pull/9711))

### Chore & Maintenance

Expand Down
15 changes: 15 additions & 0 deletions packages/jest-runtime/src/__tests__/runtime_require_module.test.js
Expand Up @@ -351,6 +351,21 @@ describe('Runtime requireModule', () => {
expect(exports.isJSONModuleEncodedInUTF8WithBOM).toBe(true);
}));

it('should export a constructable Module class', () =>
createRuntime(__filename).then(runtime => {
const Module = runtime.requireModule(runtime.__mockRootPath, 'module');

expect(() => new Module()).not.toThrow();
}));

it('caches Module correctly', () =>
createRuntime(__filename).then(runtime => {
const Module1 = runtime.requireModule(runtime.__mockRootPath, 'module');
const Module2 = runtime.requireModule(runtime.__mockRootPath, 'module');

expect(Module1).toBe(Module2);
}));

onNodeVersions('>=12.12.0', () => {
it('overrides module.createRequire', () =>
createRuntime(__filename).then(runtime => {
Expand Down
110 changes: 61 additions & 49 deletions packages/jest-runtime/src/index.ts
Expand Up @@ -122,6 +122,7 @@ class Runtime {
private _transitiveShouldMock: BooleanObject;
private _unmockList: RegExp | undefined;
private _virtualMocks: BooleanObject;
private _moduleImplementation?: typeof nativeModule.Module;

constructor(
config: Config.ProjectConfig,
Expand Down Expand Up @@ -898,64 +899,75 @@ class Runtime {
}

if (moduleName === 'module') {
const createRequire = (modulePath: string | URL) => {
const filename =
typeof modulePath === 'string'
? modulePath.startsWith('file:///')
? fileURLToPath(new URL(modulePath))
: modulePath
: fileURLToPath(modulePath);

if (!path.isAbsolute(filename)) {
return this._getMockedNativeModule();
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ignoring whitespace makes this diff readable

https://github.com/facebook/jest/pull/9711/files?w=1

}

return require(moduleName);
}

private _getMockedNativeModule(): typeof nativeModule.Module {
if (this._moduleImplementation) {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

poor man's cache. might be better to stick in in the module cache we have already

return this._moduleImplementation;
}

const createRequire = (modulePath: string | URL) => {
const filename =
typeof modulePath === 'string'
? modulePath.startsWith('file:///')
? fileURLToPath(new URL(modulePath))
: modulePath
: fileURLToPath(modulePath);

if (!path.isAbsolute(filename)) {
const error = new TypeError(
`The argument 'filename' must be a file URL object, file URL string, or absolute path string. Received '${filename}'`,
);
// @ts-ignore
error.code = 'ERR_INVALID_ARG_TYPE';
throw error;
}

return this._createRequireImplementation({
children: [],
exports: {},
filename,
id: filename,
loaded: false,
});
};

// should we implement the class ourselves?
class Module extends nativeModule.Module {}

Module.Module = Module;

if ('createRequire' in nativeModule) {
Module.createRequire = createRequire;
}
if ('createRequireFromPath' in nativeModule) {
Module.createRequireFromPath = (filename: string | URL) => {
if (typeof filename !== 'string') {
const error = new TypeError(
`The argument 'filename' must be a file URL object, file URL string, or absolute path string. Received '${filename}'`,
`The argument 'filename' must be string. Received '${filename}'.${
filename instanceof URL
? ' Use createRequire for URL filename.'
: ''
}`,
);
// @ts-ignore
error.code = 'ERR_INVALID_ARG_TYPE';
throw error;
}

return this._createRequireImplementation({
children: [],
exports: {},
filename,
id: filename,
loaded: false,
});
return createRequire(filename);
};

const overriddenModules: Partial<typeof nativeModule> = {};

if ('createRequire' in nativeModule) {
overriddenModules.createRequire = createRequire;
}
if ('createRequireFromPath' in nativeModule) {
overriddenModules.createRequireFromPath = (filename: string | URL) => {
if (typeof filename !== 'string') {
const error = new TypeError(
`The argument 'filename' must be string. Received '${filename}'.${
filename instanceof URL
? ' Use createRequire for URL filename.'
: ''
}`,
);
// @ts-ignore
error.code = 'ERR_INVALID_ARG_TYPE';
throw error;
}
return createRequire(filename);
};
}
if ('syncBuiltinESMExports' in nativeModule) {
overriddenModules.syncBuiltinESMExports = () => {};
}

return Object.keys(overriddenModules).length > 0
? {...nativeModule, ...overriddenModules}
: nativeModule;
}
if ('syncBuiltinESMExports' in nativeModule) {
Module.syncBuiltinESMExports = () => {};
}

return require(moduleName);
this._moduleImplementation = Module;

return Module;
}

private _generateMock(from: Config.Path, moduleName: string) {
Expand Down