Skip to content

Commit 6b3e36d

Browse files
authoredJan 6, 2023
fix: allow mocking CJS module with interoped default (#2598)
* fix: allow mocking CJS module with interoped default * chore: cleanup * chore: cleanup
1 parent 9a29f98 commit 6b3e36d

File tree

5 files changed

+25
-5
lines changed

5 files changed

+25
-5
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = function () {
2+
return true
3+
}

‎examples/mocks/test/external.test.ts

+7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
import '../src/external/external.mjs'
22
import { expect, test, vi } from 'vitest'
33
import axios from 'axios'
4+
import defaultFunc from '../src/external/default-function.cjs'
5+
6+
vi.mock('../src/external/default-function.cjs')
47

58
test('axios is mocked', () => {
69
expect(vi.isMockFunction(axios.get)).toBe(true)
710
})
11+
12+
test('defaultFunc is mocked', () => {
13+
expect(vi.isMockFunction(defaultFunc)).toBe(true)
14+
})

‎examples/mocks/vite.config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export default defineConfig({
2525
environment: 'node',
2626
deps: {
2727
external: [/src\/external/],
28+
interopDefault: true,
2829
},
2930
},
3031
})

‎packages/vite-node/src/client.ts

+11-4
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,14 @@ export class ViteNodeRunner {
424424

425425
const { mod, defaultExport } = interopModule(importedModule)
426426

427+
const modKeys = Reflect.ownKeys(mod)
428+
let defaultKeys = !isPrimitive(defaultExport) ? Reflect.ownKeys(defaultExport) : []
429+
// remove reserved keys from default keys
430+
if (typeof mod !== 'function' && typeof defaultExport === 'function') {
431+
const reservedKeys = ['arguments', 'caller', 'prototype', 'name', 'length']
432+
defaultKeys = defaultKeys.filter(n => typeof n === 'string' && !reservedKeys.includes(n))
433+
}
434+
427435
return new Proxy(mod, {
428436
get(mod, prop) {
429437
if (prop === 'default')
@@ -436,11 +444,10 @@ export class ViteNodeRunner {
436444
return prop in mod || (defaultExport && prop in defaultExport)
437445
},
438446
// this is needed for mocker to know what is available to mock
439-
ownKeys(mod) {
440-
const keys = Reflect.ownKeys(mod)
447+
ownKeys() {
441448
if (!defaultExport || isPrimitive(defaultExport))
442-
return keys
443-
const allKeys = [...keys, 'default', ...Reflect.ownKeys(defaultExport)]
449+
return modKeys
450+
const allKeys = [...modKeys, 'default', ...defaultKeys]
444451
return Array.from(new Set(allKeys))
445452
},
446453
getOwnPropertyDescriptor(mod, prop) {

‎packages/vitest/src/runtime/execute.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ export class VitestRunner extends ViteNodeRunner {
7373
}
7474

7575
shouldInterop(path: string, mod: any) {
76-
return this.options.interopDefault ?? (getCurrentEnvironment() !== 'node' && super.shouldInterop(path, mod))
76+
if (this.options.interopDefault === false)
77+
return false
78+
return (this.options.interopDefault || getCurrentEnvironment() !== 'node') && super.shouldInterop(path, mod)
7779
}
7880
}

0 commit comments

Comments
 (0)
Please sign in to comment.