-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.js
95 lines (85 loc) · 2.87 KB
/
index.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
var fs = require("fs");
var test = require("tape");
// This test case exists to catch the most obvious issues before pushing the binary back to GitHub.
// It's not intended to be a full test suite, but feel free to extend it / send a PR if necessary!
require("..")().then(wabt => {
var mod;
test("loading a binary module", function(test) {
var buffer = new Uint8Array(
fs.readFileSync(__dirname + "/assembly/module.wasm")
);
test.doesNotThrow(function() {
mod = wabt.readWasm(buffer, { readDebugNames: true });
});
test.ok(mod && typeof mod.toBinary === "function", "should return a module");
test.end();
});
test("loading a binary module (with features)", function(test) {
var buffer = new Uint8Array(
fs.readFileSync(__dirname + "/assembly/module-features.wasm")
);
test.doesNotThrow(function() {
mod = wabt.readWasm(buffer, {
readDebugNames: true,
});
});
test.ok(mod && typeof mod.toBinary === "function", "should return a module");
test.end();
});
test("modifying a module", function(test) {
test.doesNotThrow(function() {
mod.generateNames();
mod.applyNames();
});
test.end();
});
test("emitting a module", function(test) {
var text, binaryRes;
test.doesNotThrow(function() {
text = mod.toText({ foldExprs: true, inlineExport: false });
binaryRes = mod.toBinary({ write_debug_names: true });
});
test.ok(
typeof text === "string" && text.length,
"should return a string from calling Module#toText"
);
test.ok(
binaryRes &&
binaryRes.buffer &&
binaryRes.buffer.length &&
typeof binaryRes.log === "string",
"should return a binary result from calling Module#toBinary"
);
test.end();
});
test("destroying a module", function(test) {
test.doesNotThrow(function() {
mod.destroy();
}, "should not throw when calling Module#destroy");
test.end();
});
test("loading a text (wat) module", function(test) {
var str = fs.readFileSync(__dirname + "/assembly/module.wat").toString();
var mod;
test.doesNotThrow(function() {
mod = wabt.parseWat("module.wat", str);
});
test.ok(mod && typeof mod.toBinary === "function", "should return a module");
test.doesNotThrow(function() {
mod.destroy();
}, "should not throw when calling Module#destroy");
test.end();
});
test("loading a text (wat) module with features", function(test) {
var str = fs.readFileSync(__dirname + "/assembly/module-features.wat").toString();
var mod;
test.doesNotThrow(function() {
mod = wabt.parseWat("module-features.wat", str);
});
test.ok(mod && typeof mod.toBinary === "function", "should return a module");
test.doesNotThrow(function() {
mod.destroy();
}, "should not throw when calling Module#destroy");
test.end();
});
});