-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathendo-script-format.test.js
101 lines (91 loc) · 3.48 KB
/
endo-script-format.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
// @ts-check
import test from '@endo/ses-ava/prepare-endo.js';
import * as url from 'url';
import bundleSource from '../src/index.js';
/**
* @template {Partial<object>} Options
* @param {string} entry
* @param {Options} options
*/
// @ts-expect-error 'Options' could be instantiated with a different subtype of constraint 'Partial<any>'.
const generate = async (entry, options = {}) => {
const entryPath = url.fileURLToPath(new URL(entry, import.meta.url));
return bundleSource(entryPath, {
format: 'endoScript',
...options,
});
};
test('endo script format', async t => {
const bundle = await generate('../demo/meaning.js');
t.is(bundle.moduleFormat, 'endoScript');
const { source } = bundle;
const compartment = new Compartment();
const ns = compartment.evaluate(source);
t.is(ns.meaning, 42);
});
test('endo script format supports typescript type erasure', async t => {
const bundle = await generate('../demo/fortune.ts');
t.is(bundle.moduleFormat, 'endoScript');
const { source } = bundle;
t.notRegex(source, /string/);
const compartment = new Compartment();
const ns = compartment.evaluate(source);
t.is(ns.fortune, 'outlook uncertain');
});
test('endo script supports reexporting typescript in typescript', async t => {
const bundle = await generate('../demo/reexport-fortune-ts.ts');
t.is(bundle.moduleFormat, 'endoScript');
const { source } = bundle;
const compartment = new Compartment();
const ns = compartment.evaluate(source);
t.is(ns.fortune, 'outlook uncertain');
});
test('endo script supports reexporting typescript in javascript', async t => {
const bundle = await generate('../demo/reexport-fortune-ts.js');
t.is(bundle.moduleFormat, 'endoScript');
const { source } = bundle;
const compartment = new Compartment();
const ns = compartment.evaluate(source);
t.is(ns.fortune, 'outlook uncertain');
});
test('endo script supports reexporting javascript in typescript', async t => {
const bundle = await generate('../demo/reexport-meaning-js.ts');
t.is(bundle.moduleFormat, 'endoScript');
const { source } = bundle;
const compartment = new Compartment();
const ns = compartment.evaluate(source);
t.is(ns.meaning, 42);
});
test('endo script supports reexporting javascript in javascript', async t => {
const bundle = await generate('../demo/reexport-meaning-js.js');
t.is(bundle.moduleFormat, 'endoScript');
const { source } = bundle;
const compartment = new Compartment();
const ns = compartment.evaluate(source);
t.is(ns.meaning, 42);
});
test.failing(
'endo supports importing ts from ts with a js extension',
async t => {
t.log(`\
TypeScript with tsc encourages importing with the .js extension, even if
presumptively generated .js file does not exist but is presumed to be generated
from the corresponding .ts module. We do not yet implement this.`);
const bundle = await generate('../demo/import-ts-as-js.ts');
t.is(bundle.moduleFormat, 'endoScript');
const { source } = bundle;
const compartment = new Compartment();
const ns = compartment.evaluate(source);
t.is(ns.fortune, 'outlook uncertain');
},
);
test('endo script format is smaller with blank comments', async t => {
const bigBundle = await generate('../demo/meaning.js');
const smallBundle = await generate('../demo/meaning.js', {
elideComments: true,
});
const compartment = new Compartment();
const ns = compartment.evaluate(smallBundle.source);
t.is(ns.meaning, 42);
t.assert(smallBundle.source.length < bigBundle.source.length);
});