1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-27 17:49:08 -05:00
denoland-deno/io/readers_test.ts

38 lines
1.1 KiB
TypeScript
Raw Normal View History

const { copy } = Deno;
2019-03-06 16:39:50 -05:00
import { test } from "../testing/mod.ts";
import { assertEq } from "../testing/asserts.ts";
2019-02-10 18:49:48 -05:00
import { MultiReader, StringReader } from "./readers.ts";
import { StringWriter } from "./writers.ts";
import { copyN } from "./ioutil.ts";
import { decode } from "../strings/strings.ts";
test(async function ioStringReader() {
const r = new StringReader("abcdef");
const { nread, eof } = await r.read(new Uint8Array(6));
2019-03-06 16:39:50 -05:00
assertEq(nread, 6);
assertEq(eof, true);
2019-02-10 18:49:48 -05:00
});
test(async function ioStringReader() {
const r = new StringReader("abcdef");
const buf = new Uint8Array(3);
let res1 = await r.read(buf);
2019-03-06 16:39:50 -05:00
assertEq(res1.nread, 3);
assertEq(res1.eof, false);
assertEq(decode(buf), "abc");
2019-02-10 18:49:48 -05:00
let res2 = await r.read(buf);
2019-03-06 16:39:50 -05:00
assertEq(res2.nread, 3);
assertEq(res2.eof, true);
assertEq(decode(buf), "def");
2019-02-10 18:49:48 -05:00
});
test(async function ioMultiReader() {
const r = new MultiReader(new StringReader("abc"), new StringReader("def"));
const w = new StringWriter();
const n = await copyN(w, r, 4);
2019-03-06 16:39:50 -05:00
assertEq(n, 4);
assertEq(w.toString(), "abcd");
2019-02-10 18:49:48 -05:00
await copy(w, r);
2019-03-06 16:39:50 -05:00
assertEq(w.toString(), "abcdef");
2019-02-10 18:49:48 -05:00
});