aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/console/console-iterator.test.js
diff options
context:
space:
mode:
authorGravatar Ashcon Partovi <ashcon@partovi.net> 2023-03-07 12:22:34 -0800
committerGravatar GitHub <noreply@github.com> 2023-03-07 12:22:34 -0800
commitf7e4eb83694aa007a492ef66c28ffbe6a2dae791 (patch)
tree7af25aa5c42a2e1b2b47ba1df35f8caa9054cbeb /test/bun.js/console/console-iterator.test.js
parent36275a44ce7a33587bd26aad120042ab95470ff3 (diff)
downloadbun-f7e4eb83694aa007a492ef66c28ffbe6a2dae791.tar.gz
bun-f7e4eb83694aa007a492ef66c28ffbe6a2dae791.tar.zst
bun-f7e4eb83694aa007a492ef66c28ffbe6a2dae791.zip
Reorganize tests (#2332)
Diffstat (limited to 'test/bun.js/console/console-iterator.test.js')
-rw-r--r--test/bun.js/console/console-iterator.test.js63
1 files changed, 0 insertions, 63 deletions
diff --git a/test/bun.js/console/console-iterator.test.js b/test/bun.js/console/console-iterator.test.js
deleted file mode 100644
index 053e4382d..000000000
--- a/test/bun.js/console/console-iterator.test.js
+++ /dev/null
@@ -1,63 +0,0 @@
-import { spawnSync, spawn } from "bun";
-import { describe, expect, it } from "bun:test";
-import { bunExe } from "bunExe";
-
-describe("should work for static input", () => {
- const inputs = [
- "hello world",
- "hello world\n",
- "hello world\n\n",
- "hello world\n\n\n",
- "Hello\nWorld\n",
- "1",
- "šŸ’• Red Heart ✨ Sparkles šŸ”„ Fire\nšŸ’• Red Heart ✨ Sparkles\nšŸ’• Red Heart\nšŸ’•\n\nnormal",
- ];
-
- for (let input of inputs) {
- it(input.replaceAll("\n", "\\n"), () => {
- const { stdout } = spawnSync({
- cmd: [bunExe(), import.meta.dir + "/" + "console-iterator-run.js"],
- stdin: Buffer.from(input),
- env: {
- BUN_DEBUG_QUIET_LOGS: "1",
- },
- });
- expect(stdout.toString()).toBe(input.replaceAll("\n", ""));
- });
- }
-});
-
-describe("should work for streaming input", () => {
- const inputs = [
- "hello world",
- "hello world\n",
- "hello world\n\n",
- "hello world\n\n\n",
- "Hello\nWorld\n",
- "1",
- "šŸ’• Red Heart ✨ Sparkles šŸ”„ Fire\n šŸ’• Red Heart ✨ Sparkles\n šŸ’• Red Heart\n šŸ’• \n\nnormal",
- ];
-
- for (let input of inputs) {
- it(input.replaceAll("\n", "\\n"), async () => {
- const proc = spawn({
- cmd: [bunExe(), import.meta.dir + "/" + "console-iterator-run.js"],
- stdin: "pipe",
- stdout: "pipe",
- env: {
- BUN_DEBUG_QUIET_LOGS: "1",
- },
- });
- const { stdout, stdin } = proc;
- stdin.write(input.slice(0, (input.length / 2) | 0));
- stdin.flush();
- await new Promise(resolve => setTimeout(resolve, 1));
- stdin.write(input.slice((input.length / 2) | 0));
- stdin.flush();
- stdin.end();
-
- expect(await new Response(stdout).text()).toBe(input.replaceAll("\n", ""));
- proc.kill(0);
- });
- }
-});