Skip to content

Commit 5d5dd28

Browse files
Merge pull request #9 from swiftwasm/katei/memfs-test
Test MemFS implementation by WebAssembly/wasi-testsuite
2 parents 11b2a73 + 4a9d028 commit 5d5dd28

24 files changed

+429
-376
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
/lib
33
/examples/build
4+
/examples/package-lock.json

.gitmodules

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[submodule "third_party/wasi-test-suite"]
2-
path = third_party/wasi-test-suite
3-
url = https://github.com/caspervonb/wasi-test-suite
1+
[submodule "third_party/wasi-testsuite"]
2+
path = third_party/wasi-testsuite
3+
url = https://github.com/WebAssembly/wasi-testsuite

examples/package-lock.json

-39
This file was deleted.

package.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"./lib/esm/platforms/crypto.js": "./lib/esm/platforms/crypto.browser.js"
99
},
1010
"scripts": {
11-
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
12-
"test": "jest",
11+
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && echo '{ \"type\": \"module\" }' > lib/esm/package.json",
12+
"test": "node --test test/*.test.mjs",
1313
"format": "prettier --write ./src ./test",
1414
"prepare": "npm run build"
1515
},
@@ -32,11 +32,8 @@
3232
"author": "SwiftWasm Team",
3333
"license": "MIT",
3434
"devDependencies": {
35-
"@types/jest": "^28.1.4",
3635
"@types/node": "^17.0.31",
37-
"jest": "^28.1.2",
3836
"prettier": "^3.5.2",
39-
"ts-jest": "^28.0.5",
4037
"typescript": "^4.6.4"
4138
}
4239
}

src/abi.ts

+16
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,22 @@ export class WASIAbi {
6262
* The file descriptor or file refers to a regular file inode.
6363
*/
6464
static readonly WASI_FILETYPE_REGULAR_FILE = 4;
65+
/**
66+
* Create file if it does not exist.
67+
*/
68+
static readonly WASI_OFLAGS_CREAT = 1 << 0;
69+
/**
70+
* Open directory.
71+
*/
72+
static readonly WASI_OFLAGS_DIRECTORY = 1 << 1;
73+
/**
74+
* Fail if not a directory.
75+
*/
76+
static readonly WASI_OFLAGS_EXCL = 1 << 2;
77+
/**
78+
* Truncate to zero length.
79+
*/
80+
static readonly WASI_OFLAGS_TRUNC = 1 << 3;
6581

6682
static readonly IMPORT_FUNCTIONS = [
6783
"args_get",

src/features/all.ts

+10-15
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,24 @@
1-
import { WASIAbi } from "../abi";
2-
import { WASIFeatureProvider, WASIOptions } from "../options";
3-
import { useArgs } from "./args";
4-
import { useClock } from "./clock";
5-
import { useEnviron } from "./environ";
6-
import { useFS, useStdio } from "./fd";
7-
import { useProc } from "./proc";
8-
import { useRandom } from "./random";
1+
import { WASIAbi } from "../abi.js";
2+
import { WASIFeatureProvider, WASIOptions } from "../options.js";
3+
import { useArgs } from "./args.js";
4+
import { useClock } from "./clock.js";
5+
import { useEnviron } from "./environ.js";
6+
import { useMemoryFS } from "./fd.js";
7+
import { useProc } from "./proc.js";
8+
import { useRandom } from "./random.js";
99

10-
type Options = (Parameters<typeof useFS>[0] | Parameters<typeof useStdio>[0]) &
11-
Parameters<typeof useRandom>[0];
10+
type Options = Parameters<typeof useMemoryFS>[0] & Parameters<typeof useRandom>[0];
1211

1312
export function useAll(useOptions: Options = {}): WASIFeatureProvider {
1413
return (options: WASIOptions, abi: WASIAbi, memoryView: () => DataView) => {
1514
const features = [
15+
useMemoryFS(useOptions),
1616
useEnviron,
1717
useArgs,
1818
useClock,
1919
useProc,
2020
useRandom(useOptions),
2121
];
22-
if ("fs" in useOptions) {
23-
features.push(useFS({ fs: useOptions.fs }));
24-
} else {
25-
features.push(useStdio(useOptions));
26-
}
2722
return features.reduce((acc, fn) => {
2823
return { ...acc, ...fn(options, abi, memoryView) };
2924
}, {});

src/features/args.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { WASIAbi } from "../abi";
2-
import { WASIOptions } from "../options";
1+
import { WASIAbi } from "../abi.js";
2+
import { WASIOptions } from "../options.js";
33

44
/**
55
* A feature provider that provides `args_get` and `args_sizes_get`

src/features/clock.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { WASIAbi } from "../abi";
2-
import { WASIOptions } from "../options";
1+
import { WASIAbi } from "../abi.js";
2+
import { WASIOptions } from "../options.js";
33

44
/**
55
* A feature provider that provides `clock_res_get` and `clock_time_get` by JavaScript's Date.

src/features/environ.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { WASIAbi } from "../abi";
2-
import { WASIOptions } from "../options";
1+
import { WASIAbi } from "../abi.js";
2+
import { WASIOptions } from "../options.js";
33

44
/**
55
* A feature provider that provides `environ_get` and `environ_sizes_get`

0 commit comments

Comments
 (0)