-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
Copy pathnativeEsm.test.ts
196 lines (157 loc) · 5.28 KB
/
nativeEsm.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/**
* 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 {createRequire} from 'module';
import {resolve} from 'path';
import {isNativeError} from 'util/types';
import {onNodeVersions} from '@jest/test-utils';
import {extractSummary, runYarnInstall} from '../Utils';
import runJest, {getConfig} from '../runJest';
// for unknown reason the "runs test with native ESM" test occasionally ends up
// with process being killed with SIGSEGV (Segmentation fault) signal
jest.retryTimes(3);
const DIR = resolve(__dirname, '../native-esm');
let isolatedVmInstalled = false;
beforeAll(() => {
runYarnInstall(DIR);
const require = createRequire(`${DIR}/index.js`);
try {
const ivm = require('isolated-vm');
isolatedVmInstalled = ivm != null;
} catch (error) {
if (
isNativeError(error) &&
(error as NodeJS.ErrnoException).code === 'MODULE_NOT_FOUND'
) {
console.warn('`isolated-vm` is not installed, skipping its test');
} else {
throw error;
}
}
});
test('test config is without transform', () => {
const {configs} = getConfig(DIR);
expect(configs).toHaveLength(1);
expect(configs[0].transform).toEqual([]);
});
test('runs test with native ESM', () => {
const {exitCode, stderr, stdout} = runJest(DIR, ['native-esm.test.js'], {
nodeOptions: '--experimental-vm-modules --no-warnings',
});
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});
test('runs test with native mock ESM', () => {
const {exitCode, stderr, stdout} = runJest(
DIR,
['native-esm-mocks.test.js'],
{
nodeOptions: '--experimental-vm-modules --no-warnings',
},
);
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});
test('supports top-level await', () => {
const {exitCode, stderr, stdout} = runJest(DIR, ['native-esm.tla.test.js'], {
nodeOptions: '--experimental-vm-modules --no-warnings',
});
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});
// minimum version supported by discord.js is 16.9, but they use syntax from 16.11
onNodeVersions('>=16.11.0', () => {
test('support re-exports from CJS of dual packages', () => {
const {exitCode, stderr, stdout} = runJest(
DIR,
['native-esm-deep-cjs-reexport.test.js'],
{nodeOptions: '--experimental-vm-modules --no-warnings'},
);
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});
});
test('support re-exports from CJS of core module', () => {
const {exitCode, stderr, stdout} = runJest(
DIR,
['native-esm-core-cjs-reexport.test.js'],
{nodeOptions: '--experimental-vm-modules --no-warnings'},
);
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});
test('runs WebAssembly (Wasm) test with native ESM', () => {
const {exitCode, stderr, stdout} = runJest(DIR, ['native-esm-wasm.test.js'], {
nodeOptions: '--experimental-vm-modules --no-warnings',
});
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});
test('does not enforce import assertions', () => {
const {exitCode, stderr, stdout} = runJest(
DIR,
['native-esm-missing-import-assertions.test.js'],
{nodeOptions: '--experimental-vm-modules --no-warnings'},
);
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});
(isolatedVmInstalled ? test : test.skip)(
'properly handle re-exported native modules in ESM via CJS',
() => {
const {exitCode, stderr, stdout} = runJest(
DIR,
['native-esm-native-module.test.js'],
{nodeOptions: '--experimental-vm-modules --no-warnings'},
);
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
},
);
// support for import assertions in dynamic imports was added in Node.js 16.12.0
// support for import assertions was removed in Node.js 22.0.0
onNodeVersions('>=16.12.0 <22.0.0', () => {
test('supports import assertions', () => {
const {exitCode, stderr, stdout} = runJest(
DIR,
['native-esm-import-assertions.test.js'],
{nodeOptions: '--experimental-vm-modules --no-warnings'},
);
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});
});
onNodeVersions('<16.12.0 || >=22.0.0', () => {
test('syntax error for import assertions', () => {
const {exitCode, stderr, stdout} = runJest(
DIR,
['native-esm-import-assertions.test.js'],
{nodeOptions: '--experimental-vm-modules --no-warnings'},
);
const {rest} = extractSummary(stderr);
expect(rest).toContain('SyntaxError: Unexpected identifier');
expect(stdout).toBe('');
expect(exitCode).toBe(1);
});
});