-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.test.js
368 lines (322 loc) · 9.25 KB
/
index.test.js
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
const { rollup } = require("rollup");
const cjs = require("./index.js");
const prettier = require("prettier");
const { wrap } = require("jest-snapshot-serializer-raw");
function execute(code) {
const output = (value) => value;
return eval(code);
}
async function format(chunk) {
return wrap(prettier.format(chunk.code, { filepath: chunk.fileName }));
}
async function parse(options) {
let bundle = await rollup(options);
let { output } = await bundle.generate({});
await bundle.close();
return output.find((item) => item.fileName === "entry.js");
}
function virtual(options) {
return {
resolveId(source) {
if (source in options) return source;
},
load(source) {
return options[source];
},
};
}
it(`import from '.esm'`, async () => {
let chunk = await parse({
input: "entry.js",
plugins: [
virtual({
"entry.js": `import lib from ".esm"; output(lib);`,
".esm": `export default "default"`,
}),
cjs(),
],
});
expect(execute(chunk.code)).toEqual("default");
expect(await format(chunk)).toMatchInlineSnapshot(`
var lib = "default";
output(lib);
`);
});
it(`import from '.cjs'`, async () => {
let chunk = await parse({
input: "entry.js",
plugins: [
virtual({
"entry.js": `import lib, {named} from ".cjs"; output({lib, named});`,
".cjs": `module.exports.default = "default"; module.exports.named = "named";`,
}),
cjs(),
],
});
expect(execute(chunk.code)).toMatchObject({
lib: { default: "default", named: "named" },
named: "named",
});
expect(await format(chunk)).toMatchInlineSnapshot(`
function defaultExport(exports) {
return exports.__esModule ? exports.default : exports;
}
let module = { exports: {} };
module.exports.default = "default";
module.exports.named = "named";
var lib = /*#__PURE__*/ defaultExport(module.exports);
const __çjs$synthetic__ = module.exports;
output({ lib, named: __çjs$synthetic__.named });
`);
});
it(`import from '.esModule'`, async () => {
let chunk = await parse({
input: "entry.js",
plugins: [
virtual({
"entry.js": `import lib, { named } from ".esModule"; output({ lib, named });`,
".esModule": `
module.exports = (function () {
let e = {};
Object.defineProperty(e, "__esModule", { value: !0 });
e.default = "default";
e.named = "named";
return e;
})();
`,
}),
cjs(),
],
});
expect(execute(chunk.code)).toMatchObject({
lib: "default",
named: "named",
});
expect(await format(chunk)).toMatchInlineSnapshot(`
function defaultExport(exports) {
return exports.__esModule ? exports.default : exports;
}
let module = { exports: {} };
module.exports = (function () {
let e = {};
Object.defineProperty(e, "__esModule", { value: !0 });
e.default = "default";
e.named = "named";
return e;
})();
var lib = /*#__PURE__*/ defaultExport(module.exports);
const __çjs$synthetic__ = module.exports;
output({ lib, named: __çjs$synthetic__.named });
`);
});
it(`require('.esm')`, async () => {
let chunk = await parse({
input: "entry.js",
plugins: [
virtual({
"entry.js": `const lib = require(".esm"); output(lib);`,
".esm": `export default "default"`,
}),
cjs(),
],
});
let actual = execute(chunk.code);
expect(actual).toMatchObject({ default: "default" });
expect(await format(chunk)).toMatchInlineSnapshot(`
function require(module) {
return module.__çjs$exports__ || module;
}
var _esm = "default";
var __çjs__esm__ = /*#__PURE__*/ Object.freeze({
__proto__: null,
default: _esm,
});
const lib = /*#__PURE__*/ require(__çjs__esm__);
output(lib);
`);
});
it(`require('.cjs')`, async () => {
let chunk = await parse({
input: "entry.js",
plugins: [
virtual({
"entry.js": `const lib = require(".cjs"); output( lib );`,
".cjs": `exports.default = "default"`,
}),
cjs(),
],
});
expect(execute(chunk.code)).toMatchObject({ default: "default" });
expect(await format(chunk)).toMatchInlineSnapshot(`
function require(module) {
return module.__çjs$exports__ || module;
}
function defaultExport(exports) {
return exports.__esModule ? exports.default : exports;
}
let module = { exports: {} };
let exports = module.exports;
exports.default = "default";
var _cjs = /*#__PURE__*/ defaultExport(module.exports);
const __çjs$synthetic__ = module.exports;
const __çjs$exports__ = module.exports;
var __çjs__cjs__ = /*#__PURE__*/ Object.freeze(
/*#__PURE__*/ Object.assign(
/*#__PURE__*/ Object.create(null),
__çjs$synthetic__,
{
default: _cjs,
__çjs$exports__: __çjs$exports__,
}
)
);
const lib = /*#__PURE__*/ require(__çjs__cjs__);
output(lib);
`);
});
it(`require('.esModule')`, async () => {
let chunk = await parse({
input: "entry.js",
plugins: [
virtual({
"entry.js": `output(require(".esModule"));`,
".esModule": `module.exports.__esModule = true; module.exports.default = "default"; module.exports.named = "named";`,
}),
cjs(),
],
});
expect(execute(chunk.code)).toMatchObject({
__esModule: true,
default: "default",
named: "named",
});
expect(await format(chunk)).toMatchInlineSnapshot(`
function require(module) {
return module.__çjs$exports__ || module;
}
function defaultExport(exports) {
return exports.__esModule ? exports.default : exports;
}
let module = { exports: {} };
module.exports.__esModule = true;
module.exports.default = "default";
module.exports.named = "named";
var _esModule = /*#__PURE__*/ defaultExport(module.exports);
const __çjs$synthetic__ = module.exports;
const __çjs$exports__ = module.exports;
var __çjs__esModule__ = /*#__PURE__*/ Object.freeze(
/*#__PURE__*/ Object.assign(
/*#__PURE__*/ Object.create(null),
__çjs$synthetic__,
{
default: _esModule,
__çjs$exports__: __çjs$exports__,
}
)
);
output(/*#__PURE__*/ require(__çjs__esModule__));
`);
});
it(`import * from '.cjs'`, async () => {
let chunk = await parse({
input: "entry.js",
plugins: [
virtual({
"entry.js": `import * as lib from ".cjs"; output(lib)`,
".cjs": `module.exports.default = "default"; module.exports.named = "named";`,
}),
cjs(),
],
});
expect(execute(chunk.code)).toMatchObject({
default: { default: "default", named: "named" },
named: "named",
});
expect(await format(chunk)).toMatchInlineSnapshot(`
function defaultExport(exports) {
return exports.__esModule ? exports.default : exports;
}
let module = { exports: {} };
module.exports.default = "default";
module.exports.named = "named";
var _cjs = /*#__PURE__*/ defaultExport(module.exports);
const __çjs$synthetic__ = module.exports;
const __çjs$exports__ = module.exports;
var lib = /*#__PURE__*/ Object.freeze(
/*#__PURE__*/ Object.assign(
/*#__PURE__*/ Object.create(null),
__çjs$synthetic__,
{
default: _cjs,
__çjs$exports__: __çjs$exports__,
}
)
);
output(lib);
`);
});
it(`import * from '.esm'`, async () => {
let chunk = await parse({
input: "entry.js",
plugins: [
virtual({
"entry.js": `import * as lib from ".esm"; output(lib)`,
".esm": `export default "default"; export const named = "named";`,
}),
cjs(),
],
});
expect(execute(chunk.code)).toMatchObject({
default: "default",
named: "named",
});
expect(await format(chunk)).toMatchInlineSnapshot(`
var _esm = "default";
const named = "named";
var lib = /*#__PURE__*/ Object.freeze({
__proto__: null,
default: _esm,
named: named,
});
output(lib);
`);
});
it(`import * from '.esModule'`, async () => {
let chunk = await parse({
input: "entry.js",
plugins: [
virtual({
"entry.js": `import * as lib from ".esModule"; output(lib)`,
".esModule": `module.exports.__esModule = true; module.exports.default = "default"; module.exports.named = "named";`,
}),
cjs(),
],
});
expect(execute(chunk.code)).toMatchObject({
default: "default",
named: "named",
});
expect(await format(chunk)).toMatchInlineSnapshot(`
function defaultExport(exports) {
return exports.__esModule ? exports.default : exports;
}
let module = { exports: {} };
module.exports.__esModule = true;
module.exports.default = "default";
module.exports.named = "named";
var _esModule = /*#__PURE__*/ defaultExport(module.exports);
const __çjs$synthetic__ = module.exports;
const __çjs$exports__ = module.exports;
var lib = /*#__PURE__*/ Object.freeze(
/*#__PURE__*/ Object.assign(
/*#__PURE__*/ Object.create(null),
__çjs$synthetic__,
{
default: _esModule,
__çjs$exports__: __çjs$exports__,
}
)
);
output(lib);
`);
});