forked from bytecodealliance/jco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.js
148 lines (136 loc) · 4.97 KB
/
cli.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
import { ok, strictEqual } from 'node:assert';
import { readFile, rm } from 'node:fs/promises';
import { exec, jsctPath } from './helpers.js';
import { tmpdir } from 'node:os';
import { resolve } from 'node:path';
export async function cliTest (fixtures) {
suite('CLI', () => {
const outDir = resolve(tmpdir(), 'out-component-dir');
const outFile = resolve(tmpdir(), 'out-component-file');
async function cleanup() {
try {
await rm(outDir, { recursive: true });
await rm(outFile);
}
catch {}
}
test('Transpile', async () => {
try {
const name = 'exports_only';
const { stderr } = await exec(jsctPath, 'transpile', `test/fixtures/${name}.component.wasm`, '--name', name, '-o', outDir);
strictEqual(stderr, '');
const source = await readFile(`${outDir}/${name}.js`);
ok(source.toString().includes('export function thunk'));
}
finally {
await cleanup();
}
});
test('Transpile & Optimize & Minify', async () => {
try {
const name = 'exports_only';
const { stderr } = await exec(jsctPath, 'transpile', `test/fixtures/${name}.component.wasm`, '--name', name, '--valid-lifting-optimization', '--tla-compat', '--optimize', '--minify', '--base64-cutoff=0', '-o', outDir);
strictEqual(stderr, '');
const source = await readFile(`${outDir}/${name}.js`);
ok(source.toString().includes('export function thunk'));
}
finally {
await cleanup();
}
});
test('Transpile to JS', async () => {
try {
const name = 'flavorful';
const { stderr } = await exec(jsctPath, 'transpile', `test/fixtures/${name}.component.wasm`, '--name', name, '--map', 'testwasi=./wasi.js', '--valid-lifting-optimization', '--tla-compat', '--js', '--base64-cutoff=0', '-o', outDir);
strictEqual(stderr, '');
const source = await readFile(`${outDir}/${name}.js`, 'utf8');
ok(source.includes('./wasi.js'));
ok(source.includes('testwasi'));
ok(source.includes('FUNCTION_TABLE'));
ok(source.includes('export const $init'));
}
finally {
await cleanup();
}
});
test('Optimize', async () => {
try {
const component = await readFile(`test/fixtures/exports_only.component.wasm`);
const { stderr, stdout } = await exec(jsctPath, 'opt', `test/fixtures/exports_only.component.wasm`, '-o', outFile);
strictEqual(stderr, '');
ok(stdout.includes('Core Module 1:'));
const optimizedComponent = await readFile(outFile);
ok(optimizedComponent.byteLength < component.byteLength);
}
finally {
await cleanup();
}
});
test('Print & Parse', async () => {
try {
const { stderr, stdout } = await exec(jsctPath, 'print', `test/fixtures/exports_only.component.wasm`);
strictEqual(stderr, '');
strictEqual(stdout.slice(0, 10), '(component');
{
const { stderr, stdout } = await exec(jsctPath, 'print', `test/fixtures/exports_only.component.wasm`, '-o', outFile);
strictEqual(stderr, '');
strictEqual(stdout, '');
}
{
const { stderr, stdout } = await exec(jsctPath, 'parse', outFile, '-o', outFile);
strictEqual(stderr, '');
strictEqual(stdout, '');
ok(await readFile(outFile));
}
}
finally {
await cleanup();
}
});
test('Wit & New', async () => {
try {
const { stderr, stdout } = await exec(jsctPath, 'wit', `test/fixtures/exports_only.component.wasm`);
strictEqual(stderr, '');
ok(stdout.includes('world component {'));
{
const { stderr, stdout } = await exec(jsctPath, 'wit', `test/fixtures/exports_only.component.wasm`, '-o', outFile);
strictEqual(stderr, '');
strictEqual(stdout, '');
}
// TODO: reenable for dummy generation
// {
// const { stderr, stdout } = await exec(jsctPath, 'new', '--types-only', '--wit', outFile, '-o', outFile);
// strictEqual(stderr, '');
// strictEqual(stdout, '');
// }
// {
// const { stderr, stdout } = await exec(jsctPath, 'print', outFile);
// strictEqual(stderr, '');
// strictEqual(stdout.slice(0, 10), '(component');
// }
}
finally {
await cleanup();
}
});
test('Component new adapt', async () => {
try {
const { stderr } = await exec(jsctPath,
'new',
'test/fixtures/exitcode.wasm',
'--adapt',
'test/fixtures/wasi_snapshot_preview1.wasm',
'-o', outFile);
strictEqual(stderr, '');
{
const { stderr, stdout } = await exec(jsctPath, 'print', outFile);
strictEqual(stderr, '');
strictEqual(stdout.slice(0, 10), '(component');
}
}
finally {
await cleanup();
}
});
});
}