-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathcapture-lite.test.js
98 lines (83 loc) · 3.03 KB
/
capture-lite.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
import 'ses';
import fs from 'node:fs';
import url from 'node:url';
import path from 'node:path';
import test from 'ava';
import { captureFromMap } from '../capture-lite.js';
import { mapNodeModules } from '../src/node-modules.js';
import { makeReadPowers } from '../src/node-powers.js';
import { defaultParserForLanguage } from '../src/import-parsers.js';
const { keys, entries, fromEntries } = Object;
test('captureFromMap() should resolve with a CaptureResult', async t => {
t.plan(5);
// @ts-expect-error XXX Node interface munging
const readPowers = makeReadPowers({ fs, url });
const moduleLocation = `${new URL(
'fixtures-0/node_modules/bundle/main.js',
import.meta.url,
)}`;
const nodeCompartmentMap = await mapNodeModules(readPowers, moduleLocation);
const { captureCompartmentMap, captureSources, compartmentRenames } =
await captureFromMap(readPowers, nodeCompartmentMap, {
parserForLanguage: defaultParserForLanguage,
});
const renames = fromEntries(
entries(compartmentRenames).map(([filepath, id]) => [id, filepath]),
);
t.deepEqual(
keys(captureSources).sort(),
['bundle', 'bundle-dep-v0.0.0'],
'captureSources should contain sources for each compartment map descriptor',
);
t.deepEqual(
keys(renames).sort(),
['bundle', 'bundle-dep-v0.0.0'],
'compartmentRenames must contain same compartment names as in captureCompartmentMap',
);
t.is(
keys(compartmentRenames).length,
keys(captureCompartmentMap.compartments).length,
'Every compartment descriptor must have a corresponding value in compartmentRenames',
);
t.deepEqual(
captureCompartmentMap.entry,
{
compartment: 'bundle',
module: './main.js',
},
'The entry compartment should point to the "bundle" compartment map',
);
t.deepEqual(
keys(captureCompartmentMap.compartments).sort(),
['bundle', 'bundle-dep-v0.0.0'],
'The "bundle" and "bundle-dep-v0.0.0" compartments should be present',
);
});
test('captureFromMap() should round-trip sources based on parsers', async t => {
// @ts-expect-error XXX Node interface munging
const readPowers = makeReadPowers({ fs, url });
const moduleLocation = `${new URL(
'fixtures-0/node_modules/bundle/main.js',
import.meta.url,
)}`;
const nodeCompartmentMap = await mapNodeModules(readPowers, moduleLocation);
const { captureSources, compartmentRenames } = await captureFromMap(
readPowers,
nodeCompartmentMap,
{
// we are NOT pre-compiling sources
parserForLanguage: defaultParserForLanguage,
},
);
const renames = fromEntries(
entries(compartmentRenames).map(([filepath, id]) => [id, filepath]),
);
const decoder = new TextDecoder();
// the actual source depends on the value of `parserForLanguage` above
const actual = decoder.decode(captureSources.bundle['./icando.cjs'].bytes);
const expected = await fs.promises.readFile(
path.join(url.fileURLToPath(renames.bundle), 'icando.cjs'),
'utf-8',
);
t.is(actual, expected, 'Source code should not be pre-compiled');
});