diff options
author | 2023-09-15 11:22:06 -0400 | |
---|---|---|
committer | 2023-09-15 08:22:06 -0700 | |
commit | 29b22175bf6fc726d0b028c7bf5619ab89fca09a (patch) | |
tree | f0664d677e6cd2d130c76db9fb135402ae2c1110 /test/js/node/process-binding.test.ts | |
parent | 75697890ce1040d2c2f9bc50499faf54b3205915 (diff) | |
download | bun-29b22175bf6fc726d0b028c7bf5619ab89fca09a.tar.gz bun-29b22175bf6fc726d0b028c7bf5619ab89fca09a.tar.zst bun-29b22175bf6fc726d0b028c7bf5619ab89fca09a.zip |
feat(runtime): add `process.binding` `uv`/`natives`/`config` + make global object properties lazy (#5355)
* binding uv
* we did that
* some more bindings
* fix doc
* fix uv
* yo
* static hash table nonsense <3
* huge refactor to the global object i am not ready for merge conflicts
* it works part 3
* lose
---------
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
Diffstat (limited to 'test/js/node/process-binding.test.ts')
-rw-r--r-- | test/js/node/process-binding.test.ts | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/js/node/process-binding.test.ts b/test/js/node/process-binding.test.ts new file mode 100644 index 000000000..c60a38bae --- /dev/null +++ b/test/js/node/process-binding.test.ts @@ -0,0 +1,26 @@ +describe("process.binding", () => { + test("process.binding('constants')", () => { + /* @ts-ignore */ + const constants = process.binding("constants"); + expect(constants).toBeDefined(); + expect(constants).toHaveProperty("os"); + expect(constants).toHaveProperty("crypto"); + expect(constants).toHaveProperty("fs"); + expect(constants).toHaveProperty("trace"); + expect(constants).toHaveProperty("zlib"); + }); + test("process.binding('uv')", () => { + /* @ts-ignore */ + const uv = process.binding("uv"); + expect(uv).toBeDefined(); + + expect(uv).toHaveProperty("errname"); + expect(uv).toHaveProperty("UV_EACCES"); + expect(uv.errname(-4)).toBe("EINTR"); + expect(uv.errname(5)).toBe("Unknown system error 5"); + + const map = uv.getErrorMap(); + expect(map).toBeDefined(); + expect(map.get(-56)).toEqual(["EISCONN", "socket is already connected"]); + }); +}); |