deno.land / std@0.173.0 / io / string_writer_test.ts

string_writer_test.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.import { assertEquals } from "../testing/asserts.ts";import { StringWriter } from "./string_writer.ts";import { StringReader } from "./string_reader.ts";import { copyN } from "./copy_n.ts";import { copy } from "../streams/copy.ts";
Deno.test("ioStringWriter", async function () { const w = new StringWriter("base"); const r = new StringReader("0123456789"); await copyN(r, w, 4); assertEquals(w.toString(), "base0123"); await copy(r, w); assertEquals(w.toString(), "base0123456789");});
Deno.test("ioStringWriterSync", function () { const encoder = new TextEncoder(); const w = new StringWriter(""); w.writeSync(encoder.encode("deno")); assertEquals(w.toString(), "deno"); w.writeSync(encoder.encode("\nland")); assertEquals(w.toString(), "deno\nland");});
Deno.test("ioStringWriterIsolationTest", async function () { const encoder = new TextEncoder(); const src = "ABC"; const srcChunks = src.split("").map((c) => encoder.encode(c));
const w = new StringWriter(); for (const c of srcChunks) { const written = await w.write(c); assertEquals(written, 1); } srcChunks[0][0] = 88; assertEquals(w.toString(), src);});
std

Version Info

Tagged at
a year ago