Skip to content

Commit

Permalink
Add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nayeemrmn committed Sep 4, 2019
1 parent 1d6dbb6 commit 2db97bc
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions xeval/test.ts
@@ -0,0 +1,50 @@
import { xeval } from "./mod.ts";
import { stringsReader } from "../io/util.ts";
import { decode, encode } from "../strings/mod.ts";
import { assertEquals, assertStrContains } from "../testing/asserts.ts";
import { test } from "../testing/mod.ts";
const { execPath, run } = Deno;

test(async function xevalSuccess(): Promise<void> {
const chunks: string[] = [];
await xeval(stringsReader("a\nb\nc"), ($): number => chunks.push($));
assertEquals(chunks, ["a", "b", "c"]);
});

test(async function xevalDelimiter(): Promise<void> {
const chunks: string[] = [];
await xeval(stringsReader("!MADMADAMADAM!"), ($): number => chunks.push($), {
delimiter: "MADAM"
});
assertEquals(chunks, ["!MAD", "ADAM!"]);
});

// https://github.com/denoland/deno/issues/2861
// TODO: Use the URL constructor here when it's fixed.
const modTsUrl = import.meta.url.replace(/test.ts$/, "mod.ts");

test(async function xevalCliReplvar(): Promise<void> {
const p = run({
args: [execPath(), modTsUrl, "--replvar=abc", "console.log(abc)"],
stdin: "piped",
stdout: "piped",
stderr: "piped"
});
await p.stdin!.write(encode("hello"));
await p.stdin!.close();
assertEquals(await p.status(), { code: 0, success: true });
assertEquals(decode(await p.output()), "hello\n");
assertEquals(decode(await p.stderrOutput()), "");
});

test(async function xevalCliSyntaxError(): Promise<void> {
const p = run({
args: [execPath(), modTsUrl, "("],
stdin: "null",
stdout: "piped",
stderr: "piped"
});
assertEquals(await p.status(), { code: 1, success: false });
assertEquals(decode(await p.output()), "");
assertStrContains(decode(await p.stderrOutput()), "Uncaught SyntaxError");
});

0 comments on commit 2db97bc

Please sign in to comment.