aboutsummaryrefslogtreecommitdiff
path: root/test/js (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-09-13fix(Bun.serve) fix buffering edge case (#5152)Gravatar Ciro Spaciari 2-0/+31
* fix buffering clean * fix resolveMaybeNeedsTrailingSlash and try to fix ci/cd error * fix resolveMaybeNeedsTrailingSlash and try to fix ci/cd error * oops --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-09-13fix(runtime): make most globals configurable/deletable, allow resuming the ↵Gravatar dave caruso 5-2/+69
console iterator (#5216) * Fix #5177 * Fix #5175 * make most globals deletable/overridable * not done * cool * a * done * fix test * oops * yippee
2023-09-13test (#5244)Gravatar dave caruso 3-0/+28
2023-09-13fix(BunFile.slice) fix slice when length is greater than the size (#5186)Gravatar Ciro Spaciari 1-0/+10
* check the limits for file, when slicing * check eof * undo test
2023-09-13fix(node:dns): fix the crash. (#5200)Gravatar Ai Hoshino 1-1/+61
2023-09-13fix(console.log) fix printing long custom format (#5164)Gravatar Ciro Spaciari 2-0/+35
* avoid overflow * Update src/bun.js/bindings/exports.zig * add mongodb inspect test * bun db test --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-09-13feat(nodejs): implement `os.availableParallelism` (#5109)Gravatar WingLim 1-0/+4
* feat(nodejs): implement `os.availableParallelism` * chore: do not throw error as same as node * refactor: use `navigator.hardwareConcurrency`
2023-09-13fix(node/fetch): Make data URL fetch consistent with node (#5126)Gravatar David Hewitt 1-0/+24
2023-09-13avoid inserting extraneous"accept-encoding" header (#5057)Gravatar iidebyo 1-0/+21
* add no extraneous accept-encoding header test * ensure fetch honors no decompress opt * fix format on test/js/node/http/node-http.test.ts
2023-09-12Update node-dns.test.jsGravatar Dylan Conway 1-1/+1
2023-09-12fix up with `prettier` (#5092)Gravatar Alex Lam S.L 1-1/+1
2023-09-12fix(node/path): Prevent memory corruption in parse (#5083)Gravatar David Hewitt 1-0/+11
* Add failing test for issue #4954 * fix(node/path): Return results with toValueGC
2023-09-11add NODE_TLS_REJECT_UNAUTHORIZED (#4829)Gravatar Ciro Spaciari 2-0/+32
2023-09-11fix(path): Fix edge case in `path.relative` (#4811)Gravatar Ai Hoshino 1-0/+13
Close: #4789
2023-09-11Fix `Buffer.from` to handle double-byte hex encoding strings (#4933)Gravatar Ai Hoshino 1-0/+13
Close: #4919
2023-09-11fix(BunFile) .slice offset on macOS (#4991)Gravatar Ciro Spaciari 1-0/+9
* fix offset * simplify error
2023-09-11update testGravatar Dylan Conway 1-1/+1
2023-09-10Fixes #4588 (#4804)Gravatar Jarred Sumner 1-0/+7
* Fixes #4588 * typo * fixup --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-09fix: remove from bun-server.test.ts test case (#4709)Gravatar Chris Hutchinson 1-1/+1
2023-09-08Fix listen() using unix socket if argument is a valid port (#4620)Gravatar Ashcon Partovi 1-0/+18
* Fix listen() using unix socket if argument is a valid port Fixes #4582 * Add test
2023-09-07Fix a couple important bugs (#4560)bun-v1.0.0Gravatar Jarred Sumner 1-1/+7
2023-09-07revert (#4539)Gravatar dave caruso 3-15/+18
* Revert "remove native events from streams" This reverts commit e063a47a53744a2bf5b1c2dd433698c9e37b75d6. * finish revert * remove accidental submodule * dfghj
2023-09-07Progress for Next.js (#4468)Gravatar dave caruso 5-36/+35
* L * ipc * asdfghjkl * dfghjk * it works! * types * patches for next.js * sdfghj * wsdfgn,./ * this * yolo * okay loser * asdfghjk * add some more APIs * MESS * sdfghjkl * remove native events from streams * stuff * remove lazy(primordials) test * debugging * okay * less fake extensions object * fix `Buffer.toString()` args logic * fix deserialize * make tests work * add test for `Buffer.toString` args * Update server.zig * remove test * update test * Update spawn-streaming-stdin.test.ts * fix linux build * Update fs.test.ts * cli message improvements * dfshaj * Fix fs.watch bug maybe? * remove --------- Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>
2023-09-06feat(fetch) rejectUnauthorized and checkServerIdentity (#4514)Gravatar Ciro Spaciari 4-13/+172
* enable root certs on fetch * rebase * fix lookup * some fixes and improvements * fmt * more fixes * more fixes * check detached onHandshake * fix promise case * fix cert non-Native * add fetch tls tests * more one test
2023-09-06fix(runtime): fix `events.once` not working (#4520)Gravatar dave caruso 1-0/+12
2023-09-05fix text decode trim (#4495)Gravatar Dylan Conway 1-0/+14
* remove trim * separate function * a test * trim when `stream` is true --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-09-05Align `process.nextTick` execution order with Node (#4409)Gravatar Jarred Sumner 3-8/+949
* Align `process.nextTick` execution order with Node * some tests * formatting * fixups * fix the test failures * simplify the logic here * push it up --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: dave caruso <me@paperdave.net>
2023-09-05feat(runtime): Implement `fs.watchFile` (#4467)Gravatar dave caruso 1-0/+121
* really lame prototype * uses threads but badly * it works i guess * unwatchFile but lame * it works * test * a * aomitcs * fix unwatching race condition * use hasPendingActivity and GC stuff better * test * revert this
2023-09-05fix(node:net): emit close event on connection error (#4336)Gravatar dave caruso 1-3/+18
* emit close event on connection error * re-review * add test
2023-09-05fix(fetch) always use readable stream if it is available (#4503)Gravatar Ciro Spaciari 1-0/+52
* always use readable stream if it is available * use bun sleep * fix tests * rm uws dep
2023-09-05fix SSL proxy tunneling on fetch (#4510)Gravatar Ciro Spaciari 1-2/+36
2023-09-05fix checkout/build failure due to `src/deps/uws` (#4505)Gravatar Alex Lam S.L 1-5/+5
2023-09-05fix ipv6 localhost fetch (#4498)Gravatar Dylan Conway 1-0/+20
* `node` null for localhost getaddrinfo * more test
2023-09-04fix zlib deflate on fetch (#4483)Gravatar Ciro Spaciari 1-2/+39
* fix zlib deflate on fetch * mention issue on test * more tests * oops
2023-09-04fix(HTMLRewriter) buffer response before transform (#4418)Gravatar Ciro Spaciari 1-396/+558
* html rewriter response buffering * pipe the data when marked as used * fix empty response * add some fetch tests * deinit parent stream * fix decompression * keep byte_reader alive * update builds * remove nonsense * was not nonsense after all * protect tmp ret value from GC, fix readable strong ref deinit/init * fmt * if we detach the stream we cannot update the fetch stream * detach checking source * more tests, progress with javascript and Direct sink * drop support for pure readable stream for now * more fixes --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-09-03fix(syscall): fix handling syscall errno (#4461)Gravatar Ai Hoshino 1-0/+21
* fix(syscall): fix handling syscall errno Close: #4198 * remove unused code * add more tests * remove unused code
2023-09-01fix `Bun.serve` with tls and `Bun.file` (#4450)Gravatar Dylan Conway 2-6/+24
* check sendfile ctx * add test * undo blob check * undo undo and add assert
2023-08-31fix(runtime): `fs.cp` edge cases (#4439)Gravatar dave caruso 1-3/+36
* yippee * enable cpSync tests * much better * that doesnt actually do anything * lose
2023-08-31get name if not provided in `FormData.append` (#4434)Gravatar Dylan Conway 1-0/+30
* get file name from blob if not provided * add test * another test * format
2023-08-30feat(node:fs): add `cp`/`cpSync`/`promises.cp` + async `copyFile` (#4340)Gravatar dave caruso 2-2/+259
* half working disaster code * this * async copyFile * . * its failing symlink tests * asdfg * asdf * hmm * okay i think ti works * small edits * fix test on linux * i hate atomics / atomics hate me back <3 * add a message in the builtins bundler that 0.8 is needed. it breaks on older versions lol. * fixed * rebase
2023-08-30fix(http/https) disable decompress on http/https client (#4399)Gravatar Ciro Spaciari 1-2/+13
* disable decompress on http/https module * make js again
2023-08-30Fix bug in `util/types`.{isGeneratorFunction,isAsyncFunction}Gravatar Jarred Sumner 1-2/+20
2023-08-29fix(node-fetch): use stream.Readable instead of web streams (#4394)Gravatar dave caruso 4-33/+103
* fix blobFrom * fix(node-fetch): use stream.Readable instead of web streams * uncomment * comment why
2023-08-29parse unix socket path param in `http.server` (#4390)Gravatar Ai Hoshino 1-0/+27
2023-08-29emit open and call close callback (#4384)Gravatar Dylan Conway 1-0/+55
2023-08-28feat(node:dns): implement `dns.reverse`. (#4332)Gravatar Ai Hoshino 1-0/+45
* feat(node:dns): implement `dns.reverse`. Close: #4299 * fix dns reverse for ipv6 --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-08-28use `options.fd` if provided for `fs.Read/WriteStream` (#4378)Gravatar Dylan Conway 1-0/+22
* use `options.fd` over path * tests * fix `@clack/prompts` * == null
2023-08-27Fix some edge cases in the `env` param of `spawn`. (#4364)Gravatar Ai Hoshino 1-6/+17
Close: #4362
2023-08-24Listen on a unix domain socket with Bun.serve() (#4311)Gravatar Jarred Sumner 1-2/+50
* Update response.zig * Comment this out for now * Support unix domain socket in Bun.serve() * Add test * add types * Update JSFetchHeaders.cpp * comment this test out * tls unix web socket serve options --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: dave caruso <me@paperdave.net>
2023-08-24Use noEmitGravatar Colin McDonnell 1-2/+1