forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstringify_stream_test.ts
99 lines (92 loc) · 3.03 KB
/
stringify_stream_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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { CsvStringifyStream } from "./stringify_stream.ts";
import { assertEquals, assertRejects } from "@std/assert";
Deno.test({
name: "CsvStringifyStream handles various inputs",
permissions: "none",
fn: async (t) => {
await t.step("with arrays", async () => {
const readable = ReadableStream.from([
["id", "name"],
[1, "foo"],
[2, "bar"],
]).pipeThrough(new CsvStringifyStream());
const output = await Array.fromAsync(readable);
assertEquals(output, [
"id,name\r\n",
"1,foo\r\n",
"2,bar\r\n",
]);
});
await t.step("with arrays, columns", async () => {
const readable = ReadableStream.from([
[1, "foo"],
[2, "bar"],
// @ts-expect-error `columns` option is not allowed
]).pipeThrough(new CsvStringifyStream({ columns: ["id", "name"] }));
await assertRejects(
async () => await Array.fromAsync(readable),
TypeError,
);
});
await t.step("with `separator`", async () => {
const readable = ReadableStream.from([
[1, "one"],
[2, "two"],
[3, "three"],
]).pipeThrough(new CsvStringifyStream({ separator: "\t" }));
const output = await Array.fromAsync(readable);
assertEquals(output, [
"1\tone\r\n",
"2\ttwo\r\n",
"3\tthree\r\n",
]);
});
await t.step("with invalid `separator`", async () => {
const readable = ReadableStream.from([
["one", "two", "three"],
]).pipeThrough(new CsvStringifyStream({ separator: "\r\n" }));
await assertRejects(
async () => await Array.fromAsync(readable),
TypeError,
);
});
await t.step("with invalid `columns`", async () => {
const readable = ReadableStream.from([
["one", "two", "three"],
// deno-lint-ignore no-explicit-any
]).pipeThrough(new CsvStringifyStream({ columns: { length: 1 } as any }));
await assertRejects(
async () => await Array.fromAsync(readable),
TypeError,
"No property accessor function was provided for object",
);
});
await t.step("with objects", async () => {
const readable = ReadableStream.from([
{ id: 1, name: "foo" },
{ id: 2, name: "bar" },
{ id: 3, name: "baz" },
]).pipeThrough(new CsvStringifyStream({ columns: ["id", "name"] }));
const output = await Array.fromAsync(readable);
assertEquals(output, [
"id,name\r\n",
"1,foo\r\n",
"2,bar\r\n",
"3,baz\r\n",
]);
});
await t.step("with objects, no columns", async () => {
const readable = ReadableStream.from([
{ id: 1, name: "foo" },
{ id: 2, name: "bar" },
{ id: 3, name: "baz" },
// @ts-expect-error `columns` option is required
]).pipeThrough(new CsvStringifyStream());
await assertRejects(
async () => await Array.fromAsync(readable),
TypeError,
);
});
},
});