summaryrefslogtreecommitdiff
path: root/std/examples/tests/xeval_test.ts
diff options
context:
space:
mode:
authortokiedokie <thetokiedokie@gmail.com>2020-09-27 00:54:26 +0900
committerGitHub <noreply@github.com>2020-09-26 11:54:26 -0400
commit04836dc700a8e22fdb604f0640cb72be5e0194c9 (patch)
treef5828053fcef820de6f39d6160f047d82ef96802 /std/examples/tests/xeval_test.ts
parentff785bc35aa650152643ffc65a2195e2b27f845b (diff)
refactor(std/example): Inconsistencies in the example tests (#7684)
Diffstat (limited to 'std/examples/tests/xeval_test.ts')
-rw-r--r--std/examples/tests/xeval_test.ts71
1 files changed, 0 insertions, 71 deletions
diff --git a/std/examples/tests/xeval_test.ts b/std/examples/tests/xeval_test.ts
deleted file mode 100644
index d3493d397..000000000
--- a/std/examples/tests/xeval_test.ts
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-import { xeval } from "../xeval.ts";
-import { StringReader } from "../../io/readers.ts";
-import { decode, encode } from "../../encoding/utf8.ts";
-import {
- assertEquals,
- assertStringContains,
- assert,
-} from "../../testing/asserts.ts";
-import { resolve, dirname, fromFileUrl } from "../../path/mod.ts";
-
-const moduleDir = resolve(dirname(fromFileUrl(import.meta.url)), "..");
-
-Deno.test("xevalSuccess", async function (): Promise<void> {
- const chunks: string[] = [];
- await xeval(new StringReader("a\nb\nc"), ($): number => chunks.push($));
- assertEquals(chunks, ["a", "b", "c"]);
-});
-
-Deno.test("xevalDelimiter", async function (): Promise<void> {
- const chunks: string[] = [];
- await xeval(
- new StringReader("!MADMADAMADAM!"),
- ($): number => chunks.push($),
- {
- delimiter: "MADAM",
- },
- );
- assertEquals(chunks, ["!MAD", "ADAM!"]);
-});
-
-const xevalPath = "xeval.ts";
-
-Deno.test({
- name: "xevalCliReplvar",
- fn: async function (): Promise<void> {
- const p = Deno.run({
- cmd: [
- Deno.execPath(),
- "run",
- xevalPath,
- "--replvar=abc",
- "console.log(abc)",
- ],
- cwd: moduleDir,
- stdin: "piped",
- stdout: "piped",
- stderr: "null",
- });
- assert(p.stdin != null);
- await p.stdin.write(encode("hello"));
- p.stdin.close();
- assertEquals(await p.status(), { code: 0, success: true });
- assertEquals(decode(await p.output()).trimEnd(), "hello");
- p.close();
- },
-});
-
-Deno.test("xevalCliSyntaxError", async function (): Promise<void> {
- const p = Deno.run({
- cmd: [Deno.execPath(), "run", xevalPath, "("],
- cwd: moduleDir,
- stdin: "null",
- stdout: "piped",
- stderr: "piped",
- });
- assertEquals(await p.status(), { code: 1, success: false });
- assertEquals(decode(await p.output()), "");
- assertStringContains(decode(await p.stderrOutput()), "Uncaught SyntaxError");
- p.close();
-});