summaryrefslogtreecommitdiff
path: root/std/examples/echo_server_test.ts
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2021-02-02 19:05:46 +0800
committerGitHub <noreply@github.com>2021-02-02 12:05:46 +0100
commit6abf126c2a7a451cded8c6b5e6ddf1b69c84055d (patch)
treefd94c013a19fcb38954844085821ec1601c20e18 /std/examples/echo_server_test.ts
parenta2b5d44f1aa9d64f448a2a3cc2001272e2f60b98 (diff)
chore: remove std directory (#9361)
This removes the std folder from the tree. Various parts of the tests are pretty tightly dependent on std (47 direct imports and 75 indirect imports, not counting the cli tests that use them as fixtures) so I've added std as a submodule for now.
Diffstat (limited to 'std/examples/echo_server_test.ts')
-rw-r--r--std/examples/echo_server_test.ts47
1 files changed, 0 insertions, 47 deletions
diff --git a/std/examples/echo_server_test.ts b/std/examples/echo_server_test.ts
deleted file mode 100644
index 24e0c416b..000000000
--- a/std/examples/echo_server_test.ts
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
-import { assertNotEquals, assertStrictEquals } from "../testing/asserts.ts";
-import { BufReader, ReadLineResult } from "../io/bufio.ts";
-import { dirname, fromFileUrl } from "../path/mod.ts";
-
-const moduleDir = dirname(fromFileUrl(import.meta.url));
-
-Deno.test("[examples/echo_server]", async () => {
- const encoder = new TextEncoder();
- const decoder = new TextDecoder();
- const process = Deno.run({
- cmd: [Deno.execPath(), "run", "--quiet", "--allow-net", "echo_server.ts"],
- cwd: moduleDir,
- stdout: "piped",
- });
-
- let conn: Deno.Conn | undefined;
- try {
- const processReader = new BufReader(process.stdout);
- const message = await processReader.readLine();
-
- assertNotEquals(message, null);
- assertStrictEquals(
- decoder.decode((message as ReadLineResult).line).trim(),
- "Listening on 0.0.0.0:8080",
- );
-
- conn = await Deno.connect({ hostname: "127.0.0.1", port: 8080 });
- const connReader = new BufReader(conn);
-
- await conn.write(encoder.encode("Hello echo_server\n"));
- const result = await connReader.readLine();
-
- assertNotEquals(result, null);
-
- const actualResponse = decoder
- .decode((result as ReadLineResult).line)
- .trim();
- const expectedResponse = "Hello echo_server";
-
- assertStrictEquals(actualResponse, expectedResponse);
- } finally {
- conn?.close();
- process.stdout.close();
- process.close();
- }
-});