-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathbundle.test.js
129 lines (119 loc) · 2.96 KB
/
bundle.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
import 'ses';
import fs from 'fs';
import url from 'url';
import test from 'ava';
import { makeBundle, makeArchive, parseArchive } from '../index.js';
import { makeReadPowers } from '../node-powers.js';
import { moduleify } from './scaffold.js';
const fixture = new URL(
'fixtures-0/node_modules/bundle/main.js',
import.meta.url,
).toString();
// @ts-expect-error XXX Node interface munging
const { read } = makeReadPowers({ fs, url });
const expectedLog = [
'On the other hand,',
'are other fingers.',
'dependency',
'foo',
moduleify({
c: 'sea',
i: 'eye',
q: 'cue',
k: 'que',
u: 'you',
y: 'why',
}),
moduleify({
c: 'sea',
i: 'eye',
q: 'cue',
k: 'que',
u: 'you',
y: 'why',
}),
'fizz',
'buzz',
'blue',
'qux',
'#777',
moduleify({
red: '#f00',
green: '#0f0',
blue: '#00f',
}),
moduleify({
default: {
zzz: 1,
fromMjs: 'foo',
},
fromMjs: 'foo',
zzz: 1,
}),
{ widdershins: 'againshins' },
];
test('bundles work', async t => {
const bundle = await makeBundle(read, fixture);
const log = [];
const print = entry => {
log.push(entry);
};
const compartment = new Compartment({
globals: { print },
__options__: true,
});
compartment.evaluate(bundle);
t.deepEqual(log, expectedLog);
});
test('equivalent archive behaves the same as bundle', async t => {
const log = [];
const print = entry => {
log.push(entry);
};
const archive = await makeArchive(read, fixture);
const application = await parseArchive(archive, fixture);
await application.import({
globals: { print },
});
t.deepEqual(log, expectedLog);
});
// This is failing because it requires support for missing dependencies.
// Cannot bundle: encountered deferredError Cannot find file for internal module "./spam"
test.failing('bundle cjs-compat', async t => {
const cjsFixture = new URL(
'fixtures-cjs-compat/node_modules/app/index.js',
import.meta.url,
).toString();
const bundle = await makeBundle(read, cjsFixture);
const log = [];
const print = entry => {
log.push(entry);
};
const compartment = new Compartment({
globals: { print },
__options__: true,
});
compartment.evaluate(bundle);
t.deepEqual(log, expectedLog);
});
test('bundle cjs-compat default-difficulties', async t => {
const cjsFixture = new URL(
'fixtures-cjs-compat/node_modules/default-difficulties/index.mjs',
import.meta.url,
).toString();
const bundle = await makeBundle(read, cjsFixture);
const compartment = new Compartment();
const { results } = compartment.evaluate(bundle);
const resultExports = results.map(result => {
return Object.keys(result).sort();
});
t.deepEqual(resultExports, [
['default', 'even'],
['default', 'even', 'version'],
['__esModule', 'default', 'even', 'version'],
['__esModule', 'default', 'even', 'version'],
['default', 'even', 'version'],
['default', 'even'],
['default', 'even'],
]);
});